/* ==========================================================================
   AGR Koçluk — Tasarım Sistemi
   Palet: Beyaz taban + lacivert mürekkep + tek kurumsal vurgu rengi
   ========================================================================== */

/* --- 1. Tokenlar ---------------------------------------------------------- */
:root {
  /* Yüzeyler */
  --bg:          #ffffff;
  --surface:     #f7f8fa;
  --surface-2:   #eef1f6;
  --line:        #e3e7ee;
  --line-strong: #cfd6e2;

  /* Metin */
  --ink:   #101a2e;
  --body:  #4a5468;
  --muted: #6b7688;

  /* Vurgu */
  --accent:       #1a3a6b;
  --accent-hover: #122b50;
  --accent-soft:  #eaf0f8;
  --accent-line:  #c7d6ea;

  /* Koyu bant */
  --dark:         #0d1728;
  --dark-2:       #16223a;
  --dark-line:    #26344f;
  --on-dark:      #eef2f8;
  --on-dark-mute: #9fadc4;

  /* Durum */
  --ok:   #1f6b47;
  --warn: #8a6410;

  /* Tipografi */
  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Ölçek */
  --container: 1160px;
  --radius:    14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(16, 26, 46, .05);
  --shadow:    0 4px 16px rgba(16, 26, 46, .07);
  --shadow-lg: 0 18px 48px rgba(16, 26, 46, .12);

  --header-h: 74px;
}

/* --- 2. Temel ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.15rem, 1.4rem + 3.1vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 1.25rem + 1.9vw, 2.5rem); }
h3 { font-size: clamp(1.16rem, 1.05rem + .45vw, 1.35rem); }
h4 { font-size: 1.03rem; }

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration-color: var(--accent-line); text-underline-offset: 3px; }
a:hover { color: var(--accent-hover); text-decoration-color: currentColor; }

strong { color: var(--ink); font-weight: 650; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--accent); color: #fff; padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; color: #fff; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- 3. Yerleşim ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: 800px; }

.section { padding-block: clamp(56px, 7vw, 100px); }
.section--tight { padding-block: clamp(44px, 5vw, 68px); }
.section--surface { background: var(--surface); border-block: 1px solid var(--line); }
.section--dark { background: var(--dark); color: var(--on-dark-mute); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.06rem; margin-bottom: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: .76rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 20px; height: 1px; background: var(--accent-line); }
.section-head--center .eyebrow::after { content: ""; width: 20px; height: 1px; background: var(--accent-line); }
.section--dark .eyebrow { color: #8fb0dd; }
.section--dark .eyebrow::before, .section--dark .eyebrow::after { background: var(--dark-line); }

.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(276px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(228px, 1fr)); }

/* --- 4. Butonlar ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px;
  font-family: var(--font-body); font-size: .96rem; font-weight: 600; line-height: 1.2;
  border: 1px solid transparent; border-radius: 999px;
  text-decoration: none; cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--accent-hover); color: #fff; box-shadow: var(--shadow); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--surface); color: var(--ink); border-color: var(--accent); }

.btn--onDark { background: #fff; color: var(--dark); }
.btn--onDark:hover { background: var(--on-dark); color: var(--dark); }

.btn--onDarkGhost { background: transparent; color: #fff; border-color: var(--dark-line); }
.btn--onDarkGhost:hover { background: rgba(255,255,255,.07); color: #fff; border-color: var(--on-dark-mute); }

.btn--wide { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: .89rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row--center { justify-content: center; }

/* --- 5. Başlık / Navigasyon ---------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 1px 14px rgba(16,26,46,.08); }

.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; flex: none; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: .95rem; font-weight: 600; letter-spacing: .02em;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--ink); letter-spacing: -.01em;
}
.brand__tag { font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 13px; border-radius: 8px;
  font-size: .94rem; font-weight: 500; color: var(--body); text-decoration: none;
  transition: color .15s ease, background-color .15s ease;
  white-space: nowrap;
}
.nav a:hover { color: var(--ink); background: var(--surface); }
.nav a[aria-current="page"] { color: var(--accent); font-weight: 650; }
/* Menü içindeki CTA yalnızca mobil açılır menüde görünür */
.nav > .btn { display: none; }

