/* =========================================================
   İsteğe Bağlı Kürtaj – Landing Page
   Renk paleti: istanbulcerrahi.com üzerinden çıkarıldı
   ========================================================= */

:root {
  /* Marka renkleri (referans siteden) */
  --navy: #1c2f59;        /* ana lacivert (hero kartı, başlıklar) */
  --navy-900: #14234a;    /* koyu lacivert */
  --navy-700: #2a4380;    /* açık lacivert (hover) */
  --cyan: #28bbc5;        /* turkuaz vurgu (butonlar, ikonlar) */
  --cyan-600: #1fa6b0;    /* turkuaz hover */
  --cyan-100: #e6f7f8;    /* turkuaz açık zemin */
  --wa: #25d366;          /* WhatsApp yeşili */
  --wa-600: #1ebe5a;

  /* Nötrler (referans siteden) */
  --text: #333333;
  --text-2: #344053;
  --muted: #4f4f4f;
  --muted-2: #6b7280;
  --bg: #f9f9f9;
  --white: #ffffff;
  --border: #d0d5dd;
  --footer: #1e1e1e;
  --danger: #d9364c;

  /* Ölçüler */
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(28, 47, 89, 0.08);
  --shadow-lg: 0 24px 60px rgba(28, 47, 89, 0.16);
  --container: 100%;
  --page-pad: 24px;
  --header-h: 76px;
  --mobile-bar-h: 60px;
  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::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;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.2; color: var(--navy); font-weight: 700; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
button { font: inherit; cursor: pointer; }
input, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; }

main, .site-footer { width: 100%; max-width: none; }
.container { width: 100%; max-width: none; margin: 0 auto; padding: 0 var(--page-pad); }
.container--narrow { max-width: 860px; }

.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 999;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { left: 8px; }

