/* =========================================================
   Rafmarin — Ortak stil dosyası
   Tüm sayfalar bu dosyayı kullanır.
   ========================================================= */

/* ---------- 1. Tasarım değişkenleri ---------- */
:root {
  /* Renkler */
  --navy: #0A3556;        /* derin deniz mavisi — ana renk */
  --navy-800: #114570;
  --navy-700: #185A8F;
  --sand: #D6E6F2;        /* açık deniz mavisi — ikincil */
  --sand-100: #E8F1F8;
  --sand-50: #F3F8FC;
  --accent: #0F7BB8;      /* parlak deniz mavisi — vurgu / CTA */
  --accent-dark: #0B5F8F;
  --white: #FFFFFF;
  --ink: #0A3556;
  --ink-soft: #3E4A5C;
  --ink-muted: #6B7585;
  --line: #DCE6EE;
  --steel: #7F93A6;
  --success: #1F8A5B;
  --wa: #25D366;

  /* Tipografi */
  --font-head: "Inter Tight", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-logo: "Ethnocentric", "Michroma", "Orbitron", "Inter Tight", sans-serif;  /* Ethnocentric lisanslı: dosyayı assets/fonts/ altına koyun; yoksa Michroma (Google Fonts) kullanılır */

  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1.0625rem;
  --fs-lg: 1.25rem;
  --fs-xl: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  --fs-2xl: clamp(2rem, 1.5rem + 2vw, 2.75rem);
  --fs-hero: clamp(2.5rem, 1.6rem + 4vw, 4.5rem);

  /* Boşluk ve ölçü */
  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --section: clamp(4rem, 8vw, 7rem);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(10, 53, 86, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 53, 86, 0.14);
  --header-h: 72px;
}

/* Ethnocentric (Typodermic) — lisanslı dosyanız varsa assets/fonts/ethnocentric.woff2 olarak ekleyin */
@font-face {
  font-family: "Ethnocentric";
  src: url("/assets/fonts/ethnocentric.woff2") format("woff2"), url("/assets/fonts/ethnocentric.woff") format("woff");
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.1; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---------- 3. Layout yardımcıları ---------- */
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.section { padding-block: var(--section); }
.section--sand { background: var(--sand-50); }
.section--navy { background: var(--navy); color: var(--white); }
.section-head { max-width: 680px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.9rem;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.section--navy .eyebrow { color: var(--sand); }
h2.title { font-size: var(--fs-2xl); font-weight: 700; }
h3.subtitle { font-size: var(--fs-xl); font-weight: 600; }
.lead { font-size: var(--fs-lg); color: var(--ink-soft); line-height: 1.6; margin-top: 1rem; }
.section--navy .lead { color: rgba(255,255,255,0.78); }
.grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }

/* ---------- 4. Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.9rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  font-family: var(--font-head); font-weight: 600; font-size: var(--fs-sm);
  letter-spacing: 0.01em; line-height: 1; white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--accent); color: var(--white); box-shadow: 0 8px 20px rgba(15, 123, 184, 0.28); }
.btn--primary:hover { background: var(--accent-dark); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-700); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn--lg { padding: 1.1rem 2rem; font-size: var(--fs-base); }
.btn--xl { padding: 1.4rem 2.8rem; font-size: 1.2rem; font-weight: 700; border-radius: 999px; }
.btn--xl svg { width: 22px; height: 22px; }
@media (max-width: 640px) { .btn--xl { width: 100%; padding: 1.15rem 1.25rem; font-size: 1.05rem; white-space: normal; line-height: 1.25; text-align: center; } .hero__ctas { flex-direction: column; } }
.btn--sm { padding: 0.6rem 1.1rem; font-size: var(--fs-xs); }
.btn--block { width: 100%; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-head); font-weight: 600; color: var(--accent);
}
.link-arrow svg { width: 18px; height: 18px; transition: transform 0.2s; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- 5. Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 24px rgba(10,53,86,0.06); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: var(--header-h); }
.logo { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--navy); flex-shrink: 0; }
.logo__img { width: auto; height: 40px; display: block; }
.logo__word { width: auto; height: 15px; display: block; }
@media (max-width: 380px) { .logo__word { height: 13px; } .logo__img { height: 36px; } }
.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: 0.25rem; }
.nav__link {
  display: inline-block; padding: 0.55rem 0.8rem; border-radius: 999px;
  font-family: var(--font-head); font-weight: 500; font-size: var(--fs-sm); color: var(--ink-soft);
  transition: background 0.2s, color 0.2s;
}
.nav__link:hover { background: var(--sand-100); color: var(--navy); }
.nav__link[aria-current="page"] { color: var(--navy); font-weight: 600; background: var(--sand-100); }
.header__actions { display: flex; align-items: center; gap: 0.6rem; }
.lang {
  display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden;
  font-family: var(--font-head); font-size: var(--fs-xs); font-weight: 600;
}
.lang__item { padding: 0.45rem 0.7rem; color: var(--ink-muted); }
.lang__item[aria-current="true"] { background: var(--navy); color: var(--white); }
.lang__item[aria-disabled="true"] { cursor: not-allowed; opacity: 0.6; }
.header .btn--primary { display: none; }
.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px; background: transparent; border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.burger span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.25s, opacity 0.2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobil menü */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 49;
  background: var(--white); padding: 1.5rem var(--gutter) 2rem;
  transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
  transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-nav__list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.mobile-nav__list a {
  display: block; padding: 1rem 0.25rem; border-bottom: 1px solid var(--line);
  font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--navy);
}
.mobile-nav__list a[aria-current="page"] { color: var(--accent); }
.mobile-nav .btn { margin-top: 1.5rem; }
.mobile-nav__contact { margin-top: 1.5rem; font-size: var(--fs-sm); color: var(--ink-muted); display: grid; gap: 0.35rem; }
body.menu-open { overflow: hidden; }