.header-actions { display: flex; align-items: center; gap: 10px; flex: none; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px; padding: 0;
  background: transparent; border: 1px solid var(--line-strong); border-radius: 10px;
  cursor: pointer; color: var(--ink);
}
.nav-toggle span {
  display: block; width: 18px; height: 1.5px; margin: 4px auto; background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav-toggle { display: block; }
  .header-actions .btn { display: none; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px;
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    box-shadow: var(--shadow-lg);
  }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav a { padding: 14px 8px; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1rem; }
  .nav a:hover { background: transparent; }
  .nav > .btn { display: inline-flex; margin-top: 18px; padding: 13px 24px; border-bottom: 0; }
}

/* --- 6. Hero -------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(54px, 7vw, 96px);
  background:
    radial-gradient(58% 82% at 82% 0%, var(--accent-soft) 0%, rgba(234,240,248,0) 62%),
    var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero__grid {
  display: grid; gap: clamp(40px, 5vw, 64px);
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  align-items: center;
}
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } }

.hero h1 { margin-bottom: .35em; }
.hero__lead { font-size: clamp(1.04rem, .98rem + .3vw, 1.2rem); max-width: 56ch; margin-bottom: 1.8em; }

.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 11px; margin-bottom: 22px;
  background: #fff; border: 1px solid var(--accent-line); border-radius: 999px;
  font-size: .81rem; font-weight: 600; color: var(--accent); letter-spacing: .01em;
  box-shadow: var(--shadow-sm);
}
.badge__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--ok); flex: none;
  box-shadow: 0 0 0 3px rgba(31,107,71,.14);
}

.hero__meta {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line);
  font-size: .88rem; color: var(--muted);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero__meta svg { width: 15px; height: 15px; color: var(--accent); flex: none; }

/* Hero paneli — günlük arama takip kartı */
.callcard {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 26px; position: relative;
}
.callcard__top {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--line);
}
.callcard__label { font-size: .72rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: var(--muted); }
.callcard__title { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); margin-top: 3px; }
.callcard__pill {
  font-size: .74rem; font-weight: 700; color: var(--ok);
  background: rgba(31,107,71,.09); border-radius: 999px; padding: 5px 11px; white-space: nowrap;
}
.dots { display: grid; grid-template-columns: repeat(10, 1fr); gap: 6px; margin-bottom: 18px; }
.dots i { aspect-ratio: 1; border-radius: 4px; background: var(--accent); opacity: .9; }
.dots i.is-empty { background: var(--surface-2); }
.dots i.is-today { background: var(--ok); box-shadow: 0 0 0 2px rgba(31,107,71,.2); }

.callcard__rows {
  display: grid; gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden;
}
.callcard__row {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: #fff; padding: 11px 14px; font-size: .89rem;
}
.callcard__row span:first-child { color: var(--body); }
.callcard__row span:last-child { color: var(--ink); font-weight: 600; }

/* --- 7. Kartlar ----------------------------------------------------------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.card h3 { margin-bottom: .45em; }
.card p { font-size: .96rem; }
.card--link:hover { border-color: var(--accent-line); box-shadow: var(--shadow); transform: translateY(-3px); }

.card__icon {
  width: 44px; height: 44px; border-radius: 11px; margin-bottom: 18px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
}
.card__icon svg { width: 21px; height: 21px; }

.card__more {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 18px;
  font-size: .9rem; font-weight: 650; color: var(--accent); text-decoration: none;
}
.card__more svg { width: 15px; height: 15px; transition: transform .18s ease; }
.card--link:hover .card__more svg { transform: translateX(3px); }

/* Program kartı */
.program-card { display: flex; flex-direction: column; }
.program-card__tag {
  align-self: flex-start; margin-bottom: 14px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-soft); padding: 5px 11px; border-radius: 6px;
}
.program-card ul { margin: 16px 0 0; }
.program-card .card__more { margin-top: auto; padding-top: 20px; }

