/* =====================================================================
   Deltanet Bilişim Hizmetleri — e-ikamet-randevu.com
   Design system & styles
   ---------------------------------------------------------------------
   Palette : deep midnight navy + refined emerald accent on cool light-gray
   Type    : Plus Jakarta Sans (display) / Inter (body)
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --navy-900: #071A2F;
  --navy-800: #0A2540;
  --navy-700: #103558;
  --navy-600: #1B4B78;

  --emerald-700: #0B7C5C;
  --emerald-600: #0E9E77;
  --emerald-500: #12B886;
  --teal-400: #2DD4BF;

  /* Neutrals */
  --ink: #0E1B2A;
  --slate-700: #334155;
  --slate-500: #5A6B80;
  --slate-400: #8595A8;
  --line: #E4E9F0;
  --line-soft: #EEF2F7;
  --surface: #F5F8FC;
  --surface-2: #EDF3FA;
  --white: #FFFFFF;

  /* Brand utility */
  --whatsapp: #25D366;
  --whatsapp-dark: #1EB855;

  /* Gradients */
  --grad-navy: linear-gradient(155deg, #0A2540 0%, #103558 55%, #0B7C5C 160%);
  --grad-accent: linear-gradient(135deg, #12B886 0%, #0E9E77 100%);
  --grad-soft: linear-gradient(180deg, #FFFFFF 0%, #F5F8FC 100%);

  /* Elevation */
  --shadow-xs: 0 1px 2px rgba(10, 37, 64, .06);
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, .06);
  --shadow-md: 0 12px 30px -12px rgba(10, 37, 64, .18);
  --shadow-lg: 0 30px 60px -24px rgba(10, 37, 64, .30);
  --shadow-glow: 0 20px 50px -18px rgba(14, 158, 119, .45);

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 999px;

  /* Type */
  --font-display: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 40px);

  /* Motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 128px;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  font-weight: 700;
  overflow-wrap: break-word;
  word-break: break-word;
}

p { margin: 0 0 1rem; }

a { color: var(--emerald-700); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--emerald-600); }

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

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

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

:focus-visible {
  outline: 3px solid var(--emerald-500);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  background: var(--navy-800);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--r-sm);
  z-index: 200;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; color: #fff; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--surface { background: var(--surface); }
.section--navy { background: var(--grad-navy); color: #cfe0f0; }
.section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
}
.section--navy .eyebrow { color: var(--teal-400); }

.section-head { max-width: 680px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(30px, 4.4vw, 46px);
}
.section-head p {
  font-size: clamp(17px, 2vw, 19px);
  color: var(--slate-500);
  margin-bottom: 0;
}
.section--navy .section-head p { color: #a9c1d8; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 16px;
  line-height: 1;
  padding: 16px 26px;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover { color: #fff; box-shadow: 0 26px 60px -18px rgba(14,158,119,.6); }

.btn--whatsapp {
  background: var(--whatsapp);
  color: #06331a;
  box-shadow: 0 18px 40px -16px rgba(37,211,102,.6);
}
.btn--whatsapp:hover { background: var(--whatsapp-dark); color: #fff; }

.btn--ghost {
  background: rgba(255,255,255,.06);
  color: #fff;
  border-color: rgba(255,255,255,.22);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

.btn--outline {
  background: #fff;
  color: var(--navy-800);
  border-color: var(--line);
  box-shadow: var(--shadow-xs);
}
.btn--outline:hover { border-color: var(--emerald-500); color: var(--emerald-700); }

.btn--lg { padding: 18px 32px; font-size: 17px; }
.btn--block { width: 100%; }

/* ---------- Top area (announcement bar + header, tek sabit blok) ---------- */
.site-top {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
}

/* Her sayfada, her kaydırmada görünen üst duyuru şeridi */
.topbar { background: var(--grad-navy); color: #d3e4f4; }
.topbar__inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 4px 16px;
  min-height: 34px;
  padding: 5px 0;
  text-align: center;
}
.topbar__item {
  display: inline-flex; align-items: center; gap: 7px;
  min-width: 0;
  font-family: var(--font-display);
  font-size: 12.5px; font-weight: 600; letter-spacing: .01em;
  line-height: 1.3;
}
.topbar__item svg { width: 14px; height: 14px; flex: none; color: var(--teal-400); }
.topbar__item > span { min-width: 0; }
.topbar__item strong { color: #fff; font-weight: 700; }
.topbar__dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.35); }
@media (max-width: 640px) {
  .topbar__dot { display: none; }
  .topbar__item { font-size: 11px; gap: 6px; flex-basis: 100%; justify-content: center; }
  .topbar__item svg { width: 13px; height: 13px; }
  .topbar__inner { gap: 2px; }
}