@media (min-width: 1024px) {
  .nav { display: block; }
  .burger, .mobile-nav { display: none; }
  .header .btn--primary { display: inline-flex; }
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy); color: var(--white);
  padding-block: clamp(4rem, 9vw, 7.5rem) clamp(3rem, 6vw, 5rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(54,169,225,0.22), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(214,230,242,0.10), transparent 60%);
}
.hero__grid { position: relative; display: grid; gap: 3rem; align-items: center; }
.hero__grid > * { min-width: 0; }
.hero__title { font-size: var(--fs-hero); font-weight: 700; letter-spacing: -0.03em; }
.hero__title em { font-style: normal; color: var(--sand); }
.hero__text { font-size: var(--fs-lg); line-height: 1.6; color: rgba(255,255,255,0.8); margin-top: 1.5rem; max-width: 560px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.2rem; }
.hero__meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.5rem 1.5rem; margin-top: 2.5rem; max-width: 560px; font-size: var(--fs-sm); color: rgba(255,255,255,0.7); }
.hero__meta strong { display: block; font-family: var(--font-head); font-size: 1.5rem; color: var(--white); letter-spacing: -0.02em; }
.hero__art { position: relative; }
.hero__art svg { width: 100%; height: auto; }
.hero__caption {
  margin-top: 0.75rem; font-size: var(--fs-xs); color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-head); letter-spacing: 0.04em; text-transform: uppercase;
}
.hero__caption::before { content: ""; width: 18px; height: 2px; background: var(--accent); }
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr 1fr; gap: 4rem; }
}

/* ---------- 7. Güven şeridi ---------- */
.trust { background: var(--sand); color: var(--navy); }
.trust__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 0; }
.trust__item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.5rem var(--gutter); border-top: 1px solid rgba(10,53,86,0.1); }
.trust__item:first-child { border-top: 0; }
.trust__icon { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--navy); color: var(--sand); display: grid; place-items: center; }
.trust__icon svg { width: 24px; height: 24px; }
.trust__item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.25rem; }
.trust__item p { font-size: var(--fs-sm); color: var(--ink-soft); }
@media (min-width: 720px) {
  .trust__item { border-top: 0; border-left: 1px solid rgba(10,53,86,0.1); padding-block: 1.8rem; }
  .trust__item:first-child { border-left: 0; padding-left: 0; }
}

/* ---------- 8. Kartlar ---------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--sand-100); color: var(--accent); display: grid; place-items: center; margin-bottom: 1.25rem; }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.6rem; }
.card p { color: var(--ink-soft); font-size: var(--fs-sm); line-height: 1.65; }

/* Adımlar */
.steps { counter-reset: step; }
.step { position: relative; padding-top: 0.5rem; }
.step__num {
  font-family: var(--font-head); font-size: 3.5rem; font-weight: 800; line-height: 1;
  color: #B9D0E3; letter-spacing: -0.04em; margin-bottom: 0.75rem;
}
.step h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.6rem; }
.step p { color: var(--ink-soft); line-height: 1.65; }
.step::after {
  content: ""; position: absolute; top: 2.1rem; left: 5.75rem; right: 0.5rem; height: 2px;
  background: repeating-linear-gradient(90deg, var(--sand) 0 8px, transparent 8px 16px);
}
.step:last-child::after { display: none; }
@media (max-width: 899px) { .step::after { display: none; } }

