/* ==========================================================================
   Probuddy Etik Hat — alt1: KURUMSAL GÜVEN / LEGAL
   Authority & trust. Deep navy dominant, ledger-like trust panels,
   hairline borders, low radius, restrained shadows, dignified gold accent.
   ========================================================================== */

/* ---------- Design Tokens ------------------------------------------------ */
:root {
  /* Brand — navy */
  --navy:        #2B3F86;
  --navy-dark:   #1E2C61;
  --navy-tint:   #EAEDF8;
  --navy-ink:    #16203F;

  /* Dignified accent — discreet gold */
  --gold:        #B08A3E;
  --gold-soft:   #C9A55A;
  --gold-tint:   #F6EFDF;

  /* Neutrals */
  --ink:         #16203F;
  --ink-2:       #3A4566;
  --muted:       #5C6580;
  --muted-2:     #8089A3;
  --line:        #D9DEEC;
  --line-soft:   #E7EAF3;
  --paper:       #FFFFFF;
  --paper-2:     #F7F8FC;
  --paper-3:     #F1F3FA;

  /* On-dark text */
  --on-dark:     #FFFFFF;
  --on-dark-mut: #C3CAE6;
  --on-dark-line:#3A4A82;

  /* Type */
  --font-head: 'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Type scale (settled, not poster) */
  --fs-eyebrow: 0.78rem;
  --fs-small:   0.875rem;
  --fs-body:    1rem;     /* 16px */
  --fs-lead:    1.125rem;
  --fs-h4:      1.125rem;
  --fs-h3:      1.375rem;
  --fs-h2:      1.875rem;
  --fs-h1:      2.5rem;
  --lh-body:    1.6;
  --lh-tight:   1.2;

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 5.5rem;

  /* Geometry */
  --radius:    5px;
  --radius-sm: 4px;
  --radius-lg: 6px;
  --maxw:      1180px;
  --maxw-narrow: 840px;

  /* Borders & shadow (restrained) */
  --border:    1px solid var(--line);
  --border-soft: 1px solid var(--line-soft);
  --shadow:    0 1px 2px rgba(22, 32, 63, 0.05);
  --shadow-md: 0 6px 22px rgba(22, 32, 63, 0.08);

  --focus: 0 0 0 3px rgba(176, 138, 62, 0.45);
}

/* ---------- Reset / base ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-ink);
  line-height: var(--lh-tight);
  margin: 0 0 var(--sp-4);
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-h1); font-weight: 700; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p { margin: 0 0 var(--sp-4); }
p:last-child { margin-bottom: 0; }

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--navy-dark); text-decoration: underline; }

ul { margin: 0; padding: 0; list-style: none; }

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

/* Focus visibility */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}
a:focus-visible, button:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-ink);
  color: #fff;
  padding: var(--sp-3) var(--sp-4);
  z-index: 1200;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; color: #fff; text-decoration: none; }

