/* ==========================================================================
   Dr. Seniha Avcıl — Solunum Fizyoterapisti
   Tasarım sistemi: "Verdant Breath"
   Craft X Media
   ========================================================================== */

/* ---------- 1. Token'lar ---------- */
:root {
  /* Renk */
  --deep:      #0C332C;
  --deep-2:    #0F4139;
  --brand:     #17594E;
  --brand-2:   #237567;
  --brand-3:   #4FA795;
  --accent:    #C08A5E;   /* dekoratif — çizgi, ikon, koyu zemin üstü metin */
  --accent-btn: #9E6A42;  /* beyaz yazı taşıyan yüzeyler (AA 4.57:1) */
  --accent-2:  #E0B48C;
  --mist:      #E1EDE7;
  --mist-2:    #F1F7F3;
  --ivory:     #FBF9F5;
  --paper:     #FFFFFF;
  --ink:       #16211E;
  --ink-2:     #3D4B47;
  --ink-3:     #63706A;
  --line:      #E4E7E3;
  --line-2:    rgba(255,255,255,.14);

  /* Tipografi */
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Ölçü */
  --wrap: 1220px;
  --wrap-narrow: 820px;
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 26px;
  --r-xl: 34px;

  /* Gölge */
  --sh-sm: 0 2px 10px rgba(12,51,44,.05);
  --sh:    0 14px 40px rgba(12,51,44,.08);
  --sh-lg: 0 30px 80px rgba(12,51,44,.13);

  /* Geçiş */
  --t: .38s cubic-bezier(.22,.61,.36,1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--accent); }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.35em; }
li { margin-bottom: .5em; }
figure { margin: 0; }
hr { border: 0; border-top: 1px solid var(--line); margin: 44px 0; }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.018em;
  margin: 0 0 .55em;
  font-variation-settings: "SOFT" 0, "WONK" 0;
}
h1 { font-size: clamp(2.15rem, 1.35rem + 2.7vw, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 1.2rem + 1.7vw, 2.6rem); }
h3 { font-size: clamp(1.28rem, 1.08rem + .7vw, 1.65rem); }
h4 { font-size: 1.16rem; }
h5 { font-size: 1.02rem; }
p  { margin: 0 0 1.15em; }
strong, b { color: var(--ink); font-weight: 650; }

::selection { background: var(--brand-2); color: #fff; }

/* ---------- 3. Yardımcılar ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 26px; }
.wrap-narrow { max-width: var(--wrap-narrow); }
.sec { padding: clamp(64px, 7vw, 116px) 0; }
.sec-sm { padding: clamp(48px, 5vw, 76px) 0; }
.bg-ivory { background: var(--ivory); }
.bg-mist  { background: var(--mist-2); }
.bg-deep  { background: var(--deep); color: rgba(255,255,255,.78); }
.bg-deep h1, .bg-deep h2, .bg-deep h3, .bg-deep h4 { color: #fff; }
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.lead { font-size: 1.09rem; line-height: 1.78; color: var(--ink-2); }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--deep); color: #fff; padding: 12px 20px; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }
:focus-visible { outline: 3px solid var(--brand-3); outline-offset: 3px; border-radius: 4px; }

/* Bölüm başlığı */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: .745rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand-2); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); flex: none; }
.bg-deep .eyebrow { color: var(--accent-2); }
.bg-deep .eyebrow::before { background: var(--accent); }
.sec-head { max-width: 720px; margin-bottom: clamp(38px, 4vw, 62px); }
.sec-head.center { margin-left: auto; margin-right: auto; }
.sec-head p:last-child { margin-bottom: 0; }

/* Butonlar */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: .935rem; font-weight: 600; letter-spacing: -.005em;
  padding: 15px 30px; border-radius: 100px; border: 1.5px solid transparent;
  cursor: pointer; transition: all var(--t); text-align: center; line-height: 1.3;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); box-shadow: 0 10px 26px rgba(23,89,78,.22); }
