/* TANITIM SAYFASI — rezi.ai bölüm dili
 *
 * Değerler tarayıcıda ölçüldü (getComputedStyle), tahmin edilmedi:
 *   · Başlık 55.52px / ağırlık 500 / satır 1.15 / harf aralığı -0.005em
 *   · Gövde 17.616px / ağırlık 450 / satır 1.5 / renk #545454
 *   · Üst etiket 15.536px / vurgu renginde / BÜYÜK HARF DEĞİL
 *   · Kart: beyaz, 0.8px #E9E9E9 kenarlık, 12px yarıçap, GÖLGE YOK
 *   · Bölümler açık (#FAFAFA) → koyu (#151515) → mavi rampa sırasıyla gider
 *
 * Rezi başlıklarda PP Neue Montreal (ticari) kullanıyor; en yakın ücretsiz
 * karşılığı Inter Tight — aynı dar neo-grotesk iskelet, aynı 500 ağırlığı.
 */

:root {
  --dark:   #151515;
  --dark-2: #1A1A1A;
  --dark-3: #282828;
  --dark-line: rgba(255,255,255,.07);

  /* Rampa, beyaz govde metni 4.5:1 esigini gecsin diye koyulastirildi. */
  --blue-1: #3F5FD0;
  --blue-2: #32499E;
  --blue-3: #22306A;
  /* Koyu zeminde okunmasi gereken kirmizi — #D83F3F 4.09:1 kaliyordu. */
  --red:    #E85F5F;

  --fs-display: clamp(34px, 4.4vw, 55.5px);
  --fs-h3:      clamp(25px, 3.0vw, 37.2px);
  --fs-body:    17.6px;
  --fs-sm:      15.5px;
  --fs-xs:      13.6px;
}

/* ══════════════════════════════════════════════════════ BÖLÜM İSKELETİ */