/* Liste (kimler için) */
.checklist { display: grid; gap: 0.9rem; }
.checklist li { display: flex; gap: 0.9rem; align-items: flex-start; padding: 1rem 1.15rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.checklist svg { flex: none; width: 22px; height: 22px; color: var(--accent); margin-top: 2px; }
.checklist span { font-weight: 500; line-height: 1.5; }
.checklist--ps li { align-items: center; }
.checklist--ps .prob { display: block; font-weight: 400; font-size: var(--fs-sm); color: var(--ink-muted); text-decoration: line-through; text-decoration-color: rgba(180,67,42,0.55); text-decoration-thickness: 1.5px; }
.checklist--ps .sol { display: block; font-weight: 600; color: var(--navy); margin-top: 0.15rem; }

/* Problem/çözüm bölümü */
.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.split__text p + p { margin-top: 1rem; }
.split__text p { color: var(--ink-soft); line-height: 1.7; }
.split__text .highlight { color: var(--navy); font-weight: 500; }
.split__art { background: var(--sand-100); border-radius: var(--radius); padding: clamp(1rem, 3vw, 2rem); }
.split__art svg { width: 100%; height: auto; }

/* Fiyat özet kartı */
.price-card {
  background: var(--navy); color: var(--white); border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.5rem); display: grid; gap: 2rem; align-items: center;
  position: relative; overflow: hidden;
}
.price-card::after {
  content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(54,169,225,0.35), transparent 65%); pointer-events: none;
}
.price-card__tag { display: inline-block; font-family: var(--font-head); font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sand); margin-bottom: 0.8rem; }
.price-card__amount { font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.price-card__amount small { font-size: 0.45em; font-weight: 600; color: var(--sand); letter-spacing: 0; margin-left: 0.4rem; }
.price-card__desc { color: rgba(255,255,255,0.78); margin-top: 0.9rem; max-width: 460px; }
.price-card__list { display: grid; gap: 0.6rem; }
.price-card__list li { display: flex; align-items: center; gap: 0.6rem; font-size: var(--fs-sm); }
.price-card__list svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.price-card .link-arrow { color: var(--sand); margin-top: 1.25rem; }
@media (min-width: 900px) { .price-card { grid-template-columns: 1.2fr 1fr; } }
.price-card--center { text-align: center; justify-items: center; padding-block: clamp(3rem, 6vw, 4.5rem); }
.price-card--center > div { max-width: 640px; }
.price-card--center .price-card__amount { font-size: clamp(3.2rem, 7vw, 5.5rem); }
.price-card--center .price-card__amount small { display: block; font-size: 1.2rem; margin: 0.5rem 0 0; letter-spacing: 0.02em; }
.price-card--center .price-card__desc { margin-inline: auto; max-width: 520px; font-size: var(--fs-lg); }
.price-card--center .link-arrow { justify-content: center; margin-top: 1.5rem; font-size: var(--fs-lg); }
@media (min-width: 900px) { .price-card--center { grid-template-columns: 1fr; } }

/* CTA bandı */
.cta-band { background: var(--sand); }
.cta-band__inner { display: grid; gap: 1.5rem; align-items: center; text-align: center; }
.cta-band h2 { font-size: var(--fs-xl); font-weight: 700; }
.cta-band p { color: var(--ink-soft); margin-top: 0.4rem; }
@media (min-width: 800px) {
  .cta-band__inner { grid-template-columns: 1fr auto; text-align: left; }
}

/* ---------- 9. Sayfa başlığı (iç sayfalar) ---------- */
.page-head { background: var(--navy); color: var(--white); padding-block: clamp(3rem, 7vw, 5.5rem); position: relative; overflow: hidden; }
.page-head::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 100% 0%, rgba(54,169,225,0.22), transparent 60%); pointer-events: none; }
.page-head .container { position: relative; }
.page-head h1 { font-size: var(--fs-2xl); font-weight: 700; max-width: 760px; }
.page-head .lead { color: rgba(255,255,255,0.78); max-width: 720px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: var(--fs-xs); color: rgba(255,255,255,0.6); margin-bottom: 1.2rem; font-family: var(--font-head); }
.breadcrumb a:hover { color: var(--white); }

/* ---------- 10. Tablolar (Fiyatlar sayfası için ortak) ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); min-width: 560px; }
th, td { padding: 1rem 1.15rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: middle; }
th { font-family: var(--font-head); font-weight: 600; font-size: var(--fs-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); background: var(--sand-50); }
tbody tr:last-child td { border-bottom: 0; }
tr.is-featured td { background: #EAF4FB; }
.price-tag { font-family: var(--font-head); font-weight: 700; color: var(--navy); white-space: nowrap; }

/* ---------- 11. Bilgi kutusu, SSS ---------- */
.notice { display: flex; gap: 1rem; padding: 1.25rem 1.5rem; border-left: 4px solid var(--accent); background: var(--sand-50); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.notice svg { flex: none; width: 24px; height: 24px; color: var(--accent); }
.notice p { color: var(--ink-soft); }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 1rem; align-items: center; padding: 1.25rem 0; font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--accent); transition: transform 0.2s; flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 1.25rem; color: var(--ink-soft); max-width: 760px; }