.btn-primary:hover { background: var(--deep); border-color: var(--deep); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(12,51,44,.26); }
.btn-accent { background: var(--accent-btn); color: #fff; border-color: var(--accent-btn); box-shadow: 0 10px 26px rgba(158,106,66,.28); }
.btn-accent:hover { background: #87552F; border-color: #87552F; color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--deep); border-color: rgba(12,51,44,.22); }
.btn-ghost:hover { background: var(--deep); border-color: var(--deep); color: #fff; }
.btn-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(8px); }
.btn-light:hover { background: #fff; color: var(--deep); border-color: #fff; }
.btn-sm { padding: 11px 22px; font-size: .87rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 13px; }
.btn-row.center { justify-content: center; }

/* Grid */
.grid { display: grid; gap: 26px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .g-3, .g-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .g-2, .g-3, .g-4 { grid-template-columns: 1fr; } }

/* ---------- 4. Üst bar + Navigasyon ---------- */
.topbar {
  background: var(--deep); color: rgba(255,255,255,.62);
  font-size: .805rem; letter-spacing: .01em;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 44px; }
.topbar a { color: rgba(255,255,255,.78); }
.topbar a:hover { color: var(--accent-2); }
.topbar-left { display: flex; align-items: center; gap: 26px; }
.topbar-left span { display: inline-flex; align-items: center; gap: 8px; }
.topbar-left svg { width: 14px; height: 14px; color: var(--brand-3); flex: none; }
.topbar-social { display: flex; align-items: center; gap: 14px; }
.topbar-social svg { width: 15px; height: 15px; }
@media (max-width: 860px) { .topbar { display: none; } }

.site-head {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,.93);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t);
}
.site-head.stuck { box-shadow: 0 8px 30px rgba(12,51,44,.08); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 22px; min-height: 78px; }

.brand { display: flex; align-items: center; gap: 13px; flex: none; }
.brand-mark { width: 44px; height: 44px; flex: none; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.12; }
.brand-name { font-family: var(--serif); font-size: 1.16rem; font-weight: 600; color: var(--ink); letter-spacing: -.02em; }
.brand-sub { font-size: .69rem; font-weight: 600; letter-spacing: .155em; text-transform: uppercase; color: var(--brand-2); margin-top: 3px; }

.menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.menu > li { position: relative; margin: 0; }
.menu > li > a {
  display: flex; align-items: center; gap: 5px; white-space: nowrap;
  padding: 10px 12px; font-size: .895rem; font-weight: 550; color: var(--ink); border-radius: 9px;
}
.menu > li > a:hover, .menu > li.active > a { color: var(--brand-2); background: var(--mist-2); }
.menu .caret { width: 10px; height: 10px; opacity: .5; transition: transform var(--t); }
.menu > li:hover .caret { transform: rotate(180deg); }

.submenu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 306px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--sh-lg); padding: 10px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all var(--t); z-index: 10;
}
.submenu.cols { min-width: 620px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.menu > li:hover > .submenu, .menu > li:focus-within > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu li { margin: 0; }
.submenu a {
  display: block; padding: 10px 14px; border-radius: 9px;
  font-size: .875rem; font-weight: 500; color: var(--ink-2); line-height: 1.45;
}
.submenu a:hover { background: var(--mist-2); color: var(--brand); }
.submenu .sm-all { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 6px; }
.submenu .sm-all a { color: var(--brand-2); font-weight: 600; font-size: .845rem; }
.submenu .sm-head {
  padding: 12px 14px 6px; font-size: .68rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--ink-3);
}

.nav-cta { display: flex; align-items: center; gap: 10px; flex: none; }
.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: #fff; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; padding: 0;
}
.nav-toggle svg { width: 21px; height: 21px; color: var(--ink); }

@media (max-width: 1340px) {
  .menu > li > a { padding: 10px 9px; font-size: .855rem; }
  .brand-sub { letter-spacing: .12em; }
}
@media (max-width: 1240px) {
  .nav-cta .btn { display: none; }
  .menu > li > a { padding: 10px 11px; font-size: .875rem; }
}
@media (max-width: 1180px) {
  .nav-toggle { display: inline-flex; }
  .menu { display: none; }
  .nav { min-height: 68px; }
}