/* ---------- Layout helpers ---------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--sp-5);
}
.section { padding-block: var(--sp-8); }
.section--tint { background: var(--paper-2); border-block: var(--border); }
.section--ink {
  background: var(--navy-ink);
  color: var(--on-dark);
  border-block: 1px solid var(--navy-dark);
}
.section--narrow { max-width: var(--maxw-narrow); margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 var(--sp-3);
}
.section--ink .eyebrow { color: var(--gold-soft); }

.section-head { max-width: 680px; margin-bottom: var(--sp-7); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: var(--fs-lead); margin-bottom: 0; }
.section--ink .section-head p { color: var(--on-dark-mut); }

.lead { font-size: var(--fs-lead); color: var(--ink-2); }

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-head);
  font-size: var(--fs-small);
  font-weight: 600;
  line-height: 1;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease,
              border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn svg { width: 1em; height: 1em; }

.btn--primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn--primary:hover { background: var(--navy-dark); border-color: var(--navy-dark); color: #fff; }

.btn--secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn--secondary:hover { background: var(--navy-tint); color: var(--navy-dark); border-color: var(--navy); }

.btn--gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn--gold:hover { background: #9a7733; border-color: #9a7733; color: #fff; }

.btn--on-dark {
  background: #fff;
  color: var(--navy-ink);
  border-color: #fff;
}
.btn--on-dark:hover { background: var(--navy-tint); color: var(--navy-dark); }

.btn--ghost-dark {
  background: transparent;
  color: #fff;
  border-color: var(--on-dark-line);
}
.btn--ghost-dark:hover { background: rgba(255,255,255,.08); color: #fff; border-color: var(--gold-soft); }

.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: 0.6rem 1rem; }

/* Inline text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--navy);
}
.link-arrow svg { width: 0.9em; height: 0.9em; transition: transform .18s ease; }
.link-arrow:hover { color: var(--gold); text-decoration: none; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- Header ------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy-ink);          /* SOLID deep navy, not transparent */
  border-bottom: 1px solid var(--navy-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  min-height: 72px;
}

/* Logo slot / wordmark */
.brand { display: inline-flex; align-items: center; gap: 0.65rem; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--on-dark-line);
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  flex: none;
}
.brand-mark svg { width: 20px; height: 20px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-family: var(--font-head);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}

/* Nav */
.nav { display: flex; align-items: center; gap: var(--sp-6); }
.nav-list { display: flex; align-items: center; gap: var(--sp-5); }
.nav-list a {
  font-family: var(--font-head);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--on-dark-mut);
  padding: 0.4rem 0;
  position: relative;
}
.nav-list a:hover { color: #fff; text-decoration: none; }
.nav-list a[aria-current="page"] { color: #fff; }
.nav-list a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gold);
}
.nav-actions { display: flex; align-items: center; gap: var(--sp-3); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--on-dark-line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: #fff;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy-ink);
    border-bottom: 1px solid var(--navy-dark);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--sp-4) var(--sp-5) var(--sp-6);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list a {
    padding: var(--sp-4) 0;
    border-bottom: 1px solid var(--on-dark-line);
    color: #fff;
  }
  .nav-list a[aria-current="page"]::after { display: none; }
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-3);
    margin-top: var(--sp-4);
  }
  .nav-actions .btn { justify-content: center; }
}

/* ---------- Hero --------------------------------------------------------- */
.hero {
  background:
    radial-gradient(1100px 480px at 12% -10%, rgba(43,63,134,.10), transparent 60%),
    var(--paper);
  border-bottom: var(--border);
  padding-block: var(--sp-9);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--sp-8);
  align-items: center;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-head);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy-dark);
  background: var(--navy-tint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}
.badge svg { width: 0.95em; height: 0.95em; color: var(--gold); }
.hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: var(--sp-5); max-width: 16ch; }
.hero-sub { font-size: var(--fs-lead); color: var(--ink-2); max-width: 52ch; margin-bottom: var(--sp-6); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* Trust panel — ledger card */
.trust-panel {
  background: var(--paper);
  border: var(--border);
  border-top: 3px solid var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.trust-panel__head {
  display: flex; align-items: center; gap: 0.6rem;
  padding: var(--sp-4) var(--sp-5);
  background: var(--paper-2);
  border-bottom: var(--border);
  font-family: var(--font-head);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--navy-ink);
}
.trust-panel__head svg { width: 1.05em; height: 1.05em; color: var(--gold); }
.ledger { display: grid; }
.ledger__row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--line-soft);
}
.ledger__row:last-child { border-bottom: 0; }
.ledger__metric {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  min-width: 4.5ch;
}
.ledger__label { color: var(--muted); font-size: var(--fs-small); text-align: right; }

/* ---------- Generic card grids ------------------------------------------ */
.grid { display: grid; gap: var(--sp-5); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--paper);
  border: var(--border);
  border-radius: var(--radius);
  padding: var(--sp-6);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.card--tint { background: var(--paper-2); }