/* --- 8. Listeler ---------------------------------------------------------- */
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.ticks li { position: relative; padding-left: 30px; font-size: .96rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a3a6b' 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;
}
.section--dark .ticks li::before {
  background-color: rgba(255,255,255,.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.prose h2 { margin-top: 1.9em; }
.prose h3 { margin-top: 1.7em; }
.prose > :first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.25em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .5em; }
.prose li::marker { color: var(--accent); }

/* --- 9. Adımlar ----------------------------------------------------------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: 68px 1fr; gap: 22px; align-items: start;
  padding: 26px 0; border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 600;
  color: var(--accent); opacity: .35; line-height: 1; padding-top: 2px;
}
.step h3 { margin-bottom: .4em; }
.step p { font-size: .97rem; margin-bottom: 0; }
@media (max-width: 560px) {
  .step { grid-template-columns: 1fr; gap: 8px; }
  .step__num { font-size: 1.5rem; }
}

/* --- 10. Karşılaştırma tablosu ------------------------------------------- */
.compare { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.compare table { width: 100%; min-width: 620px; border-collapse: collapse; font-size: .95rem; }
.compare th, .compare td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare thead th {
  font-family: var(--font-body); font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  background: var(--surface); white-space: nowrap;
}
.compare tbody th { font-weight: 600; color: var(--ink); width: 30%; }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: 0; }
.compare .col-ours { background: var(--accent-soft); color: var(--ink); font-weight: 600; }
.compare thead .col-ours { background: var(--accent); color: #fff; }

/* Dar ekranda tabloyu yana kaydırma ipucu */
.compare-hint { display: none; font-size: .82rem; color: var(--muted); margin-top: 10px; }
@media (max-width: 700px) { .compare-hint { display: block; } }

/* --- 11. Akordiyon (SSS) -------------------------------------------------- */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  padding: 22px 4px; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; color: var(--ink); line-height: 1.4;
}
.faq__q:hover { color: var(--accent); }
.faq__icon { flex: none; width: 22px; height: 22px; margin-top: 3px; position: relative; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; inset: 50% 2px auto; height: 1.6px; background: var(--accent);
  transition: transform .22s ease;
}
.faq__icon::after { transform: rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: rotate(0deg); }
.faq__a { display: none; padding: 0 4px 24px; max-width: 74ch; }
.faq__a p { font-size: .97rem; }
.faq__item.is-open .faq__a { display: block; }

/* --- 12. Geri sayım ------------------------------------------------------- */
.countdown { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.cd { background: var(--dark-2); border: 1px solid var(--dark-line); border-radius: var(--radius); padding: 22px; }
.cd__name { font-size: .76rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: #8fb0dd; }
.cd__days {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: #fff;
  line-height: 1.05; margin: 10px 0 2px; font-variant-numeric: tabular-nums;
}
.cd__unit { font-size: .86rem; color: var(--on-dark-mute); }
.cd__date { font-size: .8rem; color: var(--on-dark-mute); margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--dark-line); }

/* --- 13. Yorumlar --------------------------------------------------------- */
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.quote__stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--warn); }
.quote__stars svg { width: 15px; height: 15px; }
.quote blockquote { margin: 0 0 20px; font-size: .99rem; color: var(--body); }
.quote figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: .92rem; font-weight: 600;
}
.quote__who { font-size: .92rem; font-weight: 650; color: var(--ink); line-height: 1.35; }
.quote__where { font-size: .82rem; color: var(--muted); }

/* --- 14. İstatistik bandı ------------------------------------------------- */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.stat { background: #fff; padding: 26px 22px; }
.stat__num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; color: var(--ink); line-height: 1; }
.stat__label { font-size: .89rem; color: var(--muted); margin-top: 8px; }