/* Mobil menü */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200; background: rgba(12,51,44,.5);
  backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: all var(--t);
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-panel {
  position: absolute; top: 0; right: 0; width: min(400px, 90vw); height: 100%;
  background: #fff; overflow-y: auto; padding: 22px;
  transform: translateX(100%); transition: transform var(--t);
  display: flex; flex-direction: column;
}
.mobile-nav.open .mobile-panel { transform: translateX(0); }
.mobile-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.mobile-close { width: 42px; height: 42px; border: 1px solid var(--line); background: #fff; border-radius: 11px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.mobile-close svg { width: 19px; height: 19px; }
.m-menu { list-style: none; margin: 0; padding: 0; }
.m-menu li { margin: 0; border-bottom: 1px solid var(--line); }
.m-menu > li > a, .m-menu .m-trigger {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 15px 4px; font-size: 1rem; font-weight: 550; color: var(--ink);
  background: none; border: 0; cursor: pointer; text-align: left; font-family: var(--sans);
}
.m-trigger svg { width: 15px; height: 15px; opacity: .5; transition: transform var(--t); }
.m-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.m-sub { list-style: none; margin: 0; padding: 0 0 12px; display: none; }
.m-sub.open { display: block; }
.m-sub li { border: 0; }
.m-sub a { display: block; padding: 9px 4px 9px 16px; font-size: .89rem; color: var(--ink-2); border-left: 2px solid var(--mist); }
.m-sub a:hover { color: var(--brand); border-left-color: var(--brand-2); }
.mobile-foot { margin-top: auto; padding-top: 26px; display: grid; gap: 10px; }

/* ---------- 5. Hero ---------- */
.hero { position: relative; background: var(--deep); overflow: hidden; }
.hero::after {
  content: ""; position: absolute; right: -12%; top: -18%; width: 62%; height: 130%;
  background: radial-gradient(ellipse at center, rgba(79,167,149,.2) 0%, transparent 68%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 56px;
  padding: clamp(54px, 6vw, 94px) 0 clamp(54px, 6vw, 88px);
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.9); padding: 8px 17px 8px 11px; border-radius: 100px;
  font-size: .795rem; font-weight: 550; margin-bottom: 26px; backdrop-filter: blur(8px);
}
.hero-badge svg { width: 15px; height: 15px; color: var(--brand-3); flex: none; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--accent-2); }
.hero-lead { color: rgba(255,255,255,.74); font-size: 1.09rem; line-height: 1.8; max-width: 520px; margin-bottom: 34px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 38px; margin-top: 44px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.13); }
.hero-stat b { display: block; font-family: var(--serif); font-size: 2.1rem; font-weight: 600; color: #fff; line-height: 1; margin-bottom: 7px; }
.hero-stat > span { font-size: .81rem; color: rgba(255,255,255,.62); letter-spacing: .04em; line-height: 1.45; display: block; max-width: 155px; }

.hero-visual { position: relative; }
.hero-photo {
  border-radius: 200px 200px var(--r-lg) var(--r-lg); overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,.35); position: relative;
  border: 1px solid rgba(255,255,255,.1);
}
.hero-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 12%; }
.hero-chip {
  position: absolute; left: -32px; bottom: 46px; background: #fff;
  border-radius: var(--r); padding: 17px 21px; box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 13px; max-width: 285px;
}
.hero-chip .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--mist); display: grid; place-items: center; flex: none; }
.hero-chip .ic svg { width: 21px; height: 21px; color: var(--brand); }
.hero-chip b { display: block; font-size: .89rem; color: var(--ink); font-weight: 650; line-height: 1.3; }
.hero-chip > span > span { font-size: .76rem; color: var(--ink-3); line-height: 1.35; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .hero-chip { left: -12px; }
  .hero-stats { gap: 26px; }
  .hero-stat b { font-size: 1.7rem; }
}

/* Sayfa başlığı (iç sayfalar) */
.page-head { background: var(--deep); position: relative; overflow: hidden; padding: clamp(50px, 5.5vw, 82px) 0 clamp(46px, 5vw, 74px); }
.page-head::after {
  content: ""; position: absolute; right: -8%; top: -40%; width: 48%; height: 190%;
  background: radial-gradient(ellipse at center, rgba(79,167,149,.17) 0%, transparent 66%);
}
.page-head .wrap { position: relative; z-index: 2; }
.page-head h1 { color: #fff; max-width: 880px; margin-bottom: 16px; }
.page-head p { color: rgba(255,255,255,.72); max-width: 660px; font-size: 1.05rem; margin-bottom: 0; }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; list-style: none; margin: 0 0 20px; padding: 0; font-size: .81rem; }
.crumbs li { margin: 0; color: rgba(255,255,255,.62); display: flex; align-items: center; gap: 9px; }
.crumbs a { color: rgba(255,255,255,.7); }
.crumbs a:hover { color: var(--accent-2); }
.crumbs li + li::before { content: "/"; color: rgba(255,255,255,.4); }

