/* ================================================================
   RetroovanVictims.fi — Professional legal landing page
   ================================================================ */

:root {
  --navy:        #0b1e3d;
  --navy-mid:    #142952;
  --navy-light:  #1e3a6a;
  --gold:        #c9a84c;
  --gold-light:  #e0bf78;
  --gold-dim:    rgba(201,168,76,.15);
  --white:       #ffffff;
  --off-white:   #f4f6fa;
  --text:        #1a2a45;
  --text-soft:   #4a6080;
  --text-muted:  #7a90ac;
  --line:        #dce4ef;
  --wa:          #25d366;
  --wa-dark:     #1da851;
  --li:          #0077b5;
  --danger:      #d9534f;
  --ok:          #3a9e6a;

  --serif: 'Lora', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(11,30,61,.10);
  --shadow-lg: 0 12px 48px rgba(11,30,61,.16);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--white); color: var(--text);
  font-family: var(--sans); line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy-mid); }
ul { padding-left: 1.2rem; }
li { margin: .35rem 0; }

/* ── Language toggle ── */
[data-lang="en"] .tr-only { display: none !important; }
[data-lang="tr"] .en-only { display: none !important; }

/* ── Container ── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 1rem;
}
.logo {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 600;
  color: var(--white); text-decoration: none; white-space: nowrap;
}
.logo span { color: var(--gold); }
.header-nav { display: flex; align-items: center; gap: .75rem; }
.header-nav a {
  color: rgba(255,255,255,.75); text-decoration: none; font-size: .9rem;
  padding: .35rem .75rem; border-radius: 6px; transition: color .15s;
}
.header-nav a:hover { color: var(--white); }
.lang-toggle {
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.2);
  color: var(--white); font-family: var(--sans); font-size: .85rem;
  padding: .4rem .9rem; border-radius: 999px; cursor: pointer;
  transition: background .15s; white-space: nowrap;
}
.lang-toggle:hover { background: rgba(255,255,255,.18); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a70 100%);
  color: var(--white); padding: 6rem 1.5rem 5rem; position: relative; overflow: hidden;
  min-height: 88vh; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 500px at 70% 40%, rgba(201,168,76,.08), transparent 70%),
    radial-gradient(ellipse 600px 400px at 20% 80%, rgba(30,58,106,.6), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 720px; }
.eyebrow {
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 1.2rem;
}
.hero h1 {
  font-family: var(--serif); font-weight: 600; line-height: 1.15;
  font-size: clamp(2rem, 5vw, 3.4rem); margin: 0 0 1.4rem;
}
.hero-lead {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,.8);
  max-width: 60ch; margin: 0 0 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.5rem; }
.hero-note {
  font-size: .88rem; color: rgba(255,255,255,.55);
  border-left: 2px solid var(--gold); padding-left: .75rem; margin: 0;
}
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.3); font-size: 1.5rem;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── Buttons ── */
.btn { display: inline-block; text-decoration: none; border-radius: 8px; font-weight: 600; font-size: .95rem; padding: .7rem 1.4rem; transition: all .15s; cursor: pointer; border: none; font-family: var(--sans); }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,.1); color: var(--white); border: 1px solid rgba(255,255,255,.25); }
.btn-ghost:hover { background: rgba(255,255,255,.18); }

/* ================================================================
   SECTIONS
   ================================================================ */
.section { padding: 5rem 1.5rem; }
.section-alt { background: var(--off-white); }
.section-label {
  display: block; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .6rem; font-weight: 600;
}
.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-head h2 { font-family: var(--serif); font-size: clamp(1.6rem,3vw,2.3rem); margin: .3rem 0 .8rem; }
.section-head p { color: var(--text-soft); font-size: 1.05rem; max-width: 54ch; margin: 0 auto; }
h2 { font-family: var(--serif); font-size: clamp(1.6rem,3vw,2.3rem); margin: .3rem 0 .8rem; color: var(--navy); }