.card__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--navy-tint);
  color: var(--navy);
  margin-bottom: var(--sp-4);
  flex: none;
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 { font-size: var(--fs-h4); margin-bottom: var(--sp-3); }
.card p { color: var(--muted); font-size: var(--fs-small); margin-bottom: var(--sp-4); }
.card .link-arrow { margin-top: auto; }

/* Channel cards: numbered */
.channel-num {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-3);
}

/* ---------- Process steps (ledger-like numbered list) ------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); counter-reset: step; }
.step {
  border: var(--border);
  border-radius: var(--radius);
  background: var(--paper);
  padding: var(--sp-6) var(--sp-5);
  position: relative;
}
.step__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--sp-3);
}
.step__num::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  width: 28px; height: 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.step h3 { font-size: var(--fs-h4); margin-bottom: var(--sp-2); }
.step p { color: var(--muted); font-size: var(--fs-small); margin: 0; }

/* ---------- "Etik Hat Nedir" two-col --------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); align-items: start; }
.channel-list { display: grid; gap: var(--sp-3); margin-top: var(--sp-5); }
.channel-list li {
  display: flex; align-items: center; gap: 0.6rem;
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: var(--sp-3) var(--sp-4);
  background: var(--paper-2);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--navy-ink);
}
.channel-list svg { width: 1.05em; height: 1.05em; color: var(--gold); flex: none; }

/* Compact bordered feature rows for complementary services */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.svc {
  border: var(--border);
  border-left: 3px solid var(--navy);
  border-radius: var(--radius-sm);
  padding: var(--sp-4) var(--sp-5);
  background: var(--paper);
}
.svc h4 { font-size: var(--fs-body); margin-bottom: var(--sp-2); }
.svc p { color: var(--muted); font-size: var(--fs-small); margin: 0; }

/* ---------- Single solution card (highlighted) -------------------------- */
.solo-card {
  border: var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-md);
  padding: var(--sp-7);
  max-width: 760px;
  margin-inline: auto;
}
.solo-card .card__icon { background: var(--gold-tint); color: var(--gold); border-color: var(--gold-soft); }
.solo-card h3 { font-size: var(--fs-h3); }
.solo-card p { color: var(--ink-2); font-size: var(--fs-body); }

/* ---------- Feature grid (6 platform features) -------------------------- */
.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-4);
  border: var(--border);
  border-radius: var(--radius);
  background: var(--paper);
  padding: var(--sp-5);
}
.feature__icon {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--navy-tint);
  color: var(--navy);
}
.feature__icon svg { width: 20px; height: 20px; }
.feature h3 { font-size: var(--fs-body); margin-bottom: var(--sp-2); }
.feature p { color: var(--muted); font-size: var(--fs-small); margin: 0; }