.sec { padding: 104px 0; }
.sec-tight { padding: 68px 0; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* Koyu bölümler: içerideki her şey rengini buradan alır */
.sec-dark { background: var(--dark); color: #fff; }
.sec-dark h1, .sec-dark h2, .sec-dark h3 { color: #fff; }
.sec-dark p { color: rgba(255,255,255,.62); }
.sec-dark .eyebrow { color: #8FA6F5; }

.sec-blue-1 { background: var(--blue-1); color: #fff; }
.sec-blue-2 { background: var(--blue-2); color: #fff; }
.sec-blue-3 { background: var(--blue-3); color: #fff; }
.sec-blue-1 h2, .sec-blue-2 h2, .sec-blue-3 h2,
.sec-blue-1 h3, .sec-blue-2 h3, .sec-blue-3 h3 { color: #fff; }
.sec-blue-1 p, .sec-blue-2 p, .sec-blue-3 p { color: rgba(255,255,255,.92); }

/* ══════════════════════════════════════════════════════════ TİPOGRAFİ */

.display {
  font-size: var(--fs-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--ink);
  max-width: 19ch;
}
.display-wide { max-width: 26ch; }

/* İki tonlu başlık — Rezi'nin imzası: ilk cümle gri, ikinci cümle siyah.
 * Kalın yazmak yerine RENK ile vurgu; "her yer bold" görüntüsünü önler. */
.display .dim { color: var(--soft); }
.sec-dark .display .dim { color: rgba(255,255,255,.38); }

.h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.005em;
}

.eyebrow {
  font-size: var(--fs-sm);
  font-weight: 450;
  letter-spacing: -0.005em;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.eyebrow-red { color: var(--red); }

.lead {
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--muted);
  font-weight: 450;
  max-width: 56ch;
}
/* Dipnot kucuk puntodur: --soft (3:1) yetmez, --soft-text (5.1:1) gerekir. */
.note { font-size: var(--fs-xs); line-height: 1.5; color: var(--soft-text); }
.sec-dark .note { color: rgba(255,255,255,.55); }

.sec-head { margin-bottom: 52px; }
.sec-head .lead { margin-top: 18px; }

/* ═══════════════════════════════════════════════════════════════ HERO */

.hero { padding: 72px 0 0; }
.hero-grid {
  display: grid; grid-template-columns: 1.25fr .85fr;
  gap: 56px; align-items: end;
}
/* Başlık, ızgara sütununun tamamını kullanır. 15ch sınırı onu 503px’e
 * sıkıştırıp dört satıra bölüyordu; Rezi’de başlık iki satırdır. */
.hero .display { max-width: none; }
.hero-side { display: flex; flex-direction: column; gap: 22px; padding-bottom: 6px; }
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* Yükleme alanı — Rezi'deki "drop your resume" şeridi */
.dropbar {
  margin-top: 44px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.dropbar-text { flex: 1; min-width: 200px; }
.dropbar-text b { font-weight: 500; font-size: var(--fs-sm); }
.dropbar-text span { display: block; font-size: var(--fs-xs); color: var(--soft-text); margin-top: 2px; }

/* ══════════════════════════════════════════════════════ ÜRÜN VİTRİNİ */

.tabs { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 22px; }
.tab {
  border: 0; cursor: pointer; font-family: inherit;
  font-size: var(--fs-sm); font-weight: 450;
  padding: 9px 17px; border-radius: var(--r-pill);
  background: transparent; color: var(--muted);
  transition: background .15s, color .15s;
}
.tab:hover { background: var(--sunken); color: var(--ink); }
.tab[aria-selected="true"] { background: var(--ink); color: #fff; }
.sec-dark .tab { color: rgba(255,255,255,.6); }
.sec-dark .tab:hover { background: var(--dark-3); color: #fff; }
.sec-dark .tab[aria-selected="true"] { background: #fff; color: var(--ink); }

/* Tarayıcı çerçevesi — ürün ekranını çevreler */
.frame { border-radius: 20px; padding: 8px; background: rgba(17,17,17,.06); }
.sec-dark .frame { background: var(--dark-2); border: .8px solid var(--dark-line); }
.frame-inner {
  background: var(--surface); border-radius: 13px; overflow: hidden;
  border: .8px solid var(--line);
}
.frame-bar {
  height: 38px; display: flex; align-items: center; gap: 7px;
  padding: 0 14px; border-bottom: .8px solid var(--line); background: #FCFCFC;
}
.frame-dot { width: 9px; height: 9px; border-radius: 50%; background: #DCDCDC; }
.frame-url {
  margin-left: 10px; font-size: 11.5px; color: var(--soft-text);
  background: var(--sunken); border-radius: var(--r-pill); padding: 3px 12px;
}

/* ═══════════════════════════════════════════════════════════ KARTLAR */

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

.tile {
  background: var(--surface);
  border: .8px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
}
.tile h4 {
  font-family: var(--font-display); font-size: 18px; font-weight: 500;
  letter-spacing: -0.01em; margin: 0 0 7px;
}
.tile p { font-size: var(--fs-sm); line-height: 1.5; color: var(--muted); }
.tile-icon {
  width: 34px; height: 34px; border-radius: 9px; margin-bottom: 14px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
  font-size: 15px; font-weight: 500;
}
.sec-dark .tile { background: var(--dark-2); border-color: var(--dark-line); color: #fff; }
.sec-dark .tile p { color: rgba(255,255,255,.58); }
.sec-dark .tile-icon { background: rgba(77,112,235,.16); color: #8FA6F5; }

/* Üç büyük özellik bloğu (Yaz / Puanla / Hedefle) */
.feat { display: grid; grid-template-columns: .8fr 1fr; gap: 56px; align-items: center; }
.feat + .feat { margin-top: 96px; }
.feat-alt .feat-media { order: -1; }
.feat p { margin-top: 18px; font-size: var(--fs-body); line-height: 1.5; }
.feat .btn { margin-top: 26px; }
.feat-media {
  border-radius: 16px; padding: 8px;
  background: var(--dark-2); border: .8px solid var(--dark-line);
}

/* ═══════════════════════════════════════════════ ATS TARAMA PANELİ */

.ats {
  background: var(--dark-2); border: .8px solid var(--dark-line);
  border-radius: 16px; padding: 26px; margin-top: 46px;
}
.ats-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-bottom: 16px; border-bottom: .8px solid var(--dark-line);
  flex-wrap: wrap;
}
.ats-title { font-size: var(--fs-sm); font-weight: 500; color: #fff; }
.ats-verdict {
  font-size: var(--fs-xs); font-weight: 500; color: #FF8A8A;
  background: rgba(216,63,63,.14); border-radius: var(--r-pill); padding: 5px 13px;
}
.ats-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 22px; }
.ats-label {
  font-size: 11.5px; letter-spacing: .09em; text-transform: uppercase;
  color: rgba(255,255,255,.36); margin-bottom: 12px;
}
.ats-line {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 9px 0; border-bottom: .8px solid var(--dark-line);
  font-size: var(--fs-sm); color: rgba(255,255,255,.82);
}
.ats-line:last-child { border-bottom: 0; }
.ats-state { font-size: var(--fs-xs); color: rgba(255,255,255,.4); }
.ats-state.ok  { color: #6EDBB0; }
.ats-state.bad { color: #FF8A8A; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 4px; }
.chip {
  font-size: var(--fs-xs); border-radius: var(--r-pill);
  padding: 5px 12px; border: .8px solid var(--dark-line);
  color: rgba(255,255,255,.72); background: rgba(255,255,255,.03);
}
.chip.ok  { color: #6EDBB0; border-color: rgba(110,219,176,.3); background: rgba(110,219,176,.08); }
.chip.bad { color: #FF8A8A; border-color: rgba(255,138,138,.28); background: rgba(255,138,138,.08); }

/* ══════════════════════════════════════════════════════════ ŞABLONLAR */

.tpl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.tpl {
  background: var(--surface); border: .8px solid var(--line);
  border-radius: var(--r); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .15s, transform .15s;
}
.tpl:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.tpl-shot {
  aspect-ratio: 1 / 1.414; background: #fff;
  border-bottom: .8px solid var(--line);
  padding: 15px; overflow: hidden;
}
.tpl-body { padding: 16px 18px 18px; }
.tpl-body b { font-family: var(--font-display); font-weight: 500; font-size: 16px; }
.tpl-body p { font-size: var(--fs-xs); color: var(--muted); line-height: 1.5; margin-top: 5px; }
.tpl-body .btn { margin-top: 14px; width: 100%; }

/* Şablon minik önizlemesi — gerçek CV iskeletinin küçültülmüş hâli */
.mini { --m: var(--accent); display: flex; flex-direction: column; gap: 5px; height: 100%; }
.mini i { display: block; border-radius: 1.5px; background: #E4E4E4; }
.mini .m-name { height: 11px; width: 58%; background: #2A2A2A; }
.mini .m-sub  { height: 5px;  width: 40%; background: var(--m); margin-bottom: 5px; }
.mini .m-meta { height: 3.5px; width: 76%; }
.mini .m-sec  { height: 5px;  width: 28%; background: var(--m); margin-top: 9px; }
.mini .m-row  { height: 3.5px; width: 100%; }
.mini .m-row.s { width: 82%; }
.mini .m-row.t { width: 64%; }
.mini.m-two { display: grid; grid-template-columns: .42fr 1fr; gap: 5px 10px; align-content: start; }
.mini.m-two .m-name, .mini.m-two .m-sub, .mini.m-two .m-meta { grid-column: 1 / -1; }
.mini.m-center { align-items: center; }
.mini.m-center i { margin-inline: auto; }

/* ═════════════════════════════════════════════════════ SAYI ŞERİDİ */

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.stat { padding: 0 32px; border-left: .8px solid var(--line); }
.stat:first-child { padding-left: 0; border-left: 0; }
.stat-num {
  font-family: var(--font-display); font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 500; letter-spacing: -0.02em; line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.stat-name { font-size: var(--fs-sm); font-weight: 500; margin-top: 8px; }
.stat-note { font-size: var(--fs-xs); color: var(--soft-text); margin-top: 4px; line-height: 1.45; }

/* ═══════════════════════════════════════════════════════════ FİYAT */

.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 800px; }
.plan {
  border: .8px solid var(--line); border-radius: 16px;
  background: var(--surface); padding: 30px;
}
.plan-hot { background: var(--ink); color: #fff; border-color: var(--ink); }
.plan-hot .plan-price, .plan-hot h3 { color: #fff; }
.plan-hot .plan-desc { color: rgba(255,255,255,.6); }
.plan-hot li { color: rgba(255,255,255,.8); }
.plan-price {
  font-family: var(--font-display); font-size: 38px; font-weight: 500;
  letter-spacing: -0.02em; margin: 14px 0 6px;
}
.plan-price small { font-size: 15px; color: var(--soft); font-weight: 450; letter-spacing: 0; }
.plan-hot .plan-price small { color: rgba(255,255,255,.5); }
.plan-desc { font-size: var(--fs-sm); color: var(--muted); line-height: 1.5; }
.plan ul { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 10px; }
.plan li { font-size: var(--fs-sm); display: flex; gap: 9px; align-items: flex-start; color: var(--muted); }
.plan li::before { content: '✓'; color: var(--accent); flex-shrink: 0; }
.plan-hot li::before { color: #8FA6F5; }
.plan .btn { width: 100%; margin-top: 24px; }

/* ═══════════════════════════════════════════════════════════════ SSS */

.faq { border-top: .8px solid var(--line); }
.faq details { border-bottom: .8px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 0;
  font-family: var(--font-display); font-size: 19px; font-weight: 500;
  letter-spacing: -0.01em; display: flex; justify-content: space-between; gap: 20px;
}
.faq summary::-webkit-details-marker { display: none }
.faq summary::after { content: '+'; color: var(--soft); font-size: 22px; line-height: 1; flex-shrink: 0; }
.faq details[open] summary::after { content: '−'; }
.faq details p { padding: 0 0 24px; font-size: var(--fs-body); line-height: 1.55; color: var(--muted); max-width: 68ch; }

/* ══════════════════════════════════════════════════════ SON ÇAĞRI */

.closer { text-align: center; padding: 96px 0; }
.closer .display { margin: 0 auto 30px; max-width: 22ch; }

/* ══════════════════════════════════════════════════════════ ALT BİLGİ */

.foot { border-top: .8px solid var(--line); padding: 52px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; }
.foot h5 { font-size: var(--fs-xs); font-weight: 500; margin: 0 0 14px; color: var(--ink); }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.foot a { font-size: var(--fs-sm); color: var(--muted); }
.foot a:hover { color: var(--ink); }
.foot-note { margin-top: 44px; padding-top: 24px; border-top: .8px solid var(--line); }

/* ═════════════════════════════════════════════════════════ DAR EKRAN */

@media (max-width: 980px) {
  .hero-grid, .feat, .ats-cols { grid-template-columns: 1fr; gap: 32px; }
  .feat-alt .feat-media { order: 0; }
  .feat + .feat { margin-top: 64px; }
  .grid-4, .tpl-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .sec { padding: 76px 0; }
}

@media (max-width: 640px) {
  .grid-3, .grid-2, .grid-4, .tpl-grid, .plans { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 24px; }
  .stat { padding: 0 0 0 16px; border-left: .8px solid var(--line); }
  .stat:first-child { padding-left: 16px; border-left: .8px solid var(--line); }
  .sec { padding: 60px 0; }
  .wrap, .wrap-narrow { padding: 0 18px; }
  .display { max-width: none; }
}

/* ══════════════════════════════════════════════ ÜRÜN EKRANI TAKLİDİ
 *
 * Gerçek düzenleyicinin iskeleti: solda form, sağda kâğıt önizleme.
 * Ekran görüntüsü YERİNE HTML — her ekran genişliğinde net kalır,
 * dosya boyutu getirmez ve arayüz değişince birlikte değişir.
 */
.shot { display: grid; grid-template-columns: 1fr 1.05fr; min-height: 380px; }
.shot-side { padding: 20px; border-right: .8px solid var(--line); background: #FDFDFD; }
.shot-side .sh-tab {
  display: inline-block; font-size: 11.5px; padding: 4px 11px;
  border-radius: var(--r-pill); background: var(--ink); color: #fff; margin-bottom: 16px;
}
.sh-label { font-size: 10.5px; color: var(--soft-text); margin: 0 0 5px; }
.sh-input {
  height: 30px; border: .8px solid var(--line-strong); border-radius: 7px;
  background: #fff; margin-bottom: 12px; display: flex; align-items: center;
  padding: 0 10px; font-size: 11.5px; color: var(--ink);
}
.sh-input.on { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.sh-two { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sh-score {
  display: flex; align-items: center; gap: 11px; margin-top: 6px;
  border: .8px solid var(--line); border-radius: 9px; padding: 11px; background: #fff;
}
.sh-ring {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center;
  background: conic-gradient(var(--ok) 82%, var(--sunken) 0);
}
.sh-ring::before { content: ''; grid-area: 1/1; width: 31px; height: 31px; background: #fff; border-radius: 50%; }
.sh-ring b { grid-area: 1/1; font-size: 12px; font-weight: 500; color: var(--ok); }
.sh-score div { font-size: 11px; line-height: 1.4; color: var(--muted); }
.sh-score div b { display: block; color: var(--ink); font-size: 12px; font-weight: 500; }

.shot-paper { padding: 22px; background: var(--sunken); display: grid; place-items: start center; }
.shot-paper .sheet {
  background: #fff; width: 100%; max-width: 300px; padding: 20px;
  border-radius: 3px; box-shadow: 0 1px 3px rgba(0,0,0,.09), 0 8px 24px rgba(0,0,0,.06);
}
.sheet .s-name { font-family: var(--font-display); font-size: 17px; font-weight: 500; letter-spacing: -.02em; }
.sheet .s-role { font-size: 11px; color: var(--accent); font-weight: 500; margin-top: 1px; }
.sheet .s-meta { font-size: 9px; color: var(--soft); margin-top: 6px; line-height: 1.6; }
.sheet .s-sec {
  font-size: 8.5px; letter-spacing: .12em; font-weight: 600; text-transform: uppercase;
  border-bottom: 1px solid var(--ink); padding-bottom: 2px; margin: 14px 0 7px;
}
.sheet .s-job { display: flex; justify-content: space-between; gap: 8px; font-size: 10px; }
.sheet .s-job b { font-weight: 600; }
.sheet .s-job span { color: var(--soft); font-size: 8.5px; white-space: nowrap; }
.sheet .s-co { font-size: 9px; color: var(--muted); margin-bottom: 4px; }
.sheet ul { margin: 0 0 9px; padding-left: 11px; font-size: 9px; line-height: 1.55; color: #333; }

@media (max-width: 760px) {
  .shot { grid-template-columns: 1fr; }
  .shot-side { border-right: 0; border-bottom: .8px solid var(--line); }
}

/* `.shot { display: grid }` bir yazar kuralıdır ve tarayıcının [hidden]
 * kuralını ezer — panel gizlenmez, hepsi üst üste görünür. Bu yüzden
 * [hidden] burada açıkça yeniden tanımlanır. */
[hidden] { display: none !important; }

/* SİYAH KALMASI GEREKENLER
 *
 * Gövde artık gri (#545454). Başlık görevi gören ama h1–h4 OLMAYAN
 * öğeler bu değişiklikten sonra griye düştü; hiyerarşiyi geri kurmak
 * için tek tek siyaha alınır. */
.tpl-body b,
.faq summary,
.stat-num,
.stat-name,
.dropbar-text b,
.plan-price,
.sheet .s-name,
.sheet .s-job b,
.sheet .s-sec { color: var(--ink); }