/* ---------- Header ---------- */
.site-header {
  position: relative;
  padding: 14px 0;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease),
              padding .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line-soft);
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--grad-navy);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  flex: none;
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -.01em;
}
.brand__tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-400);
  letter-spacing: .04em;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--slate-700);
  padding: 10px 14px;
  border-radius: var(--r-full);
  transition: color .2s, background-color .2s;
}
.nav a:hover { color: var(--navy-800); background: var(--surface-2); }

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

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(156px, 19vw, 210px) 0 clamp(70px, 9vw, 110px);
  background:
    radial-gradient(1100px 600px at 82% -8%, rgba(18,184,134,.10), transparent 60%),
    radial-gradient(900px 520px at 8% 6%, rgba(27,75,120,.10), transparent 55%),
    var(--grad-soft);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
/* Classic grid/flex overflow guard: children must be allowed to shrink */
.hero__grid > *, .split > *, .contact-grid > *, .footer-grid > *,
.header-inner > *, .grid > *, .steps > * { min-width: 0; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-700);
  box-shadow: var(--shadow-xs);
}
.hero__badge--accent {
  padding-left: 13px;
  background: rgba(18, 184, 134, .10);
  border-color: rgba(18, 184, 134, .28);
  color: var(--emerald-700);
  box-shadow: none;
}
.hero__badge--accent svg { width: 16px; height: 16px; color: var(--emerald-600); flex: none; }
.hero__badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--emerald-500);
  box-shadow: 0 0 0 4px rgba(18,184,134,.16);
}
.hero h1 {
  font-size: clamp(36px, 6vw, 62px);
  font-weight: 800;
  letter-spacing: -.03em;
}
.hero h1 .accent {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: clamp(17px, 2.1vw, 20px);
  color: var(--slate-500);
  max-width: 34ch;
  margin: 22px 0 34px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero__trust-item { display: flex; flex-direction: column; }
.hero__trust-item b {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy-800);
}
.hero__trust-item span { font-size: 13.5px; color: var(--slate-400); font-weight: 500; }

/* Hero yasal uyarı notu: resmi kurum olmadığımızı net biçimde belirtir */
.hero__note {
  display: flex; align-items: flex-start; gap: 11px;
  margin: 24px 0 0;
  padding: 13px 16px;
  max-width: 52ch;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  font-size: 13px; line-height: 1.55; color: var(--slate-500);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero__note svg { width: 18px; height: 18px; color: var(--emerald-600); flex: none; margin-top: 1px; }
.hero__note strong { color: var(--ink); font-weight: 650; }

/* Hero signature: application-status card */
.status-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 26px;
  max-width: 440px;
  margin-inline: auto;
}
.status-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line-soft);
}
.status-card__title { display: flex; align-items: center; gap: 12px; }
.status-card__title .ic {
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--surface-2);
  display: grid; place-items: center; flex: none;
}
.status-card__title .ic svg { width: 22px; height: 22px; color: var(--navy-700); }
.status-card__title b { font-family: var(--font-display); font-size: 15px; color: var(--ink); display: block; }
.status-card__title span { font-size: 12.5px; color: var(--slate-400); }
.pill {
  font-size: 12px; font-weight: 700;
  padding: 6px 12px; border-radius: var(--r-full);
  background: rgba(18,184,134,.12); color: var(--emerald-700);
  font-family: var(--font-display);
}

.track { display: grid; gap: 4px; }
.track__step { display: grid; grid-template-columns: 30px 1fr; gap: 14px; }
.track__rail { display: flex; flex-direction: column; align-items: center; }
.track__node {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface-2); color: var(--slate-400);
  font-size: 13px; font-weight: 700; flex: none;
  border: 2px solid transparent;
}
.track__line { width: 2px; flex: 1; background: var(--line); min-height: 20px; }
.track__step:last-child .track__line { display: none; }
.track__body { padding-bottom: 18px; }
.track__body b { font-family: var(--font-display); font-size: 14.5px; color: var(--ink); }
.track__body p { font-size: 13px; color: var(--slate-400); margin: 2px 0 0; }

