/* HemşireM — ortak stil. Tüm sayfalar bunu kullanır.
   Palet uygulamayla aynı: teal #118AB2 + altın #D4A017.
   Açık/koyu tema işletim sistemi tercihine göre. */

:root {
  --teal: #118ab2;
  --teal-d: #0b5d7a;
  --teal-l: #e8f4f9;
  --gold: #d4a017;
  --ink: #12212b;
  --muted: #5b6b78;
  --bg: #ffffff;
  --surface: #f6f9fb;
  --line: #e3eaef;
  --shadow: 0 1px 2px rgba(18, 33, 43, .04), 0 8px 24px rgba(18, 33, 43, .06);
  --shadow-lg: 0 2px 4px rgba(18, 33, 43, .05), 0 20px 48px rgba(18, 33, 43, .12);
  --r: 14px;
  --maxw: 1080px;
  --readw: 720px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --teal: #37a9d0;
    --teal-d: #7fcbe6;
    --teal-l: #102c39;
    --gold: #e3b53c;
    --ink: #e7eef3;
    --muted: #9bacb9;
    --bg: #0e1a22;
    --surface: #142530;
    --line: #213745;
    --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 8px 24px rgba(0, 0, 0, .35);
    --shadow-lg: 0 2px 4px rgba(0, 0, 0, .35), 0 20px 48px rgba(0, 0, 0, .5);
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* height:auto şart — img'lerde width/height özniteliği var, onsuz görsel dikey gerilir */
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.read { max-width: var(--readw); }

/* ---------- üst bar ---------- */
.top {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.top .wrap { display: flex; align-items: center; gap: 14px; height: 62px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-weight: 700; }
.brand img { width: 32px; height: 32px; border-radius: 9px; }
.brand span { font-size: 16px; letter-spacing: -.01em; }
.top nav { margin-left: auto; display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.top nav a {
  font-size: 14px; color: var(--muted); text-decoration: none;
  padding: 7px 11px; border-radius: 8px; white-space: nowrap;
}
.top nav a:hover { color: var(--ink); background: var(--surface); }
.top nav a.cta {
  background: var(--teal); color: #fff; font-weight: 600;
}
.top nav a.cta:hover { background: var(--teal-d); color: #fff; }
.top nav a.on { color: var(--ink); font-weight: 600; }

/* ---------- kahraman ---------- */
.hero { padding: 60px 0 20px; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600; color: var(--teal);
  background: var(--teal-l); padding: 5px 12px; border-radius: 100px; margin-bottom: 18px;
}
h1.big {
  font-size: clamp(30px, 5vw, 46px); line-height: 1.12; letter-spacing: -.025em;
  margin: 0 0 16px; font-weight: 800;
}
h1.big em { font-style: normal; color: var(--teal); }
.lead { font-size: 17.5px; color: var(--muted); margin: 0 0 26px; max-width: 46ch; }

.btns { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 20px; border-radius: 11px; text-decoration: none;
  font-weight: 600; font-size: 15px; border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-p { background: var(--teal); color: #fff; box-shadow: var(--shadow); }
.btn-p:hover { background: var(--teal-d); }
.btn-s { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn-s:hover { border-color: var(--teal); }
.btn svg { width: 18px; height: 18px; flex: none; }

.note { font-size: 13.5px; color: var(--muted); margin-top: 16px; }

/* ---------- telefon çerçevesi ---------- */
.phone {
  position: relative; width: 280px; margin: 0 auto;
  border-radius: 38px; padding: 10px;
  background: linear-gradient(160deg, #2a3742, #11181d);
  box-shadow: var(--shadow-lg);
}
.phone img { border-radius: 29px; }
.phone::after {
  content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 82px; height: 20px; background: #11181d; border-radius: 100px;
}
.phone-row { display: flex; gap: 20px; }
.phone-sm { width: 210px; }
.phone-sm::after { width: 62px; height: 15px; top: 17px; }

/* ---------- bölümler ---------- */
section { padding: 66px 0; }
section.alt { background: var(--surface); border-block: 1px solid var(--line); }
.sec-head { max-width: 620px; margin: 0 auto 42px; text-align: center; }
.sec-head h2 { font-size: clamp(24px, 3.4vw, 32px); letter-spacing: -.02em; margin: 0 0 12px; font-weight: 750; }
.sec-head p { color: var(--muted); margin: 0; font-size: 16.5px; }

.grid { display: grid; gap: 20px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r);
  padding: 24px; box-shadow: var(--shadow);
}
section.alt .card { background: var(--bg); }
.card h3 { margin: 0 0 8px; font-size: 17px; letter-spacing: -.01em; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.ico {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: var(--teal-l); color: var(--teal); margin-bottom: 14px;
}
.ico svg { width: 21px; height: 21px; }

/* iki taraf kartı */
.side { padding: 28px; border-radius: 18px; border: 1px solid var(--line); background: var(--bg); box-shadow: var(--shadow); }
.side.free { border-color: color-mix(in srgb, var(--teal) 35%, var(--line)); }
.tag {
  display: inline-block; font-size: 12.5px; font-weight: 700; padding: 4px 10px;
  border-radius: 100px; margin-bottom: 14px;
}
.tag.f { background: var(--teal-l); color: var(--teal); }
.tag.p { background: color-mix(in srgb, var(--gold) 18%, transparent); color: var(--gold); }
.side h3 { margin: 0 0 6px; font-size: 20px; letter-spacing: -.015em; }
.side .price { font-size: 14px; color: var(--muted); margin: 0 0 18px; }
.list { list-style: none; padding: 0; margin: 0; }
.list li { position: relative; padding-left: 26px; margin: 9px 0; font-size: 15px; }
.list li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 15px; height: 9px;
  border-left: 2px solid var(--teal); border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}

/* adımlar */
.steps { counter-reset: s; display: grid; gap: 18px; grid-template-columns: repeat(4, 1fr); }
.step { position: relative; padding-top: 46px; }
.step::before {
  counter-increment: s; content: counter(s);
  position: absolute; top: 0; left: 0; width: 34px; height: 34px;
  display: grid; place-items: center; border-radius: 10px;
  background: var(--teal); color: #fff; font-weight: 700; font-size: 15px;
}
.step h3 { margin: 0 0 6px; font-size: 16.5px; }
.step p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* galeri */
.shots { display: flex; gap: 22px; overflow-x: auto; padding: 6px 22px 22px; scroll-snap-type: x mandatory; }
.shots > figure { flex: none; margin: 0; scroll-snap-align: center; text-align: center; }
.shots figcaption { margin-top: 12px; font-size: 14px; color: var(--muted); }

/* SSS */
details {
  border: 1px solid var(--line); border-radius: 12px; background: var(--bg);
  padding: 16px 20px; margin-bottom: 12px;
}
details[open] { border-color: color-mix(in srgb, var(--teal) 30%, var(--line)); }
summary { cursor: pointer; font-weight: 600; font-size: 16px; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: inline-end; color: var(--teal); font-weight: 400; font-size: 22px; line-height: 1; }
details[open] summary::after { content: "−"; }
details p { color: var(--muted); margin: 12px 0 0; font-size: 15px; }

/* kapanış çağrısı */
.cta-box {
  text-align: center; padding: 52px 28px; border-radius: 22px;
  background: linear-gradient(150deg, var(--teal), var(--teal-d)); color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-box h2 { margin: 0 0 10px; font-size: clamp(22px, 3.2vw, 30px); letter-spacing: -.02em; }
.cta-box p { margin: 0 0 24px; opacity: .92; font-size: 16.5px; }
.cta-box .btns { justify-content: center; }
.cta-box .btn-p { background: #fff; color: var(--teal-d); }
.cta-box .btn-p:hover { background: #f2fafd; }
.cta-box .btn-s { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .3); }

/* alt bilgi */
footer { border-top: 1px solid var(--line); padding: 40px 0; color: var(--muted); font-size: 14px; }
footer .cols { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--teal); }
footer .lgroup { display: flex; flex-direction: column; gap: 7px; }
footer h4 { margin: 0 0 4px; font-size: 13px; color: var(--ink); text-transform: uppercase; letter-spacing: .06em; }
.legalbar { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 13px; }

/* ---------- belge alt gezinme çubuğu ---------- */
.subnav { background: var(--surface); border-bottom: 1px solid var(--line); }
.subnav .wrap { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; padding-block: 9px; }
.subnav a {
  font-size: 13.5px; color: var(--muted); text-decoration: none;
  padding: 6px 11px; border-radius: 7px; white-space: nowrap;
}
.subnav a:hover { color: var(--ink); background: var(--bg); }
.subnav a.on { color: var(--teal); background: var(--bg); font-weight: 650; box-shadow: var(--shadow); }
.subnav .lang { margin-left: auto; font-weight: 600; }

/* ---------- yasal belge sayfaları ---------- */
.doc { padding: 44px 0 72px; }
.doc .wrap { max-width: var(--readw); }
.doc h1 { font-size: clamp(25px, 4vw, 33px); letter-spacing: -.02em; margin: 0 0 6px; }
.doc .stamp { color: var(--muted); font-size: 14px; margin: 0 0 32px; }
.doc h2 { font-size: 20px; margin: 40px 0 12px; letter-spacing: -.015em; scroll-margin-top: 80px; }
.doc h3 { font-size: 16.5px; margin: 26px 0 10px; }
.doc p, .doc li { font-size: 15.5px; }
.doc ul, .doc ol { padding-left: 22px; }
.doc blockquote {
  margin: 18px 0; padding: 14px 18px; border-left: 3px solid var(--gold);
  background: color-mix(in srgb, var(--gold) 9%, transparent);
  border-radius: 0 10px 10px 0; font-size: 14.5px;
}
.doc blockquote p { margin: 0; font-size: 14.5px; }
hr.sec { border: 0; border-top: 1px solid var(--line); margin: 34px 0; }

.tbl-wrap { overflow-x: auto; margin: 20px 0; border: 1px solid var(--line); border-radius: 12px; }
table { border-collapse: collapse; width: 100%; font-size: 14.5px; min-width: 540px; }
th, td { padding: 12px 14px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
th { background: var(--surface); font-weight: 700; }
tbody tr:last-child td { border-bottom: 0; }

/* ---------- duyarlı ---------- */
@media (max-width: 900px) {
  .hero { padding: 40px 0 10px; }
  /* mobilde önce başlık okunsun, telefon altta kalsın */
  .hero .wrap { grid-template-columns: 1fr; gap: 30px; }
  .g3, .g2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  section { padding: 52px 0; }
  .phone { width: 240px; }
}

@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .top .wrap { height: auto; padding-block: 10px; flex-wrap: wrap; }
  .top nav { width: 100%; margin-left: 0; }
  .btn { flex: 1 1 auto; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