/* ---------- 6. Kartlar ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 30px; transition: all var(--t); position: relative; height: 100%;
  display: flex; flex-direction: column;
}
.card:hover { border-color: var(--mist); box-shadow: var(--sh); transform: translateY(-4px); }
.card .ic {
  width: 54px; height: 54px; border-radius: 15px; background: var(--mist-2);
  display: grid; place-items: center; margin-bottom: 21px; transition: all var(--t); flex: none;
}
.card .ic svg { width: 25px; height: 25px; color: var(--brand); transition: color var(--t); }
.card:hover .ic { background: var(--brand); }
.card:hover .ic svg { color: #fff; }
.card h3 { font-size: 1.19rem; margin-bottom: 11px; }
.card p { font-size: .935rem; line-height: 1.7; color: var(--ink-2); margin-bottom: 16px; }
.card p:last-child { margin-bottom: 0; }
.card-link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 7px;
  font-size: .855rem; font-weight: 600; color: var(--brand-2);
}
.card-link svg { width: 15px; height: 15px; transition: transform var(--t); }
.card:hover .card-link svg { transform: translateX(4px); }
.card-stretch::after { content: ""; position: absolute; inset: 0; border-radius: var(--r-lg); }

/* Numaralı kart */
.card-num .num {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--accent);
  width: 54px; height: 54px; border-radius: 15px; border: 1.5px solid var(--mist);
  display: grid; place-items: center; margin-bottom: 21px; flex: none;
}

/* Görselli kart */
.card-media { padding: 0; overflow: hidden; }
.card-media .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--mist); }
.card-media .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,.61,.36,1); }
.card-media:hover .thumb img { transform: scale(1.06); }
.card-media .body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.card-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; font-size: .755rem; color: var(--ink-3); margin-bottom: 12px; letter-spacing: .01em; }
.card-meta .tag { background: var(--mist-2); color: var(--brand); padding: 4px 11px; border-radius: 100px; font-weight: 600; }

/* Liste rozeti */
.ticks { list-style: none; padding: 0; margin: 0 0 1.2em; }
.ticks li { position: relative; padding-left: 32px; margin-bottom: 12px; font-size: .955rem; line-height: 1.65; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 19px; height: 19px; border-radius: 50%;
  background: var(--mist) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317594E' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}
.bg-deep .ticks li::before { background-color: rgba(255,255,255,.12); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E0B48C' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }

/* ---------- 7. Bölümler ---------- */
/* İki sütun: görsel + metin */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(38px, 5vw, 72px); align-items: center; }
.split.narrow-img { grid-template-columns: .85fr 1.15fr; }
@media (max-width: 900px) { .split, .split.narrow-img { grid-template-columns: 1fr; } }
.split-img { position: relative; }
.split-img > img { width: 100%; border-radius: var(--r-lg); object-fit: cover; box-shadow: var(--sh); }
.split-img .frame { position: absolute; inset: 18px -18px -18px 18px; border: 1.5px solid var(--mist); border-radius: var(--r-lg); z-index: -1; }

/* Öne çıkan alıntı */
.pull {
  border-left: 3px solid var(--accent); padding: 4px 0 4px 26px; margin: 32px 0;
  font-family: var(--serif); font-size: 1.24rem; line-height: 1.6; color: var(--ink); font-style: italic;
}
.bg-deep .pull { color: rgba(255,255,255,.9); }

/* İstatistik şeridi */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(255,255,255,.1); border-radius: var(--r-lg); overflow: hidden; }
.stat-strip > div { background: var(--deep); padding: 34px 26px; text-align: center; }
.stat-strip b { display: block; font-family: var(--serif); font-size: 2.4rem; font-weight: 600; color: #fff; line-height: 1; margin-bottom: 9px; }
.stat-strip > span { font-size: .84rem; color: rgba(255,255,255,.7); line-height: 1.45; display: block; }
@media (max-width: 780px) { .stat-strip { grid-template-columns: 1fr 1fr; } }

/* Süreç adımları */
.steps { counter-reset: st; display: grid; gap: 0; }
.step { display: grid; grid-template-columns: 82px 1fr; gap: 26px; padding: 30px 0; border-top: 1px solid var(--line); }
.step:last-child { border-bottom: 1px solid var(--line); }
.step-n {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--brand);
  width: 54px; height: 54px; border-radius: 50%; background: var(--mist-2);
  display: grid; place-items: center; flex: none;
}
.step h3 { font-size: 1.22rem; margin-bottom: 9px; }
.step p { margin-bottom: 0; font-size: .96rem; }
@media (max-width: 620px) { .step { grid-template-columns: 1fr; gap: 15px; } }