/* ---------- 12. Form ---------- */
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.phone-group { display: grid; grid-template-columns: minmax(0, 7.5rem) 1fr; gap: 0.5rem; }
.phone-group select, .phone-group input { min-width: 0; width: 100%; }
.phone-group select { padding-left: 0.75rem; padding-right: 2rem; background-position: right 0.6rem center; }
.form__row > .field { min-width: 0; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: var(--fs-sm); margin-bottom: 0.4rem; }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; font-size: var(--fs-sm); color: var(--ink); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10,53,86,0.12); }
.field textarea { min-height: 120px; resize: vertical; }
.field--check { display: flex; gap: 0.7rem; align-items: flex-start; font-size: var(--fs-sm); color: var(--ink-soft); }
.field--check input { width: 20px; height: 20px; margin-top: 2px; flex: none; }
.form__msg { display: none; padding: 1rem 1.25rem; border-radius: var(--radius-sm); font-size: var(--fs-sm); }
.form__msg.is-success { display: block; background: #E8F6EE; color: var(--success); }
.form__msg.is-error { display: block; background: #FBE9E4; color: #B4432A; }

/* ---------- 13. Footer ---------- */
.footer { background: var(--navy); color: rgba(255,255,255,0.75); padding-block: clamp(3rem, 6vw, 4.5rem) 0; font-size: var(--fs-sm); }
.footer__grid { display: grid; gap: 2.5rem; padding-bottom: 3rem; }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.3fr 1fr 1fr; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.4fr 0.9fr 1fr 1.3fr; } }
.footer .logo { color: var(--white); gap: 0.85rem; }
.footer .logo__img { height: 46px; }
.footer .logo__word { height: 17px; }
.footer__about { margin-top: 1rem; max-width: 340px; line-height: 1.65; }
.footer h4 { font-family: var(--font-head); font-size: var(--fs-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--sand); margin-bottom: 1rem; }
.footer__list { display: grid; gap: 0.55rem; }
.footer__list a:hover { color: var(--white); }
.footer__contact li { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.7rem; }
.footer__contact svg { flex: none; width: 18px; height: 18px; margin-top: 3px; color: var(--accent); }
.footer__contact a:hover { color: var(--white); }
.footer__map { border-radius: var(--radius-sm); overflow: hidden; background: var(--navy-800); border: 1px solid rgba(255,255,255,0.1); aspect-ratio: 4 / 3; position: relative; }
.footer__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.2); }
.footer__map-placeholder { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 1rem; color: rgba(255,255,255,0.55); font-size: var(--fs-xs); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-block: 1.25rem; display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: space-between; align-items: center; font-size: var(--fs-xs); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
.footer__legal a:hover, .footer__social a:hover { color: var(--white); }
.footer__social { display: flex; gap: 0.75rem; }
.footer__social a { display: inline-flex; align-items: center; gap: 0.35rem; }
.footer__social svg { width: 18px; height: 18px; }

/* ---------- 14. Sabit WhatsApp butonu ---------- */
.wa-btn {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 60;
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--wa); color: var(--white); border-radius: 999px;
  padding: 0.85rem 1.1rem; font-family: var(--font-head); font-weight: 700; font-size: var(--fs-sm);
  box-shadow: 0 10px 28px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(37,211,102,0.5); }
.wa-btn svg { width: 24px; height: 24px; }
.wa-btn span { display: none; }
@media (min-width: 640px) { .wa-btn span { display: inline; } .wa-btn { right: 1.5rem; bottom: 1.5rem; } }

/* ---------- 15. Çerez uyarısı ---------- */
.cookie {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 70;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 1.25rem 1.5rem;
  display: none; gap: 1rem; align-items: center; flex-wrap: wrap;
  font-size: var(--fs-sm); color: var(--ink-soft);
}
.cookie.is-visible { display: flex; }
.cookie p { flex: 1 1 320px; }
.cookie__actions { display: flex; gap: 0.6rem; }
@media (min-width: 720px) { .cookie { left: auto; right: 1.5rem; bottom: 5.5rem; max-width: 520px; } }

/* ---------- 16. Placeholder (doldurulacak alanlar) ---------- */
[data-placeholder] { border-bottom: 1px dashed var(--accent); }
.footer [data-placeholder], .hero [data-placeholder] { border-bottom-color: rgba(15,123,184,0.6); }