/* ---------- Tipografi ---------- */
h1 { font-size: clamp(2rem, 4.2vw, 3.25rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; }
.hl { color: var(--cyan); }
.kicker {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 12px;
}
.kicker--light { color: var(--cyan); }
.section__head { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section__head p { color: var(--muted); margin-top: 16px; }
.section__head--light h2 { color: #fff; }
.section__head--light p { color: rgba(255, 255, 255, 0.78); }
.section__cta { text-align: center; margin-top: 40px; }

/* ---------- Butonlar ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: var(--radius-sm); border: 2px solid transparent;
  font-weight: 600; font-size: 0.95rem; line-height: 1.2; white-space: nowrap;
  transition: transform 0.15s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: 10px 18px; font-size: 0.875rem; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--cyan); color: #fff; box-shadow: 0 8px 20px rgba(40, 187, 197, 0.3); }
.btn--primary:hover { background: var(--cyan-600); }
.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3); }
.btn--wa:hover { background: var(--wa-600); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--cyan-100); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn[disabled] { opacity: 0.7; pointer-events: none; }
.btn__spinner {
  display: none; width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4); border-top-color: #fff;
  animation: spin 0.8s linear infinite;
}
.btn.is-loading .btn__label { opacity: 0; }
.btn.is-loading .btn__spinner { display: block; position: absolute; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(28, 47, 89, 0.08); border-color: #eef0f3; }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: var(--header-h); }
.brand { flex: 0 1 auto; min-width: 0; }
.brand img { height: 48px; width: auto; max-width: 148px; object-fit: contain; }
.header__actions { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.header__phone { display: none; align-items: center; gap: 8px; font-weight: 600; color: var(--navy); }
.header__phone svg { color: var(--cyan); }
.header__cta { display: none; }

.nav-toggle {
  width: 44px; height: 44px; padding: 0; border: 0; border-radius: 12px;
  background: var(--bg); color: var(--navy); cursor: pointer;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; border-radius: 2px; background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.site-header.is-nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.is-nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.is-nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 101;
  display: flex; flex-direction: column; gap: 4px;
  padding: 8px var(--page-pad) 20px;
  background: #fff; border-bottom: 1px solid #eef0f3;
  box-shadow: 0 16px 32px rgba(28, 47, 89, 0.12);
  transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.site-header.is-nav-open .nav {
  opacity: 1; visibility: visible; pointer-events: auto; transform: none;
}
.nav > a {
  font-size: 1rem; font-weight: 600; color: var(--navy);
  padding: 12px 4px; border-bottom: 1px solid #f1f3f6;
}
.nav > a:last-of-type { border-bottom: 0; }
.nav__mobile-actions {
  display: flex; flex-direction: column; gap: 10px; margin-top: 12px;
}
.nav__phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--navy); padding: 8px 4px;
}
.nav__phone svg { color: var(--cyan); }
body.nav-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 0;
  width: 100%;
}
.hero .container { padding: 0; max-width: none; }
.hero__card {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr; gap: 32px;
  width: 100%;
  padding: 40px var(--page-pad) 56px;
  border-radius: 0;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-900) 100%);
  color: #fff;
}
.hero__card::before, .hero__card::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.hero__card::before { width: 420px; height: 420px; right: -160px; top: -200px; background: radial-gradient(circle, rgba(40, 187, 197, 0.35), transparent 70%); }
.hero__card::after { width: 360px; height: 360px; left: -140px; bottom: -200px; background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%); }
.hero__content, .hero__form { position: relative; z-index: 1; }
.hero__content h1 { color: #fff; margin-bottom: 18px; }
.hero__lead { color: rgba(255, 255, 255, 0.85); font-size: 1.02rem; margin-bottom: 22px; }
.hero__points { display: grid; gap: 10px; margin-bottom: 26px; }
.hero__points li { display: flex; align-items: center; gap: 12px; font-weight: 500; font-size: 0.95rem; }
.check {
  flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%;
  background: var(--cyan); position: relative;
}
.check::after {
  content: ""; position: absolute; left: 8px; top: 4px; width: 6px; height: 11px;
  border: solid #fff; border-width: 0 2.5px 2.5px 0; transform: rotate(45deg);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__privacy { margin-top: 18px; font-size: 0.8rem; color: rgba(255, 255, 255, 0.6); }

/* ---------- Form kartı ---------- */
.form-card {
  background: #fff; color: var(--text); border-radius: var(--radius);
  padding: 28px 22px; box-shadow: var(--shadow-lg);
}
.form-card__title { font-size: 1.4rem; margin-bottom: 6px; }
.form-card__title span { color: var(--cyan); }
.form-card__sub { font-size: 0.9rem; color: var(--muted); margin-bottom: 20px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-2); margin-bottom: 6px; }
.field .opt { font-weight: 400; color: var(--muted-2); }
.field input, .field textarea {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--border); border-radius: 10px;
  background: #fff; color: var(--text); transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field textarea { resize: vertical; min-height: 64px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(40, 187, 197, 0.18); }
.field input::placeholder, .field textarea::placeholder { color: #9aa3b2; }
.field.has-error input, .field.has-error textarea { border-color: var(--danger); }
.field__error { display: block; min-height: 0; font-size: 0.78rem; color: var(--danger); margin-top: 4px; }
.field__error:empty { display: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent { display: flex; align-items: flex-start; gap: 10px; font-size: 0.8rem; color: var(--muted); line-height: 1.5; margin: 6px 0 4px; cursor: pointer; }
.consent input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--cyan); cursor: pointer; }
.consent a { color: var(--cyan); text-decoration: underline; }
.consent__error { margin-bottom: 10px; }
.lead-form .btn--block { margin-top: 12px; }
.form-note { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 12px; font-size: 0.75rem; color: var(--muted-2); }
.form-success { text-align: center; padding: 24px 8px; }
.form-success__icon {
  width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--cyan-100); color: var(--cyan); display: grid; place-items: center;
}
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--muted); margin-bottom: 18px; }

/* ---------- Güven şeridi ---------- */
.trust { background: #fff; border-bottom: 1px solid #eef0f3; }
.trust__grid { display: grid; grid-template-columns: 1fr; gap: 12px; padding: 28px 20px; }
.trust__item { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 14px; background: var(--bg); }
.trust__item strong { display: block; color: var(--navy); font-size: 0.95rem; }
.trust__item span { display: block; font-size: 0.8rem; color: var(--muted); }
.trust__icon {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 12px;
  background: var(--cyan-100); color: var(--cyan); display: grid; place-items: center;
}
.trust__icon svg { width: 26px; height: 26px; }

/* ---------- Bölümler ---------- */
.section { padding: 64px 0; }
.section--alt { background: var(--bg); }
.section--navy { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-900) 100%); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--cta { background: var(--bg); padding-bottom: 80px; }