/* Akordeon (SSS) */
.acc { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 22px;
  padding: 25px 4px; font-family: var(--serif); font-size: 1.09rem; font-weight: 600;
  color: var(--ink); line-height: 1.45; transition: color var(--t);
}
.acc-q:hover { color: var(--brand-2); }
.acc-q .pm { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; transition: all var(--t); margin-top: 2px; }
.acc-q .pm svg { width: 13px; height: 13px; color: var(--brand); transition: transform var(--t); }
.acc-q[aria-expanded="true"] { color: var(--brand); }
.acc-q[aria-expanded="true"] .pm { background: var(--brand); border-color: var(--brand); }
.acc-q[aria-expanded="true"] .pm svg { color: #fff; transform: rotate(45deg); }
.acc-a { display: none; padding: 0 60px 27px 4px; }
.acc-a.open { display: block; }
.acc-a p:last-child, .acc-a ul:last-child { margin-bottom: 0; }
@media (max-width: 620px) { .acc-a { padding-right: 4px; } }

/* CTA bandı */
.cta-band { background: var(--deep); position: relative; overflow: hidden; }
.cta-band::after {
  content: ""; position: absolute; left: 50%; top: -60%; width: 700px; height: 700px; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(79,167,149,.19) 0%, transparent 62%);
}
.cta-band .wrap { position: relative; z-index: 2; }
.cta-inner { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-inner h2 { color: #fff; margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,.72); font-size: 1.05rem; margin-bottom: 30px; }

/* Bilgi kutusu / uyarı */
.note {
  background: var(--mist-2); border: 1px solid var(--mist);
  border-radius: var(--r); padding: 20px 24px; margin: 30px 0;
  font-size: .91rem; line-height: 1.68; color: var(--ink-2);
}
.note strong {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: .78rem; font-weight: 700;
  letter-spacing: .11em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 10px;
}
.note strong svg { width: 17px; height: 17px; flex: none; stroke-width: 2; }
.note p { margin-bottom: .7em; }
.note p:last-child, .note ul:last-child { margin-bottom: 0; }
.note-warn { background: #FDF7F1; border-color: #F0E1CE; }
.note-warn strong { color: #9C6234; }

/* Makale gövdesi */
.article { font-size: 1.045rem; line-height: 1.82; }
.article h2 { margin-top: 2.1em; margin-bottom: .6em; font-size: clamp(1.45rem, 1.2rem + 1vw, 1.95rem); }
.article h3 { margin-top: 1.7em; margin-bottom: .5em; }
.article > *:first-child { margin-top: 0; }
.article ul, .article ol { padding-left: 1.3em; }
.article li { margin-bottom: .6em; }
.article img { border-radius: var(--r); margin: 2em 0; }
.article a { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: rgba(23,89,78,.35); }

/* Yan sütun */
.with-aside { display: grid; grid-template-columns: 1fr 340px; gap: clamp(38px, 4.5vw, 66px); align-items: start; }
@media (max-width: 980px) { .with-aside { grid-template-columns: 1fr; } }
.aside-box { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px; margin-bottom: 22px; }
.aside-box h4 { font-size: 1.06rem; margin-bottom: 15px; }
.aside-box:last-child { margin-bottom: 0; }
.aside-list { list-style: none; padding: 0; margin: 0; }
.aside-list li { margin: 0; border-bottom: 1px solid var(--line); }
.aside-list li:last-child { border: 0; }
.aside-list a { display: block; padding: 11px 0; font-size: .9rem; font-weight: 500; color: var(--ink-2); line-height: 1.45; }
.aside-list a:hover { color: var(--brand); padding-left: 5px; }
.aside-sticky { position: sticky; top: 100px; }

/* Yayın listesi */
.pub-list { list-style: none; padding: 0; margin: 0; counter-reset: pub; }
.pub-list li {
  position: relative; padding: 22px 0 22px 52px; border-bottom: 1px solid var(--line);
  font-size: .95rem; line-height: 1.68; margin: 0; color: var(--ink-2);
}
.pub-list li::before {
  counter-increment: pub; content: counter(pub, decimal-leading-zero);
  position: absolute; left: 0; top: 23px; font-family: var(--serif); font-size: .87rem;
  font-weight: 600; color: var(--accent); letter-spacing: .02em;
}
.pub-list li b { color: var(--ink); font-weight: 650; }
.pub-list li em { font-style: normal; color: var(--ink-3); font-size: .875rem; display: block; margin-top: 4px; }

/* Zaman çizelgesi */
.tl { position: relative; padding-left: 34px; }
.tl::before { content: ""; position: absolute; left: 7px; top: 10px; bottom: 10px; width: 1.5px; background: var(--line); }
.tl-item { position: relative; padding-bottom: 34px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -34px; top: 7px; width: 15px; height: 15px;
  border-radius: 50%; background: #fff; border: 3px solid var(--brand-2);
}
.tl-year { font-size: .78rem; font-weight: 700; letter-spacing: .1em; color: var(--accent); text-transform: uppercase; margin-bottom: 5px; }
.tl-item h4 { font-size: 1.08rem; margin-bottom: 5px; }
.tl-item p { font-size: .92rem; margin-bottom: 0; color: var(--ink-3); }

/* Form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; letter-spacing: .01em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  background: #fff; font-size: .94rem; transition: all var(--t); font-family: var(--sans);
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--brand-2); box-shadow: 0 0 0 4px rgba(42,133,119,.1); }
.field input::placeholder, .field textarea::placeholder { color: #818A86; }
.consent { display: flex; align-items: flex-start; gap: 11px; font-size: .83rem; line-height: 1.6; color: var(--ink-3); }
.consent input { width: 18px; height: 18px; flex: none; margin-top: 2px; accent-color: var(--brand); }

/* İletişim kartları */
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px;
  display: flex; flex-direction: column; height: 100%; transition: all var(--t);
}
.contact-card:hover { box-shadow: var(--sh); border-color: var(--mist); transform: translateY(-3px); }
.contact-card .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--mist-2); display: grid; place-items: center; margin-bottom: 19px; }
.contact-card .ic svg { width: 23px; height: 23px; color: var(--brand); }
.contact-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.contact-card p { font-size: .92rem; margin-bottom: 12px; color: var(--ink-3); }
.contact-card a.val { font-size: 1rem; font-weight: 600; color: var(--brand); margin-top: auto; }

/* ---------- 8. Footer ---------- */
.site-foot { background: var(--deep); color: rgba(255,255,255,.6); font-size: .91rem; }
.foot-main { padding: clamp(54px, 5.5vw, 80px) 0 44px; display: grid; grid-template-columns: 1.45fr .95fr .95fr .95fr 1.05fr; gap: 38px; }
@media (max-width: 1100px) { .foot-main { grid-template-columns: repeat(3, 1fr); gap: 34px; } }
@media (max-width: 780px) { .foot-main { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .foot-main { grid-template-columns: 1fr; } }
.foot-brand .brand-name { color: #fff; }
.foot-brand .brand-sub { color: var(--accent-2); }
.foot-brand p { margin: 20px 0 22px; line-height: 1.75; font-size: .9rem; max-width: 330px; }
.foot-col h5 { color: #fff; font-family: var(--sans); font-size: .745rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: 11px; }
.foot-col a { color: rgba(255,255,255,.6); font-size: .89rem; }
.foot-col a:hover { color: var(--accent-2); }
.foot-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 15px; }
.foot-contact svg { width: 16px; height: 16px; color: var(--brand-3); flex: none; margin-top: 4px; }
.foot-social { display: flex; gap: 10px; }
.foot-social a {
  width: 40px; height: 40px; border-radius: 11px; border: 1px solid rgba(255,255,255,.14);
  display: grid; place-items: center; transition: all var(--t);
}
.foot-social a:hover { background: var(--brand-2); border-color: var(--brand-2); transform: translateY(-2px); }
.foot-social svg { width: 17px; height: 17px; color: rgba(255,255,255,.8); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.09); padding: 24px 0 30px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  font-size: .81rem; color: rgba(255,255,255,.6);
}
.foot-bottom nav { display: flex; flex-wrap: wrap; gap: 22px; }
.foot-bottom a { color: rgba(255,255,255,.68); }
.foot-bottom a:hover { color: var(--accent-2); }
.foot-legal { padding: 22px 0 0; border-top: 1px solid rgba(255,255,255,.07); font-size: .79rem; line-height: 1.7; color: rgba(255,255,255,.56); max-width: 900px; }

/* ---------- 9. Yüzen aksiyonlar ---------- */
.float-actions { position: fixed; right: 20px; bottom: 22px; z-index: 80; display: flex; flex-direction: column; gap: 11px; }
.float-actions a {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(12,51,44,.24); transition: transform var(--t);
}
.float-actions a:hover { transform: scale(1.07); }
.fa-wa { background: #25D366; }
.fa-tel { background: var(--brand); }
.float-actions svg { width: 25px; height: 25px; color: #fff; }
@media (max-width: 620px) { .float-actions a { width: 50px; height: 50px; } .float-actions svg { width: 22px; height: 22px; } }

/* ---------- 10. Animasyon ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- 11. Yazdırma ---------- */
@media print {
  .site-head, .topbar, .site-foot, .float-actions, .cta-band, .mobile-nav { display: none !important; }
  body { font-size: 11pt; color: #000; }
  .sec { padding: 12pt 0; }
}

/* Güvenlik ağı — makale/yan sütun içindeki satır içi ikonlar */
.article > p svg, .article > ul svg, .aside-box > p svg { width: 17px; height: 17px; vertical-align: -3px; }

/* ---------- 12. Mobil ince ayarlar ---------- */
@media (max-width: 620px) {
  /* Butonlar tam genişlik — yüzen aksiyon butonlarıyla çakışmayı önler */
  .hero .btn-row .btn,
  .cta-inner .btn-row .btn,
  .page-head .btn-row .btn { width: 100%; }
  .btn-row { gap: 11px; }
  /* Yüzen butonlar biraz daha kompakt */
  .float-actions { right: 14px; bottom: 16px; }
  /* Hero fotoğrafı mobilde daha az yer kaplasın */
  .hero-photo { border-radius: 140px 140px var(--r-lg) var(--r-lg); }
  .hero-chip { left: 50%; transform: translateX(-50%); bottom: -22px; max-width: 290px; }
  .hero-visual { margin-bottom: 34px; }
  .hero-stats { gap: 24px 30px; }
  /* Kart iç boşlukları */
  .card { padding: 26px 24px; }
  .card-media .body { padding: 22px 22px 26px; }
  .aside-box { padding: 24px 22px; }
  /* Makale tipografisi */
  .article { font-size: 1rem; }
  .acc-q { font-size: 1.01rem; padding: 21px 2px; gap: 14px; }
  /* Tablo/kod taşmasını engelle */
  .article table, .article pre { display: block; overflow-x: auto; max-width: 100%; }
}

@media (max-width: 400px) {
  .brand-name { font-size: 1.04rem; }
  .brand-sub { font-size: .63rem; letter-spacing: .13em; }
  .brand-mark { width: 40px; height: 40px; }
}

/* ---------- 13. Blog düzeni ---------- */
/* Öne çıkan yazı */
.feat {
  display: grid; grid-template-columns: 1.08fr 1fr; align-items: stretch;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-sm); transition: all var(--t);
  margin-bottom: clamp(34px, 4vw, 54px);
}
.feat:hover { box-shadow: var(--sh); border-color: var(--mist); }
.feat .thumb { overflow: hidden; background: var(--mist); min-height: 340px; }
.feat .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,.61,.36,1); }
.feat:hover .thumb img { transform: scale(1.04); }
.feat .body { padding: clamp(30px, 3.4vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.feat h2 { font-size: clamp(1.5rem, 1.2rem + 1.3vw, 2.15rem); margin-bottom: 15px; }
.feat p { font-size: 1.02rem; line-height: 1.75; margin-bottom: 22px; }
.feat .card-meta { margin-bottom: 0; margin-top: 22px; }
@media (max-width: 860px) { .feat { grid-template-columns: 1fr; } .feat .thumb { min-height: 230px; aspect-ratio: 16/10; } }

/* Kategori etiketi — tam genişlik pill */
.cat-pill {
  display: block; background: var(--mist-2); color: var(--brand);
  padding: 8px 16px; border-radius: 100px; font-size: .715rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; margin-bottom: 15px;
  text-align: left; width: 100%;
}
.feat .cat-pill { display: inline-block; width: auto; }

/* Blog kartı alt meta satırı */
.post-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
  margin-top: auto; padding-top: 20px;
  font-size: .805rem; color: var(--ink-3);
}
.post-meta span { display: inline-flex; align-items: center; gap: 6px; }
.post-meta svg { width: 14px; height: 14px; flex: none; color: var(--brand-2); }

/* Kategori filtre çubuğu */
.filter-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: clamp(30px, 3.4vw, 46px);
}
.filter-btn {
  background: #fff; border: 1.5px solid var(--line); color: var(--ink-2);
  padding: 11px 22px; border-radius: 100px; cursor: pointer;
  font-family: var(--sans); font-size: .885rem; font-weight: 550;
  transition: all var(--t); line-height: 1.3; white-space: nowrap;
}
.filter-btn:hover { border-color: var(--brand-2); color: var(--brand); }
.filter-btn.active {
  background: var(--brand); border-color: var(--brand); color: #fff;
  box-shadow: 0 8px 20px rgba(23,89,78,.2);
}
.card[hidden] { display: none; }
@media (max-width: 620px) {
  .filter-bar { gap: 8px; }
  .filter-btn { padding: 9px 16px; font-size: .82rem; }
}

/* Blog kartında görselin üstündeki hafif ton */
.card-media .thumb { position: relative; }
.card-media .thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,51,44,0) 55%, rgba(12,51,44,.10) 100%);
  pointer-events: none;
}