/* ---------- 17. Animasyon ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.is-visible { opacity: 1; transform: none; }
  .reveal[data-delay="1"] { transition-delay: 0.1s; }
  .reveal[data-delay="2"] { transition-delay: 0.2s; }
  .reveal[data-delay="3"] { transition-delay: 0.3s; }
}

/* ---------- 18. Yazdırma ---------- */
@media print {
  .header, .mobile-nav, .wa-btn, .cookie, .hero__art { display: none !important; }
  body { color: #000; }
}

/* ---------- 19. Süreç sayfası (Nasıl Çalışır / How It Works) ---------- */
.flow { display: flex; gap: 0; overflow-x: auto; padding-block: 0.5rem; scrollbar-width: none; }
.flow::-webkit-scrollbar { display: none; }
.flow li { flex: 1 0 150px; position: relative; text-align: center; padding: 0 0.5rem; }
.flow li::before { content: ""; position: absolute; top: 32px; left: 50%; width: 100%; height: 2px; background: repeating-linear-gradient(90deg, var(--sand) 0 6px, transparent 6px 12px); opacity: 0.45; }
.flow li:last-child::before { display: none; }
.flow__icon { position: relative; z-index: 1; width: 64px; height: 64px; margin: 0 auto 0.75rem; border-radius: 50%; background: var(--sand); color: var(--navy); display: grid; place-items: center; box-shadow: 0 0 0 6px var(--navy); }
.flow__icon svg { width: 32px; height: 32px; }
.flow li span:not(.flow__icon) { display: block; font-family: var(--font-head); font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.flow li a { display: block; }
.flow li a:hover span:not(.flow__icon) { color: var(--white); }
.flow li .flow__icon { color: var(--navy); }
.flow li a:hover .flow__icon { background: var(--white); }

.process { display: grid; gap: 2.5rem; }
.process__nav { display: none; }
@media (min-width: 1000px) {
  .process { grid-template-columns: 240px 1fr; gap: 4rem; }
  .process__nav { display: block; position: sticky; top: calc(var(--header-h) + 2rem); align-self: start; }
}
.process__nav a:not(.btn) { display: flex; gap: 0.75rem; align-items: baseline; padding: 0.55rem 0 0.55rem 1rem; border-left: 2px solid var(--line); color: var(--ink-muted); font-family: var(--font-head); font-weight: 500; font-size: var(--fs-sm); transition: color 0.2s, border-color 0.2s; }
.process__nav a:not(.btn) .num { font-weight: 700; color: var(--steel); font-size: var(--fs-xs); }
.process__nav a:not(.btn):hover { color: var(--navy); }
.process__nav a:not(.btn).is-active { color: var(--navy); border-left-color: var(--accent); font-weight: 600; }
.process__nav a:not(.btn).is-active .num { color: var(--accent); }
.process__nav .btn { margin-top: 1.5rem; }

.tstep { display: grid; grid-template-columns: 56px 1fr; gap: 1.25rem; padding-block: 2.25rem; border-top: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 1.5rem); }
.tstep:first-child { border-top: 0; padding-top: 0; }
.tstep__num { width: 56px; height: 56px; border-radius: 14px; background: var(--navy); color: var(--sand); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; }
.tstep h2 { font-size: var(--fs-xl); font-weight: 700; margin-bottom: 0.6rem; }
.tstep p { color: var(--ink-soft); line-height: 1.7; max-width: 660px; }
.tstep__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.tstep__tags span { display: inline-block; font-family: var(--font-head); font-size: var(--fs-xs); font-weight: 600; padding: 0.35rem 0.75rem; border-radius: 999px; background: var(--sand-100); color: var(--navy); }
@media (max-width: 520px) { .tstep { grid-template-columns: 1fr; gap: 0.75rem; } .tstep__num { width: 44px; height: 44px; font-size: 1rem; border-radius: 10px; } }

/* ---------- 20. Fiyatlar sayfası ---------- */
.price-table caption { caption-side: top; text-align: left; padding: 1rem 1.15rem; font-family: var(--font-head); font-weight: 600; font-size: var(--fs-sm); color: var(--navy); background: var(--white); border-bottom: 1px solid var(--line); }
.price-table td:first-child { font-family: var(--font-head); font-weight: 600; color: var(--navy); white-space: nowrap; }
.price-table .muted { display: block; font-size: var(--fs-xs); color: var(--ink-muted); font-weight: 500; margin-top: 0.15rem; }
.price-table tr.is-featured td:first-child::after { content: attr(data-badge); display: inline-block; margin-left: 0.5rem; padding: 0.15rem 0.5rem; border-radius: 999px; background: var(--accent); color: var(--white); font-size: 0.65rem; letter-spacing: 0.06em; text-transform: uppercase; vertical-align: middle; }
.price-table .moves { font-family: var(--font-head); font-weight: 600; }

.notes { display: grid; gap: 0.75rem; }
.notes li { position: relative; padding: 0.9rem 1.1rem 0.9rem 2.2rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: var(--fs-sm); color: var(--ink-soft); line-height: 1.55; }
.notes li::before { content: ""; position: absolute; left: 1.1rem; top: 1.35rem; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.notes strong { color: var(--navy); }

.pkg { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.pkg__label { font-family: var(--font-head); font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.pkg__value { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; letter-spacing: -0.03em; color: var(--navy); margin-top: 0.4rem; line-height: 1.1; }
.pkg__value small { font-size: 0.5em; font-weight: 600; color: var(--ink-muted); letter-spacing: 0; }
.pkg p { font-size: var(--fs-sm); color: var(--ink-soft); margin-top: 0.6rem; }

.compare th:not(:first-child), .compare td:not(:first-child) { text-align: center; width: 30%; }
.compare th:last-child { color: var(--navy); background: var(--sand); }
.compare td:last-child { background: var(--sand-50); font-family: var(--font-head); font-weight: 700; color: var(--navy); }
.compare td:first-child { font-weight: 500; }
.compare .bad { color: #B4432A; font-weight: 600; }
.compare .good { color: var(--success); }
.compare .neutral { color: var(--ink-soft); }

/* ---------- 21. Tesis ve Güvenlik sayfası ---------- */
.facility-art { background: var(--navy); border-radius: var(--radius); padding: clamp(1rem, 3vw, 2rem); position: relative; }
.facility-art svg { width: 100%; height: auto; }
.callouts { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 0.75rem; margin-top: 1rem; }
.callouts a { display: flex; gap: 0.7rem; align-items: center; padding: 0.7rem 0.9rem; border-radius: var(--radius-sm); background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.85); font-family: var(--font-head); font-weight: 600; font-size: var(--fs-sm); transition: background 0.2s; }
.callouts a:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.callouts .num { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--accent); color: var(--white); display: grid; place-items: center; font-size: 0.75rem; font-weight: 700; }

.spec { display: grid; grid-template-columns: 1fr; gap: 1.5rem; padding-block: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 1rem); }
.spec:first-child { border-top: 0; padding-top: 0; }
@media (min-width: 860px) { .spec { grid-template-columns: 300px 1fr; gap: 3rem; } }
.spec__head { display: flex; gap: 1rem; align-items: flex-start; }
.spec__icon { flex: none; width: 52px; height: 52px; border-radius: 14px; background: var(--navy); color: var(--sand); display: grid; place-items: center; }
.spec__icon svg { width: 26px; height: 26px; }
.spec__head h2 { font-size: var(--fs-xl); font-weight: 700; }
.spec__head .num { display: block; font-family: var(--font-head); font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 0.3rem; }
.spec__list { display: grid; gap: 0.75rem; }
.spec__list li { display: flex; gap: 0.8rem; align-items: flex-start; padding: 0.95rem 1.1rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); line-height: 1.55; color: var(--ink-soft); }
.spec__list svg { flex: none; width: 20px; height: 20px; color: var(--success); margin-top: 3px; }
.spec__list strong { color: var(--navy); }

.location { display: grid; gap: 2rem; align-items: stretch; }
@media (min-width: 900px) { .location { grid-template-columns: 1fr 1fr; } }
.location__map { border-radius: var(--radius); overflow: hidden; background: var(--navy-800); border: 1px solid var(--line); min-height: 320px; position: relative; }
.location__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.location__map .footer__map-placeholder { color: rgba(255,255,255,0.6); }
.location__facts { display: grid; gap: 0.75rem; margin-top: 1.5rem; }
.location__facts li { display: flex; gap: 0.8rem; align-items: center; padding: 0.9rem 1.1rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: var(--fs-sm); color: var(--ink-soft); }
.location__facts svg { flex: none; width: 20px; height: 20px; color: var(--accent); }

/* ---------- 22. SSS sayfası ---------- */
.faq-layout { display: grid; gap: 3rem; }
@media (min-width: 1000px) { .faq-layout { grid-template-columns: 1fr 320px; gap: 4rem; } }
.faq-aside { align-self: start; }
@media (min-width: 1000px) { .faq-aside { position: sticky; top: calc(var(--header-h) + 2rem); } }
.faq-aside__card { background: var(--sand-50); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; }
.faq-aside__card h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.faq-aside__card p { font-size: var(--fs-sm); color: var(--ink-soft); margin-bottom: 1.25rem; }
.faq-aside__links { margin-top: 1.5rem; padding: 0 0.25rem; }
.faq-aside__links h3 { font-family: var(--font-head); font-size: var(--fs-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.75rem; }
.faq-aside__links a { display: flex; justify-content: space-between; align-items: center; padding: 0.7rem 0; border-top: 1px solid var(--line); font-family: var(--font-head); font-weight: 600; font-size: var(--fs-sm); color: var(--navy); }
.faq-aside__links a svg { width: 16px; height: 16px; color: var(--accent); }
.faq details p:first-of-type { padding-bottom: 0.75rem; }
.faq details[open] summary { color: var(--navy); }

/* ---------- 23. Hakkımızda sayfası ---------- */
.story { display: grid; gap: 2.5rem; }
@media (min-width: 960px) { .story { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: start; } }
.story__text p { color: var(--ink-soft); line-height: 1.75; font-size: var(--fs-base); }
.story__text p + p { margin-top: 1.2rem; }
.story__text p strong { color: var(--navy); }
.story__pull { font-family: var(--font-head); font-size: var(--fs-lg); font-weight: 600; color: var(--navy); line-height: 1.4; padding-left: 1.25rem; border-left: 4px solid var(--accent); margin-block: 1.75rem; }
.invest { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
.invest li { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 1.35rem 1.25rem; display: grid; gap: 0.6rem; }
.invest li svg { width: 30px; height: 30px; color: var(--sand); }
.invest li strong { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; }
.invest li span { font-size: var(--fs-xs); color: rgba(255,255,255,0.7); line-height: 1.5; }
.invest__caption { margin-top: 0.9rem; font-family: var(--font-head); font-size: var(--fs-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); }

.value { padding: clamp(1.5rem, 3vw, 2.25rem); border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); }
.value__num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; letter-spacing: -0.04em; color: #B9D0E3; line-height: 1; }
.value h3 { font-size: 1.35rem; font-weight: 700; margin-top: 0.9rem; margin-bottom: 0.5rem; }
.value p { color: var(--ink-soft); }

.team { display: grid; gap: 1.5rem; }
@media (min-width: 900px) { .team { grid-template-columns: 1.2fr 1fr; } }
.founder { display: grid; grid-template-columns: 96px 1fr; gap: 1.5rem; align-items: start; padding: clamp(1.5rem, 3vw, 2.25rem); background: var(--sand-50); border: 1px solid var(--line); border-radius: var(--radius); }
.founder__avatar { width: 96px; height: 96px; border-radius: 50%; background: var(--navy); color: var(--sand); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; letter-spacing: -0.02em; }
.founder h3 { font-size: 1.3rem; font-weight: 700; }
.founder__role { font-family: var(--font-head); font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-top: 0.25rem; }
.founder p { color: var(--ink-soft); margin-top: 0.8rem; line-height: 1.65; }
@media (max-width: 520px) { .founder { grid-template-columns: 1fr; } }
.crew { padding: clamp(1.5rem, 3vw, 2.25rem); background: var(--navy); color: var(--white); border-radius: var(--radius); }
.crew h3 { font-size: 1.3rem; font-weight: 700; }
.crew p { color: rgba(255,255,255,0.78); margin-top: 0.8rem; line-height: 1.65; }
.crew ul { display: grid; gap: 0.6rem; margin-top: 1.25rem; }
.crew li { display: flex; gap: 0.6rem; align-items: center; font-size: var(--fs-sm); }
.crew li svg { width: 18px; height: 18px; color: var(--accent); flex: none; }

/* ---------- 24. İletişim sayfası ---------- */
.contact-layout { display: grid; gap: 3rem; }
@media (min-width: 1000px) { .contact-layout { grid-template-columns: 1.4fr 1fr; gap: 4rem; align-items: start; } }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--shadow); }
.form-card h2 { font-size: var(--fs-xl); font-weight: 700; margin-bottom: 0.4rem; }
.form-card > p { color: var(--ink-soft); font-size: var(--fs-sm); margin-bottom: 1.75rem; }
.form fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: 1.1rem; }
.form legend { font-family: var(--font-head); font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.9rem; padding: 0; }
.form fieldset + fieldset { margin-top: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.field .hint { display: block; font-size: var(--fs-xs); color: var(--ink-muted); margin-top: 0.35rem; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B1F3A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 16px; padding-right: 2.5rem; }
.radio-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.radio-row label { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1rem; border: 1px solid var(--line); border-radius: 999px; font-size: var(--fs-sm); font-weight: 500; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.radio-row label:has(input:checked) { border-color: var(--navy); background: var(--sand-100); }
.radio-row input { width: 18px; height: 18px; accent-color: var(--accent); margin: 0; }
.form__actions { margin-top: 1.5rem; display: grid; gap: 0.75rem; }
.form__note { font-size: var(--fs-xs); color: var(--ink-muted); line-height: 1.5; }
.form__note a { color: var(--navy); text-decoration: underline; }
.form__msg { margin-top: 1rem; }
.form__wa { display: none; }
.form__wa:not([hidden]) { display: inline-flex; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.contact-aside { display: grid; gap: 1.25rem; }
@media (min-width: 1000px) { .contact-aside { position: sticky; top: calc(var(--header-h) + 2rem); } }
.contact-card { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2rem); }
.contact-card h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.25rem; }
.contact-card ul { display: grid; gap: 1rem; }
.contact-card li { display: flex; gap: 0.85rem; align-items: flex-start; }
.contact-card li svg { flex: none; width: 22px; height: 22px; color: var(--accent); margin-top: 2px; }
.contact-card li strong { display: block; font-family: var(--font-head); font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--sand); margin-bottom: 0.15rem; }
.contact-card li a:hover { text-decoration: underline; }
.contact-card .btn { margin-top: 1.5rem; }
.contact-map { border-radius: var(--radius); overflow: hidden; background: var(--navy-800); border: 1px solid var(--line); aspect-ratio: 4 / 3; position: relative; }
.contact-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.contact-map .footer__map-placeholder { color: rgba(255,255,255,0.6); }
.contact-hours { background: var(--sand-50); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem 1.5rem; font-size: var(--fs-sm); color: var(--ink-soft); display: flex; gap: 0.8rem; align-items: flex-start; }
.contact-hours svg { flex: none; width: 20px; height: 20px; color: var(--accent); margin-top: 2px; }
.contact-hours strong { color: var(--navy); }