.split { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
.split__text h2 { margin-bottom: 18px; }
.split__text p { color: var(--muted); }
.split__text .btn { margin-top: 10px; }

/* İstatistik kartları */
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.stat {
  padding: 22px 18px; border-radius: 16px; background: var(--bg);
  border: 1px solid #eef0f3; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stat:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.stat__num { display: block; font-size: 2rem; font-weight: 700; color: var(--cyan); line-height: 1; margin-bottom: 8px; }
.stat__label { font-size: 0.85rem; color: var(--text-2); line-height: 1.4; display: block; }

/* Checklist */
.checklist { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }
.checklist li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px; border-radius: 14px; background: #fff; border: 1px solid #eef0f3;
  box-shadow: 0 2px 10px rgba(28, 47, 89, 0.04);
}
.checklist li div { color: var(--muted); font-size: 0.95rem; }
.checklist li strong { color: var(--navy); }
.checklist__icon {
  flex: 0 0 auto; width: 28px; height: 28px; margin-top: 2px; border-radius: 50%;
  background: var(--cyan); position: relative;
}
.checklist__icon::after {
  content: ""; position: absolute; left: 10px; top: 5px; width: 6px; height: 12px;
  border: solid #fff; border-width: 0 2.5px 2.5px 0; transform: rotate(45deg);
}
.inline-cta {
  margin: 36px auto 0; max-width: 860px; padding: 24px; border-radius: 16px;
  background: var(--cyan-100); display: flex; flex-direction: column; gap: 16px; align-items: center; text-align: center;
}
.inline-cta p { color: var(--navy); font-weight: 500; }
.inline-cta__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Adımlar */
.steps { display: grid; grid-template-columns: 1fr; gap: 20px; counter-reset: step; }
.step {
  position: relative; padding: 28px 24px 24px; border-radius: 18px; background: #fff;
  border: 1px solid #eef0f3; box-shadow: 0 2px 12px rgba(28, 47, 89, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step__num {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
  background: var(--navy); color: #fff; font-weight: 700; margin-bottom: 16px;
}
.step h3 { margin-bottom: 10px; font-size: 1.1rem; }
.step p { color: var(--muted); font-size: 0.925rem; }

/* Kartlar (güvenlik) */
.cards { display: grid; grid-template-columns: 1fr; gap: 20px; }
.card { padding: 28px 24px; border-radius: 18px; }
.card--glass {
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px); transition: background 0.2s ease, transform 0.2s ease;
}
.card--glass:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-4px); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px;
  background: var(--cyan); color: #fff; display: grid; place-items: center;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.card p { color: rgba(255, 255, 255, 0.78); font-size: 0.925rem; }

/* Öneriler */
.tips { display: grid; gap: 12px; }
.tips li {
  display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px;
  border-radius: 14px; background: #fff; border: 1px solid #eef0f3;
}
.tips strong { display: block; color: var(--navy); font-size: 0.95rem; }
.tips span:not(.tips__icon) { display: block; font-size: 0.85rem; color: var(--muted); }
.tips__icon {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px;
  background: var(--cyan-100); color: var(--cyan); display: grid; place-items: center;
}
.tips__icon svg { width: 24px; height: 24px; }