.track__step.is-done .track__node {
  background: var(--grad-accent); color: #fff;
}
.track__step.is-done .track__line { background: var(--emerald-500); }
.track__step.is-active .track__node {
  background: #fff; color: var(--emerald-700);
  border-color: var(--emerald-500);
  box-shadow: 0 0 0 5px rgba(18,184,134,.14);
}
.track__step.is-active .track__body b { color: var(--emerald-700); }

.status-card__float {
  position: absolute;
  bottom: -22px; right: -18px;
  background: var(--navy-800);
  color: #fff;
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.status-card__float .ic {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(37,211,102,.2); color: var(--whatsapp);
  display: grid; place-items: center; flex: none;
}
.status-card__float b { font-family: var(--font-display); font-size: 14px; display: block; }
.status-card__float span { font-size: 12px; color: #9fb6cc; }

/* ---------- Logos / trust strip ---------- */
.trust-strip { padding: 34px 0; border-bottom: 1px solid var(--line-soft); background: #fff; }
.trust-strip__inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 18px 40px;
}
.trust-strip__label { font-size: 13px; color: var(--slate-400); font-weight: 600; letter-spacing: .04em; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: var(--slate-700);
}
.trust-chip svg { width: 20px; height: 20px; color: var(--emerald-600); }

/* ---------- Cards grid (Why / Services) ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--shadow-xs);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #dbe6f1;
}
.card__icon {
  width: 54px; height: 54px;
  border-radius: 15px;
  display: grid; place-items: center;
  background: var(--surface-2);
  margin-bottom: 20px;
}
.card__icon svg { width: 26px; height: 26px; color: var(--navy-700); }
.card:hover .card__icon { background: var(--grad-accent); }
.card:hover .card__icon svg { color: #fff; }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { font-size: 15.5px; color: var(--slate-500); margin: 0; }

/* Service card variant */
.card--service { display: flex; flex-direction: column; }
.card--service .card__meta {
  margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line-soft);
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 650; font-size: 14px; color: var(--emerald-700);
}
.card--service .card__meta svg { width: 17px; height: 17px; }

/* ---------- Process (How it works) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.step:hover { transform: translateY(-4px); background: rgba(255,255,255,.07); }
.step__num {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 800;
  color: var(--navy-900);
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad-accent);
  display: grid; place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px -10px rgba(18,184,134,.7);
}
.step h3 { color: #fff; font-size: 19px; margin-bottom: 8px; }
.step p { color: #a9c1d8; font-size: 15px; margin: 0; }

/* ---------- Feature split (assurance) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.checklist { display: grid; gap: 16px; margin-top: 26px; }
.checklist li { display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start; }
.checklist .tick {
  width: 28px; height: 28px; border-radius: 9px; flex: none;
  background: rgba(18,184,134,.14); color: var(--emerald-700);
  display: grid; place-items: center;
}
.checklist .tick svg { width: 16px; height: 16px; }
.checklist b { font-family: var(--font-display); color: var(--ink); font-size: 16px; display: block; }
.checklist span { font-size: 14.5px; color: var(--slate-500); }

.panel {
  background: var(--grad-navy);
  border-radius: var(--r-xl);
  padding: 40px;
  color: #cfe0f0;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.panel::after {
  content: "";
  position: absolute; inset: auto -40px -60px auto;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(18,184,134,.35), transparent 70%);
}
.panel h3 { color: #fff; font-size: 24px; }
.panel .quote { font-size: 18px; line-height: 1.6; color: #dbe8f4; }
.panel__meta { margin-top: 24px; display: flex; align-items: center; gap: 14px; }
.panel__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--grad-accent); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; color: #fff; flex: none;
}
.panel__meta b { color: #fff; font-family: var(--font-display); display: block; font-size: 15px; }
.panel__meta span { color: #9fb6cc; font-size: 13px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item.is-open { border-color: #cfe0d8; box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 650; font-size: 17px;
  color: var(--ink); text-align: left;
}
.faq-q:hover { color: var(--emerald-700); }
.faq-q .chev {
  width: 30px; height: 30px; border-radius: 8px; flex: none;
  background: var(--surface-2); color: var(--navy-700);
  display: grid; place-items: center;
  transition: transform .3s var(--ease), background-color .25s, color .25s;
}
.faq-q .chev svg { width: 18px; height: 18px; }
.faq-item.is-open .chev { transform: rotate(180deg); background: var(--grad-accent); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-a__inner { padding: 0 24px 24px; color: var(--slate-500); font-size: 15.5px; }
.faq-a__inner p { margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; }
.cta-box {
  background: var(--grad-navy);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 68px);
  text-align: center;
  color: #cfe0f0;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ""; position: absolute; inset: -40% 60% auto -10%;
  height: 320px; background: radial-gradient(circle at 30% 30%, rgba(18,184,134,.28), transparent 60%);
}
.cta-box > * { position: relative; }
.cta-box h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); }
.cta-box p { color: #b9cde0; max-width: 560px; margin: 12px auto 30px; font-size: 18px; }
.cta-box .hero__cta { justify-content: center; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
.info-list { display: grid; gap: 8px; }
.info-item {
  display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: center;
  padding: 18px; border: 1px solid var(--line-soft); border-radius: var(--r-md); background: #fff;
  transition: border-color .25s, transform .25s;
}
.info-item:hover { border-color: #d7e3ef; transform: translateY(-2px); }
.info-item .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--surface-2); display: grid; place-items: center; }
.info-item .ic svg { width: 22px; height: 22px; color: var(--navy-700); }
.info-item .lbl { display: block; font-size: 13px; color: var(--slate-400); font-weight: 600; margin-bottom: 2px; }
.info-item .val { display: block; font-family: var(--font-display); font-weight: 650; color: var(--ink); font-size: 15.5px; }
.info-item a.val:hover { color: var(--emerald-700); }

.form-card {
  background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--r-xl); padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--ink); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15.5px; color: var(--ink);
  padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--surface); transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--emerald-500); background: #fff;
  box-shadow: 0 0 0 4px rgba(18,184,134,.14);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--slate-400); margin: 4px 0 20px; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--slate-500); margin-bottom: 20px; }
.form-consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--emerald-600); flex: none; }

.map-embed {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); margin-top: 22px; line-height: 0;
}
.map-embed iframe { width: 100%; height: 320px; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #9fb6cc; padding: clamp(56px, 7vw, 84px) 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-footer strong { color: #dbe8f4; font-weight: 650; }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__tag { color: #7f97b0; }
.footer-brand p { margin-top: 18px; font-size: 14.5px; color: #93abc4; max-width: 34ch; }
.footer-col h4 { color: #fff; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: #9fb6cc; font-size: 14.5px; }
.footer-col a:hover { color: var(--teal-400); }
.footer-address { font-style: normal; font-size: 14.5px; color: #9fb6cc; line-height: 1.8; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding-top: 26px; font-size: 13.5px; color: #7f97b0;
}
.footer-bottom .disclaimer { max-width: 640px; line-height: 1.6; }
.footer-legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal-links a { color: #9fb6cc; }

/* ---------- Floating WhatsApp + back-to-top ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--whatsapp); color: #fff;
  padding: 14px 20px 14px 16px; border-radius: var(--r-full);
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  box-shadow: 0 18px 40px -12px rgba(37,211,102,.65);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); color: #fff; box-shadow: 0 24px 50px -12px rgba(37,211,102,.8); }
.wa-float svg { width: 26px; height: 26px; flex: none; }
.wa-float__pulse { position: relative; display: grid; place-items: center; }
.wa-float__pulse::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  animation: wa-pulse 2.4s var(--ease) infinite;
}
@keyframes wa-pulse { 0% { transform: scale(.8); opacity: .8; } 100% { transform: scale(1.5); opacity: 0; } }

.to-top {
  position: fixed; right: 26px; bottom: 92px; z-index: 89;
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  color: var(--navy-800); cursor: pointer;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { color: var(--emerald-700); border-color: var(--emerald-500); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Legal / subpage hero ---------- */
.page-hero {
  padding: clamp(150px, 17vw, 195px) 0 clamp(40px, 6vw, 70px);
  background:
    radial-gradient(800px 400px at 85% 0%, rgba(18,184,134,.08), transparent 60%),
    var(--grad-soft);
  border-bottom: 1px solid var(--line-soft);
}
.breadcrumbs { display: flex; gap: 8px; align-items: center; font-size: 13.5px; color: var(--slate-400); margin-bottom: 18px; }
.breadcrumbs a { color: var(--slate-500); font-weight: 500; }
.breadcrumbs a:hover { color: var(--emerald-700); }
.page-hero h1 { font-size: clamp(30px, 5vw, 48px); }
.page-hero p { color: var(--slate-500); font-size: 18px; max-width: 60ch; margin-top: 12px; }

.legal-body { max-width: 820px; margin-inline: auto; }
.legal-body h2 { font-size: 24px; margin-top: 44px; padding-top: 8px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 18px; margin-top: 28px; color: var(--navy-800); }
.legal-body p, .legal-body li { color: var(--slate-700); font-size: 16px; }
.legal-body ul { list-style: none; display: grid; gap: 10px; margin: 14px 0 20px; }
.legal-body ul li { position: relative; padding-left: 26px; }
.legal-body ul li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px; border-radius: 2px; background: var(--grad-accent);
}
.legal-body ol { padding-left: 22px; display: grid; gap: 10px; margin: 14px 0 20px; }
.legal-body ol li { padding-left: 6px; }
.legal-callout {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-left: 4px solid var(--emerald-500);
  border-radius: var(--r-md); padding: 20px 24px; margin: 24px 0;
}
.legal-callout p:last-child { margin-bottom: 0; }
.legal-meta { font-size: 14px; color: var(--slate-400); margin-bottom: 30px; }
.legal-toc {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: 22px 26px; margin-bottom: 36px;
}
.legal-toc b { font-family: var(--font-display); color: var(--ink); display: block; margin-bottom: 12px; font-size: 15px; }
.legal-toc ol { padding-left: 20px; display: grid; gap: 8px; }
.legal-toc a { font-size: 15px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

/* İlk ekran (hero) içeriği JS gözlemcisini beklemeden, ilk boyamada belirsin:
   scroll-reveal yerine doğrudan CSS load animasyonu kullan. */
.hero .reveal { opacity: 1; transform: none; animation: heroReveal .7s var(--ease) both; }
.hero .reveal[data-delay="1"] { animation-delay: .08s; }
.hero .reveal[data-delay="2"] { animation-delay: .16s; }
.hero .reveal[data-delay="3"] { animation-delay: .24s; }
.hero .reveal[data-delay="4"] { animation-delay: .32s; }
@keyframes heroReveal { from { opacity: 0; transform: translateY(24px); } }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; margin-bottom: 8px; }
  .status-card { max-width: 420px; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  body { font-size: 16px; }
  .grid--3, .grid--2, .steps { grid-template-columns: 1fr; }

  /* Trust strip stacks cleanly instead of overflowing */
  .trust-strip__inner { gap: 14px 22px; }
  .trust-strip__label { flex-basis: 100%; text-align: center; }

  .nav-toggle { display: grid; }
  .header-actions .btn:not(.nav-toggle) { display: none; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 84vw);
    flex-direction: column; align-items: stretch; gap: 6px;
    background: #fff; padding: 128px 24px 32px;
    box-shadow: -20px 0 60px -20px rgba(10,37,64,.3);
    transform: translateX(100%); transition: transform .35s var(--ease);
    z-index: 95;
  }
  body.nav-open .nav { transform: translateX(0); }
  .nav a { font-size: 17px; padding: 14px 16px; }
  .nav .btn { margin-top: 12px; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(7,26,47,.4);
    opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; z-index: 94;
  }
  body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }

  .wa-float span { display: none; }
  .wa-float { padding: 16px; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(30px, 8.5vw, 44px); }
  .hero__lead { max-width: none; }
  .hero__cta .btn { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Keep the status card + its floating badge fully inside the viewport */
  .status-card { padding: 20px; }
  .status-card__float { right: 6px; bottom: -16px; padding: 11px 14px; gap: 10px; }
  .status-card__float .ic { width: 30px; height: 30px; }
  .status-card__float b { font-size: 13px; }
  .status-card__float span { font-size: 11px; }
  .hero__trust { gap: 18px; }
  .hero__trust-item b { font-size: 22px; }
}

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