/* ── Two-col layout ── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.two-col-reverse { direction: rtl; }
.two-col-reverse > * { direction: ltr; }
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col-reverse { direction: ltr; }
}

/* ── Affected section stat cards ── */
.col-text p, .col-text ul { color: var(--text-soft); }
.col-text strong { color: var(--navy); }
.col-visual { display: flex; flex-direction: column; gap: 1rem; }
.stat-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem 1.5rem; box-shadow: var(--shadow);
  display: flex; align-items: flex-start; gap: 1rem;
}
.stat-icon { font-size: 1.8rem; line-height: 1; flex-shrink: 0; }
.stat-card p { margin: 0; font-size: .95rem; color: var(--text-soft); }

.highlight-box {
  background: var(--gold-dim); border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: .9rem 1.1rem; margin: 1.2rem 0 0; color: var(--navy) !important; font-weight: 500;
}

/* ── About / Photo ── */
.col-photo { display: flex; justify-content: center; }
.photo-frame {
  width: 280px; height: 340px; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 4px solid var(--white);
  outline: 2px solid var(--line); background: var(--off-white);
  position: relative;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  font-family: var(--serif); font-size: 3rem; color: var(--gold); font-weight: 600;
}
.about-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.badge {
  background: var(--off-white); border: 1px solid var(--line); color: var(--text-soft);
  font-size: .78rem; padding: .3rem .75rem; border-radius: 999px; font-weight: 500;
}

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 2rem; }
.step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow); position: relative;
}
.step-num {
  font-family: var(--serif); font-size: 2.8rem; font-weight: 600;
  color: var(--gold); opacity: .5; line-height: 1; margin-bottom: .8rem;
}
.step h3 { font-family: var(--serif); margin: 0 0 .7rem; font-size: 1.2rem; color: var(--navy); }
.step p, .step ul { color: var(--text-soft); font-size: .95rem; margin: 0; }
.step ul { margin-top: .5rem; }

/* ── Contact ── */
.contact-wrap { max-width: 700px; }
.contact-buttons {
  display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem;
}
.contact-btn {
  display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.5rem;
  border-radius: var(--radius); text-decoration: none; font-weight: 600;
  font-size: 1rem; transition: transform .15s, box-shadow .15s;
  box-shadow: var(--shadow);
}
.contact-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.contact-btn svg { width: 24px; height: 24px; flex-shrink: 0; }
.contact-btn-wa { background: var(--wa); color: var(--white); }
.contact-btn-wa:hover { background: var(--wa-dark); }
.contact-btn-mail { background: var(--navy); color: var(--white); }
.contact-btn-mail:hover { background: var(--navy-mid); }
.contact-btn-li { background: var(--li); color: var(--white); }
.contact-btn-li:hover { background: #005f92; }

/* ── Notice ── */
.section-notice { background: var(--navy); }
.notice-box {
  display: flex; gap: 1.5rem; align-items: flex-start;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 2rem;
}
.notice-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: .1rem; color: var(--gold); }
.notice-content h3 { font-family: var(--serif); color: var(--white); margin: 0 0 .8rem; font-size: 1.2rem; }
.notice-content ul { margin: 0; padding-left: 1.2rem; }
.notice-content li { color: rgba(255,255,255,.65); font-size: .95rem; margin: .5rem 0; }
@media (max-width: 600px) {
  .notice-box { flex-direction: column; gap: .75rem; }
}

/* ── Footer ── */
.site-footer { background: #070f1e; padding: 2.5rem 1.5rem; text-align: center; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.site-footer .logo { font-size: 1.05rem; }
.site-footer p { color: rgba(255,255,255,.4); font-size: .85rem; margin: 0; }
.footer-note { margin-top: .25rem !important; font-size: .78rem !important; color: rgba(255,255,255,.25) !important; }

/* ── 404 hata sayfası ── */
.centered { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; background: var(--navy); }
.card--message { max-width: 440px; text-align: center; background: var(--navy-mid); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 2.5rem; color: #e8ecf3; }
.card--message h1 { font-family: var(--serif); margin: 0 0 .75rem; }
.card--message p { color: rgba(255,255,255,.6); margin: 0 0 1.5rem; }
.card--message a { display: inline-block; background: var(--gold); color: var(--navy); font-weight: 600; padding: .65rem 1.4rem; border-radius: 8px; text-decoration: none; }