/* ---------- CTA band ----------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(900px 380px at 85% 120%, rgba(176,138,62,.18), transparent 55%),
    var(--navy-ink);
  color: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--navy-dark);
  padding: var(--sp-8) var(--sp-7);
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--on-dark-mut); max-width: 56ch; margin-inline: auto; margin-bottom: var(--sp-6); }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; }

/* ---------- Page header (inner pages) ----------------------------------- */
.page-hero {
  background:
    radial-gradient(900px 360px at 15% -20%, rgba(43,63,134,.10), transparent 60%),
    var(--paper-2);
  border-bottom: var(--border);
  padding-block: var(--sp-8);
}
.page-hero h1 { font-size: clamp(1.9rem, 3.6vw, 2.5rem); max-width: 22ch; }
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero .lead { max-width: 60ch; }
.page-hero .hero-cta { margin-top: var(--sp-6); display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* ---------- About cards -------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.about-card {
  border: var(--border);
  border-radius: var(--radius);
  background: var(--paper);
  padding: var(--sp-6);
  box-shadow: var(--shadow);
}
.about-card .eyebrow { color: var(--gold); }
.about-card p { color: var(--ink-2); margin: 0; }

/* ---------- Accordion (SSS) --------------------------------------------- */
.accordion { border: var(--border); border-radius: var(--radius); overflow: hidden; background: var(--paper); }
.acc-item { border-bottom: 1px solid var(--line-soft); }
.acc-item:last-child { border-bottom: 0; }
.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: var(--sp-5);
  font-family: var(--font-head);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--navy-ink);
}
.acc-trigger:hover { background: var(--paper-2); }
.acc-icon {
  flex: none;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--navy);
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}
.acc-icon svg { width: 14px; height: 14px; }
.acc-trigger[aria-expanded="true"] .acc-icon { transform: rotate(45deg); background: var(--gold); color: #fff; border-color: var(--gold); }
.acc-panel {
  display: none;
  padding: 0 var(--sp-5) var(--sp-5);
}
.acc-panel.is-open { display: block; }
.acc-panel p { color: var(--muted); font-size: var(--fs-small); margin: 0; }

/* ---------- KVKK / detail sections -------------------------------------- */
.detail-list { display: grid; gap: var(--sp-5); }
.detail-item {
  border: var(--border);
  border-left: 3px solid var(--navy);
  border-radius: var(--radius-sm);
  background: var(--paper);
  padding: var(--sp-5) var(--sp-6);
}
.detail-item h3 { font-size: var(--fs-h4); margin-bottom: var(--sp-2); }
.detail-item p { color: var(--ink-2); font-size: var(--fs-small); margin: 0; }

.info-card {
  border: var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  background: var(--paper-2);
  padding: var(--sp-6);
}
.info-card .eyebrow { color: var(--gold); }
.info-card dl { margin: 0; display: grid; gap: var(--sp-2); }
.info-card dt { font-weight: 600; color: var(--navy-ink); font-family: var(--font-head); font-size: var(--fs-small); }
.info-card dd { margin: 0 0 var(--sp-3); color: var(--ink-2); font-size: var(--fs-small); }
.info-card dd:last-child { margin-bottom: 0; }

/* ---------- Forms -------------------------------------------------------- */
.form-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: var(--sp-7); align-items: start; }
.form-card {
  border: var(--border);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-md);
  padding: var(--sp-7);
}
.field { margin-bottom: var(--sp-5); }
.field:last-of-type { margin-bottom: var(--sp-6); }
.field label {
  display: block;
  font-family: var(--font-head);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--navy-ink);
  margin-bottom: var(--sp-2);
}
.field label .req { color: var(--gold); }
.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ink);
  background: var(--paper);
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.85rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--muted-2); }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--navy);
}
.field textarea { min-height: 140px; resize: vertical; }
.field .hint { display: block; margin-top: var(--sp-2); color: var(--muted); font-size: 0.8rem; }
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: #C0392B; }
.field .error-msg { display: none; color: #C0392B; font-size: 0.8rem; margin-top: var(--sp-2); }
.field .error-msg.is-shown { display: block; }

.form-success {
  display: none;
  border: 1px solid var(--gold-soft);
  border-left: 3px solid var(--gold);
  background: var(--gold-tint);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-5);
}
.form-success.is-shown { display: flex; gap: var(--sp-3); align-items: flex-start; }
.form-success svg { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 2px; }
.form-success h3 { margin-bottom: var(--sp-1); font-size: var(--fs-h4); }
.form-success p { margin: 0; color: var(--ink-2); font-size: var(--fs-small); }

/* Aside next to form */
.form-aside { display: grid; gap: var(--sp-5); }
.contact-list { display: grid; gap: var(--sp-4); }
.contact-list li { display: flex; gap: var(--sp-3); align-items: flex-start; font-size: var(--fs-small); }
.contact-list svg { width: 20px; height: 20px; color: var(--navy); flex: none; margin-top: 2px; }
.contact-list span { color: var(--muted); display: block; }
.contact-list a { color: var(--navy-ink); font-weight: 500; }