/* --- 15. CTA bandı -------------------------------------------------------- */
.cta-band { background: var(--dark); color: var(--on-dark-mute); }
.cta-band__inner {
  display: grid; gap: 30px; align-items: center;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  padding-block: clamp(48px, 6vw, 76px);
}
@media (max-width: 820px) { .cta-band__inner { grid-template-columns: 1fr; } }
.cta-band h2 { color: #fff; margin-bottom: .4em; }
.cta-band p { font-size: 1.03rem; margin-bottom: 0; }
.cta-band .btn-row { justify-content: flex-start; }
@media (min-width: 821px) { .cta-band .btn-row { justify-content: flex-end; } }

/* --- 16. İletişim kanalları ---------------------------------------------- */
.channels { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.channel {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; text-decoration: none; box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.channel:hover { border-color: var(--accent-line); box-shadow: var(--shadow); transform: translateY(-3px); }
.channel__icon {
  width: 42px; height: 42px; border-radius: 11px; background: var(--accent-soft);
  color: var(--accent); display: grid; place-items: center; flex: none;
}
.channel__icon svg { width: 20px; height: 20px; }
.channel__name { font-family: var(--font-display); font-size: 1.06rem; font-weight: 600; color: var(--ink); }
.channel__value { font-size: .93rem; color: var(--body); margin-top: 2px; word-break: break-word; }
.channel__hint { font-size: .82rem; color: var(--muted); margin-top: 6px; }

/* --- 17. Form ------------------------------------------------------------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.field { display: grid; gap: 7px; }
.field label { font-size: .87rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  font-family: inherit; font-size: .96rem; color: var(--ink);
  background: #fff; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { min-height: 130px; resize: vertical; }
.field__hint { font-size: .8rem; color: var(--muted); }
.form__consent { display: flex; gap: 10px; align-items: flex-start; font-size: .86rem; color: var(--muted); }
.form__consent input { width: 17px; height: 17px; margin-top: 3px; flex: none; accent-color: var(--accent); }

/* --- 18. Footer ----------------------------------------------------------- */
.site-footer { background: var(--dark); color: var(--on-dark-mute); font-size: .93rem; }
.footer-grid {
  display: grid; gap: 40px;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  padding-block: clamp(48px, 6vw, 70px);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer .brand__name { color: #fff; }
.site-footer .brand__tag { color: var(--on-dark-mute); }
.site-footer .brand__mark { background: #fff; color: var(--dark); }
.footer-about { max-width: 38ch; margin-top: 18px; font-size: .92rem; }

.footer-col h4 {
  font-family: var(--font-body); font-size: .76rem; font-weight: 700;
  letter-spacing: .11em; text-transform: uppercase; color: #fff; margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--on-dark-mute); text-decoration: none; }
.footer-col a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid var(--dark-line); color: var(--on-dark-mute);
  display: grid; place-items: center; transition: all .18s ease;
}
.socials a:hover { background: #fff; color: var(--dark); border-color: #fff; }
.socials svg { width: 18px; height: 18px; }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; justify-content: space-between;
  padding-block: 22px; border-top: 1px solid var(--dark-line);
  font-size: .85rem; color: var(--on-dark-mute);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-bottom a { color: var(--on-dark-mute); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* --- 19. Sayfa başlığı (iç sayfalar) ------------------------------------- */
.page-hero {
  background:
    radial-gradient(50% 85% at 88% 0%, var(--accent-soft) 0%, rgba(234,240,248,0) 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(40px, 5vw, 66px);
}
.page-hero h1 { margin-bottom: .3em; }
.page-hero__lead { font-size: clamp(1.02rem, .97rem + .28vw, 1.16rem); max-width: 62ch; }

.breadcrumb { font-size: .84rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: var(--line-strong); }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }

/* --- 20. Paket kartları --------------------------------------------------- */
.plan {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
}
.plan--featured { border-color: var(--accent); box-shadow: var(--shadow); position: relative; }
.plan__flag {
  position: absolute; top: -13px; left: 26px;
  background: var(--accent); color: #fff; font-size: .72rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; padding: 5px 13px; border-radius: 999px;
}
.plan__name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--ink); }
.plan__for { font-size: .9rem; color: var(--muted); margin-top: 4px; }
@media (min-width: 900px) { .plan__for { min-height: 3.1em; } }
.plan__price { margin: 22px 0; padding: 18px 0; border-block: 1px solid var(--line); }
.plan__price b { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--ink); display: block; }
.plan__price span { font-size: .86rem; color: var(--muted); }
.plan .ticks { margin-bottom: 26px; }
.plan .btn { margin-top: auto; }

/* --- 21. Yardımcılar ------------------------------------------------------ */
.note {
  background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm); padding: 18px 22px; font-size: .93rem;
}
.lead { font-size: 1.1rem; color: var(--body); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.reveal { opacity: 0; transform: translateY(16px); }
.reveal.is-visible { opacity: 1; transform: none; transition: opacity .55s ease, transform .55s ease; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle, .btn { display: none !important; }
  body { font-size: 12pt; color: #000; }
}