/* ---------- 25. Yasal sayfalar ---------- */
.legal { max-width: 800px; }
.legal h2 { font-size: var(--fs-xl); font-weight: 700; margin-top: 2.5rem; margin-bottom: 0.75rem; scroll-margin-top: calc(var(--header-h) + 1rem); }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.15rem; font-weight: 700; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.legal p, .legal li { color: var(--ink-soft); line-height: 1.75; }
.legal p + p { margin-top: 0.9rem; }
.legal ul, .legal ol { margin: 0.75rem 0 0.75rem 1.25rem; display: grid; gap: 0.4rem; }
.legal ul { list-style: disc; } .legal ol { list-style: decimal; }
.legal strong { color: var(--navy); }
.legal .table-wrap { margin-top: 1rem; }
.legal table { min-width: 0; }
.legal__meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; font-family: var(--font-head); font-size: var(--fs-xs); letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 2rem; }
.legal-toc { position: sticky; top: calc(var(--header-h) + 2rem); align-self: start; display: none; }
@media (min-width: 1000px) { .legal-toc { display: block; } .legal-layout { display: grid; grid-template-columns: 1fr 240px; gap: 4rem; } }
.legal-toc h4 { font-family: var(--font-head); font-size: var(--fs-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.75rem; }
.legal-toc a { display: block; padding: 0.45rem 0 0.45rem 1rem; border-left: 2px solid var(--line); font-size: var(--fs-sm); color: var(--ink-soft); font-family: var(--font-head); font-weight: 500; }
.legal-toc a:hover { color: var(--navy); border-left-color: var(--accent); }

/* ---------- 26. Sigorta ortağı (Gültekin Global) ---------- */
.partner { display: grid; gap: 1.5rem; align-items: center; padding: clamp(1.5rem, 3vw, 2.25rem); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
@media (min-width: 720px) { .partner { grid-template-columns: 220px 1fr; gap: 2rem; } }
.partner__logo { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0.75rem 1rem; display: grid; place-items: center; }
.partner__logo img { width: 100%; max-width: 220px; height: auto; }
.partner__label { font-family: var(--font-head); font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem; }
.partner h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.partner p { color: var(--ink-soft); font-size: var(--fs-sm); line-height: 1.65; }
.partner .btn { margin-top: 1rem; }
.partner-inline { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-top: 1rem; padding: 0.6rem 0.9rem 0.6rem 0.6rem; border: 1px solid var(--line); border-radius: var(--radius-sm); font-family: var(--font-head); font-size: var(--fs-xs); font-weight: 600; color: var(--accent); background: var(--sand-50); }
.partner-inline img { height: 56px; width: auto; border-radius: 4px; background: var(--white); }
.footer__partner { margin-top: 1.5rem; }
.footer__partner span { display: block; font-family: var(--font-head); font-size: var(--fs-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--sand); margin-bottom: 0.6rem; }
.footer__partner a { display: inline-block; background: var(--white); border-radius: var(--radius-sm); padding: 0.5rem 0.8rem; }
.footer__partner img { height: 68px; width: auto; }

/* ---------- 27. Rafmarin'in artıları (Fiyatlar) ---------- */
.adv-grid { list-style: none; }
.adv { display: flex; gap: 0.9rem; align-items: flex-start; height: 100%; padding: 1.35rem 1.4rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.adv svg { flex: none; width: 26px; height: 26px; padding: 4px; border-radius: 50%; background: var(--sand-100); color: var(--accent); margin-top: 2px; }
.adv h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.3rem; }
.adv p { font-size: var(--fs-sm); color: var(--ink-soft); line-height: 1.55; }