/* Kutu içi başlıklar (yan sütun, zaman çizelgesi) — h3 ama h4 görünümünde */
.aside-box .box-title, .tl-item .box-title, .note .box-title {
  font-family: var(--serif); font-size: 1.06rem; font-weight: 600;
  color: var(--ink); margin: 0 0 15px; line-height: 1.3; letter-spacing: -.012em;
}
.tl-item .box-title { font-size: 1.08rem; margin-bottom: 5px; }
.card .box-title { font-size: 1.05rem; }
.contact-card .cc-title { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--ink); margin: 0 0 8px; line-height: 1.3; }

/* ---------- 14. Dil seçici ---------- */
.lang-switch { position: relative; flex: none; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1.5px solid var(--line); border-radius: 100px;
  padding: 9px 14px; cursor: pointer; font-family: var(--sans);
  font-size: .855rem; font-weight: 600; color: var(--ink); transition: all var(--t);
}
.lang-btn:hover, .lang-switch.open .lang-btn { border-color: var(--brand-2); color: var(--brand); }
.lang-btn > svg:first-child { width: 16px; height: 16px; color: var(--brand-2); flex: none; }
.lang-btn .caret { width: 11px; height: 11px; opacity: .55; transition: transform var(--t); }
.lang-switch.open .lang-btn .caret { transform: rotate(180deg); }