/* Fiyat */
.price {
  display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center;
  padding: 36px 28px; border-radius: 28px; background: var(--navy); color: #fff;
  position: relative; overflow: hidden;
}
.price::after {
  content: ""; position: absolute; width: 380px; height: 380px; right: -140px; bottom: -220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 187, 197, 0.35), transparent 70%); pointer-events: none;
}
.price__text, .price__cta { position: relative; z-index: 1; }
.price h2 { color: #fff; margin-bottom: 14px; }
.price p { color: rgba(255, 255, 255, 0.8); }
.price__cta { display: flex; flex-direction: column; gap: 12px; }
.price .btn--outline { color: #fff; border-color: rgba(255, 255, 255, 0.6); }
.price .btn--outline:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* SSS */
.faq { display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid #eef0f3; border-radius: 14px; overflow: hidden; transition: box-shadow 0.2s ease; }
.faq__item[open] { box-shadow: var(--shadow); border-color: rgba(40, 187, 197, 0.4); }
.faq__item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; font-weight: 600; color: var(--navy); font-size: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; flex: 0 0 auto; width: 10px; height: 10px; margin-right: 4px;
  border-right: 2px solid var(--cyan); border-bottom: 2px solid var(--cyan);
  transform: rotate(45deg); transition: transform 0.25s ease;
}
.faq__item[open] summary::after { transform: rotate(-135deg); }
.faq__body { padding: 0 20px 20px; color: var(--muted); font-size: 0.95rem; }

/* Son CTA */
.cta-box {
  display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center;
  padding: 36px 24px; border-radius: 28px; background: linear-gradient(145deg, var(--navy) 0%, var(--navy-900) 100%);
  color: #fff; box-shadow: var(--shadow-lg);
}
.cta-box__text h2 { color: #fff; margin-bottom: 16px; }
.cta-box__text p { color: rgba(255, 255, 255, 0.82); }
.contact-list { display: grid; gap: 12px; margin-top: 24px; }
.contact-list li { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; font-weight: 500; }
.contact-list svg { color: var(--cyan); flex: 0 0 auto; }
.contact-list a:hover { color: var(--cyan); }
.contact-list__note { font-size: 0.8rem; color: rgba(255, 255, 255, 0.6); font-weight: 400; }

/* ---------- Footer ---------- */
.site-footer {
  width: 100%;
  background: var(--footer);
  color: rgba(255, 255, 255, 0.72);
  padding: 56px 0 0;
  font-size: 0.9rem;
}
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
.footer__brand img { height: 52px; width: auto; max-width: 180px; object-fit: contain; margin-bottom: 16px; }
.footer__brand p { max-width: 420px; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer__col li { margin-bottom: 8px; }
.footer__col a:hover { color: var(--cyan); }
.footer__disclaimer {
  padding: 18px 0; border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center; font-size: 0.85rem; color: rgba(255, 255, 255, 0.55);
}
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; align-items: center;
  padding: 16px 0 24px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.8rem;
}
.footer__bottom a:hover { color: var(--cyan); }

/* ---------- Mobil sabit bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr; height: var(--mobile-bar-h);
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.12);
}
.mobile-bar a { display: flex; align-items: center; justify-content: center; gap: 10px; color: #fff; font-weight: 600; font-size: 1rem; }
.mobile-bar__wa { background: var(--wa); }
.mobile-bar__call { background: var(--cyan); }
body { padding-bottom: var(--mobile-bar-h); }

/* Masaüstü sabit WhatsApp */
.wa-float {
  display: none; position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: var(--wa); color: #fff;
  place-items: center; box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.06); }

/* ---------- CTA Modal ---------- */
body.modal-open { overflow: hidden; }
.cta-modal {
  position: fixed; inset: 0; z-index: 220;
  display: flex; align-items: center; justify-content: center;
  padding: 16px; padding-bottom: calc(16px + var(--mobile-bar-h));
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.cta-modal.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.cta-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(20, 35, 74, 0.62);
  backdrop-filter: blur(5px);
}
.cta-modal__dialog {
  position: relative; z-index: 1;
  width: min(100%, 460px);
  max-height: min(90vh, 780px);
  overflow: auto;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
}
.cta-modal.is-open .cta-modal__dialog { transform: none; }
.cta-modal__dialog .form-card { margin: 0; }
.cta-modal__logo {
  height: 44px; width: auto; max-width: 170px; object-fit: contain; margin-bottom: 16px;
}
.cta-modal__close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 36px; height: 36px; border: 0; border-radius: 50%;
  background: var(--bg); color: var(--navy);
  display: grid; place-items: center; cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.cta-modal__close:hover { background: var(--cyan-100); transform: rotate(90deg); }

/* ---------- Görünüm animasyonu ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .stat, .step, .card--glass, .cta-modal, .cta-modal__dialog { transition: none; }
}

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .price__cta { flex-direction: row; flex-wrap: wrap; }
  .header__cta { display: inline-flex; }
  .brand img { height: 52px; max-width: 168px; }
}

@media (min-width: 768px) {
  :root { --page-pad: 40px; }
  .section { padding: 84px 0; }
  .hero__card { padding: 56px var(--page-pad); }
  .form-card { padding: 32px 28px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .cta-box { padding: 48px 40px; }
  .price { grid-template-columns: 1.3fr 1fr; padding: 48px 44px; }
  .price__cta { flex-direction: column; align-items: stretch; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 992px) {
  :root { --page-pad: 56px; }
  .cta-modal { padding-bottom: 16px; }
  .header__phone { display: inline-flex; }
  .hero { padding: 0; }
  .hero__card { grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; padding: 72px var(--page-pad); }
  .trust__grid { grid-template-columns: repeat(4, 1fr); padding: 32px 0; }
  .split { grid-template-columns: 1.1fr 0.9fr; gap: 64px; }
  .split--reverse .split__text { order: 2; }
  .split--reverse .split__aside { order: 1; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .cta-box { grid-template-columns: 1.1fr 0.9fr; gap: 56px; }
  .mobile-bar { display: none; }
  body { padding-bottom: 0; }
  .wa-float { display: grid; }
}

@media (min-width: 1100px) {
  .nav-toggle { display: none; }
  .nav__mobile-actions { display: none; }
  body.nav-open { overflow: unset; }
  .nav {
    position: static; flex-direction: row; align-items: center; gap: 28px;
    padding: 0; background: transparent; border: 0; box-shadow: none;
    transform: none; opacity: 1; visibility: visible; pointer-events: auto;
  }
  .nav > a {
    font-size: 0.925rem; font-weight: 500; color: var(--text-2);
    padding: 6px 0; border: 0; position: relative;
  }
  .nav > a::after {
    content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
    background: var(--cyan); transition: width 0.2s ease;
  }
  .nav > a:hover::after { width: 100%; }
  .brand img { height: 58px; max-width: 210px; }
}