.notice {
  display: flex; gap: var(--sp-3); align-items: flex-start;
  border: var(--border);
  border-left: 3px solid var(--gold);
  background: var(--gold-tint);
  border-radius: var(--radius-sm);
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--fs-small);
  color: var(--ink-2);
}
.notice svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 2px; }

/* ---------- Info / linkbox (ihbar-bilgi) -------------------------------- */
.prose { max-width: 64ch; }
.prose p { color: var(--ink-2); font-size: var(--fs-lead); }
.link-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); }

/* ---------- Footer ------------------------------------------------------- */
.site-footer {
  background: var(--navy-ink);
  color: var(--on-dark-mut);
  border-top: 3px solid var(--gold);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: var(--sp-7);
  padding-block: var(--sp-8) var(--sp-7);
}
.footer-brand .brand-name { font-size: 1.15rem; }
.footer-brand p { color: var(--on-dark-mut); font-size: var(--fs-small); max-width: 38ch; margin-top: var(--sp-4); }
.footer-col h4 {
  color: #fff;
  font-size: var(--fs-small);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.footer-col ul { display: grid; gap: var(--sp-3); }
.footer-col a, .footer-col span { color: var(--on-dark-mut); font-size: var(--fs-small); }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 0.55rem; align-items: center; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold-soft); flex: none; }
.footer-bottom {
  border-top: 1px solid var(--navy-dark);
  padding-block: var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-5);
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: var(--sp-4); }
.footer-bottom a { color: var(--on-dark-mut); }
.footer-bottom a:hover { color: #fff; }
.colophon { color: var(--muted-2); font-size: 0.78rem; padding-bottom: var(--sp-5); }

/* ---------- Cookie banner ------------------------------------------------ */
.cookie-banner {
  position: fixed;
  left: var(--sp-4); right: var(--sp-4);
  bottom: var(--sp-4);
  z-index: 1100;
  background: var(--paper);
  border: var(--border);
  border-top: 3px solid var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--sp-5);
  display: none;
  gap: var(--sp-5);
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: var(--maxw);
  margin: 0 auto;
}
.cookie-banner.is-shown { display: flex; }
.cookie-banner p { margin: 0; font-size: var(--fs-small); color: var(--ink-2); max-width: 70ch; }
.cookie-banner strong { color: var(--navy-ink); }

/* ---------- Reveal-on-scroll (subtle, corporate) ------------------------ */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .link-arrow svg, .acc-icon { transition: none; }
}

/* ---------- Utilities ---------------------------------------------------- */
.stack-sm > * + * { margin-top: var(--sp-3); }
.mt-6 { margin-top: var(--sp-6); }
.text-center { text-align: center; }
.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;
}

/* ---------- Responsive --------------------------------------------------- */
@media (max-width: 1024px) {
  :root { --fs-h1: 2.25rem; --fs-h2: 1.7rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--sp-7); }
  .split { grid-template-columns: 1fr; gap: var(--sp-6); }
  .form-layout { grid-template-columns: 1fr; gap: var(--sp-6); }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  :root { --fs-h1: 1.9rem; --fs-h2: 1.5rem; --sp-8: 3rem; --sp-9: 3.5rem; }
  .container { padding-inline: var(--sp-4); }
  .grid--2, .grid--3, .steps, .feature-grid { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: 1fr; }
  .ledger__row { grid-template-columns: 1fr; gap: var(--sp-1); }
  .ledger__label { text-align: left; }
  .hero-cta .btn, .page-hero .hero-cta .btn { width: 100%; justify-content: center; }
  .cta-band { padding: var(--sp-7) var(--sp-5); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }
@media (max-width: 880px) { .feature-grid { grid-template-columns: 1fr; } }