.lang-menu {
  position: absolute; top: calc(100% + 9px); right: 0; min-width: 168px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--sh-lg); padding: 7px; list-style: none; margin: 0; z-index: 30;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--t);
}
.lang-switch.open .lang-menu, .lang-switch:focus-within .lang-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.lang-menu li { margin: 0; }
.lang-menu a {
  display: flex; align-items: center; gap: 9px; padding: 10px 13px; border-radius: 9px;
  font-size: .89rem; font-weight: 500; color: var(--ink-2); line-height: 1.3;
}
.lang-menu a span { font-size: 1.05rem; line-height: 1; }
.lang-menu a:hover { background: var(--mist-2); color: var(--brand); }
.lang-menu a.active { background: var(--mist-2); color: var(--brand); font-weight: 650; }
.lang-menu a.active::after {
  content: ""; margin-left: auto; width: 15px; height: 15px; flex: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23237567' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
}

/* Mobil menüdeki dil seçici */
.m-lang { padding: 20px 0 4px; border-top: 1px solid var(--line); margin-top: 14px; }
.m-lang-label {
  display: block; font-size: .7rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px;
}
.m-lang-opts { display: flex; gap: 9px; }
.m-lang-opts a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 10px; border: 1.5px solid var(--line); border-radius: 12px;
  font-size: .885rem; font-weight: 550; color: var(--ink-2); transition: all var(--t);
}
.m-lang-opts a span { font-size: 1.05rem; line-height: 1; }
.m-lang-opts a.active { background: var(--brand); border-color: var(--brand); color: #fff; font-weight: 650; }

@media (max-width: 1340px) {
  .lang-btn { padding: 8px 11px; font-size: .8rem; }
  .lang-btn > svg:first-child { width: 15px; height: 15px; }
}
@media (max-width: 1180px) {
  .lang-switch { display: none; }   /* mobilde menü içindeki seçici kullanılır */
}
