/* Sözcü Vefat İlanı Ver — ana stil dosyası */

:root {
  --red: #d81021;
  --red-dark: #a80b18;
  --red-soft: #fdf2f3;
  --ink: #15181d;
  --ink-2: #3b4351;
  --muted: #6b7583;
  --line: #e3e7ed;
  --line-2: #f0f3f7;
  --bg: #ffffff;
  --bg-alt: #f7f9fc;
  --navy: #16203a;
  --wa: #25d366;
  --wa-dark: #1da851;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 1px 2px rgba(21, 24, 29, .06), 0 8px 24px rgba(21, 24, 29, .06);
  --shadow-lg: 0 20px 50px rgba(21, 24, 29, .12);
  --wrap: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { color: var(--ink); line-height: 1.25; margin: 0 0 .6em; font-weight: 700; }
h1 { font-size: clamp(1.85rem, 4vw, 2.6rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.4rem, 2.6vw, 1.95rem); letter-spacing: -.015em; }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1rem; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0 0 1rem; padding-left: 1.2rem; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--red); color: #fff; padding: 12px 20px;
}
.skip:focus { left: 0; }

/* ---------- Topbar ---------- */
.topbar { background: var(--navy); color: #c6cede; font-size: .82rem; }
.topbar-in { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 38px; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: #ffb3ba; }
.topbar-links { display: flex; gap: 20px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }

.logo { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.logo-mark {
  background: var(--red); color: #fff; font-weight: 900;
  letter-spacing: .06em; font-size: .95rem; padding: 8px 11px;
  border-radius: 6px; line-height: 1;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text strong { font-size: 1.05rem; color: var(--ink); letter-spacing: -.01em; }
.logo-text small { font-size: .72rem; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 8px; }
.nav-list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; }
.nav-item > a {
  display: flex; align-items: center; gap: 5px;
  padding: 10px 12px; border-radius: 8px;
  color: var(--ink-2); font-weight: 600; font-size: .93rem;
}
.nav-item > a:hover { background: var(--bg-alt); color: var(--red); }
.nav-item.is-active > a { color: var(--red); }
.caret { width: 0; height: 0; border: 4px solid transparent; border-top-color: currentColor; margin-top: 3px; }

.subnav {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 234px; list-style: none; margin: 0; padding: 6px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all .16s ease;
}
.has-sub:hover .subnav, .has-sub:focus-within .subnav { opacity: 1; visibility: visible; transform: translateY(0); }
.subnav a { display: block; padding: 9px 12px; border-radius: 7px; color: var(--ink-2); font-size: .9rem; font-weight: 500; }
.subnav a:hover { background: var(--red-soft); color: var(--red); }

.nav-cta { margin-left: 10px; }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 10px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }
.burger span + span { margin-top: 5px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 8px; border: 1px solid transparent;
  font-weight: 700; font-size: .92rem; cursor: pointer;
  transition: transform .12s ease, background .16s ease, box-shadow .16s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 14px 26px; font-size: 1rem; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 4px 14px rgba(216, 16, 33, .28); }
.btn-primary:hover { background: var(--red-dark); color: #fff; }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--red); color: var(--red); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { background: #fff; color: var(--navy); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-dark); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff;
  background: linear-gradient(160deg, #1b2540 0%, #16203a 45%, #2a1520 100%);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(720px 400px at 82% 12%, rgba(216, 16, 33, .34), transparent 65%);
  pointer-events: none;
}
.hero-in { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; padding: 76px 0; }
.hero h1 { color: #fff; margin-bottom: .5em; }
.hero .lead { font-size: 1.1rem; color: #c9d2e4; max-width: 56ch; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .18);
  color: #fff; padding: 6px 14px; border-radius: 999px;
  font-size: .8rem; font-weight: 600; margin-bottom: 20px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--wa); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.hero-meta { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.14); }
.hero-meta div strong { display: block; font-size: 1.35rem; color: #fff; }
.hero-meta div span { font-size: .84rem; color: #9fabc4; }

.hero-card {
  background: #fff; border-radius: var(--radius-lg); padding: 26px;
  box-shadow: var(--shadow-lg); color: var(--ink-2);
}
.hero-card h3 { margin-bottom: 4px; }
.hero-card .card-sub { font-size: .88rem; color: var(--muted); margin-bottom: 18px; }
.hero-card ol { margin: 0 0 20px; padding-left: 20px; }
.hero-card ol li { margin-bottom: 9px; font-size: .92rem; }
.hero-card .btn { width: 100%; }
.hero-card .btn + .btn { margin-top: 10px; }

/* ---------- Page hero (iç sayfalar) ---------- */
.page-hero { background: var(--navy); color: #fff; padding: 52px 0; }
.page-hero h1 { color: #fff; margin-bottom: .35em; }
.page-hero p { color: #b9c3d8; max-width: 68ch; margin: 0; }
.crumb { font-size: .82rem; color: #8d9ab5; margin-bottom: 14px; }
.crumb a { color: #cbd4e6; }
.crumb a:hover { color: #fff; }
.crumb span { margin: 0 6px; opacity: .55; }

/* ---------- Sections ---------- */
.section { padding: 68px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 700px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow {
  display: block; color: var(--red); font-weight: 800;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px;
}
.section-head p { color: var(--muted); margin: 0; font-size: 1.02rem; }

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

.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 26px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d3dae5; }
.card h3 { margin-bottom: .45em; }
.card p { color: var(--muted); font-size: .93rem; margin: 0; }
.card-icon {
  width: 46px; height: 46px; border-radius: 11px;
  background: var(--red-soft); color: var(--red);
  display: grid; place-items: center; margin-bottom: 16px;
}
.card-link { display: inline-block; margin-top: 14px; font-weight: 700; font-size: .88rem; }
.card-link::after { content: " →"; }

.step { position: relative; padding-left: 58px; }
.step-num {
  position: absolute; left: 0; top: 0;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: grid; place-items: center; font-weight: 800;
}
.step h3 { margin-bottom: .3em; font-size: 1.05rem; }
.step p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- Tables ---------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
table { width: 100%; border-collapse: collapse; font-size: .9rem; min-width: 720px; }
thead th {
  background: var(--navy); color: #fff; text-align: right;
  padding: 13px 14px; font-weight: 700; font-size: .82rem; white-space: nowrap;
}
thead th:first-child, tbody td:first-child { text-align: left; }
thead th:first-child { position: sticky; left: 0; background: var(--navy); z-index: 2; }
tbody td { padding: 12px 14px; border-top: 1px solid var(--line-2); text-align: right; white-space: nowrap; }
tbody td:first-child { position: sticky; left: 0; background: #fff; font-weight: 600; color: var(--ink); z-index: 1; }
tbody tr:hover td { background: var(--red-soft); }
tbody tr:hover td:first-child { background: var(--red-soft); }
.cell-dims { display: block; font-weight: 400; font-size: .8rem; color: var(--muted); }
.table-note { font-size: .86rem; color: var(--muted); margin-top: 14px; }

/* ---------- Notice / alert ---------- */
.notice {
  display: flex; gap: 14px; align-items: flex-start;
  border-radius: var(--radius); padding: 16px 18px;
  background: #fff8e6; border: 1px solid #f2dca4; color: #6b5312;
  font-size: .91rem; margin-bottom: 26px;
}
.notice strong { display: block; color: #4d3c0b; }
.notice.info { background: #eef4ff; border-color: #c9dcff; color: #23446f; }
.notice.info strong { color: #16304f; }

/* ---------- Price mini cards ---------- */
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; text-align: center; }
.price-card .edition { font-weight: 600; color: var(--muted); font-size: .9rem; }
.price-card .amount { font-size: 2rem; font-weight: 800; color: var(--ink); margin: 8px 0 2px; }
.price-card .amount span { font-size: 1rem; font-weight: 600; color: var(--muted); }
.price-card .unit { font-size: .84rem; color: var(--muted); }

/* ---------- Examples ---------- */
.ad-sample {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; font-family: var(--serif);
}
.ad-sample .ad-head {
  text-align: center; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; font-size: .82rem; color: var(--ink);
  padding-bottom: 10px; margin-bottom: 12px; border-bottom: 2px solid var(--ink);
}
.ad-sample .ad-body { font-size: .92rem; color: var(--ink-2); text-align: center; line-height: 1.7; }
.ad-sample .ad-name { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin: 8px 0; letter-spacing: .04em; }
.ad-meta { margin-top: 14px; font-size: .8rem; color: var(--muted); font-family: var(--font); text-align: center; }

.snippet {
  background: var(--bg-alt); border: 1px solid var(--line);
  border-left: 3px solid var(--red); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 18px; margin-bottom: 14px;
}
.snippet .snippet-tag { display: block; font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.snippet p { margin: 0; font-family: var(--serif); font-size: .94rem; color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
.faq details { border-bottom: 1px solid var(--line-2); }
.faq details:last-child { border-bottom: 0; }
.faq summary {
  cursor: pointer; padding: 18px 52px 18px 20px; position: relative;
  font-weight: 650; color: var(--ink); list-style: none; font-size: .97rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 400; color: var(--red); line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq summary:hover { background: var(--bg-alt); }
.faq .faq-body { padding: 0 20px 20px; color: var(--muted); font-size: .93rem; }
.faq .faq-body p:last-child { margin: 0; }

/* ---------- Chips / lists ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.chips li {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; font-size: .88rem; font-weight: 500; color: var(--ink-2);
}
.chips li:hover { border-color: var(--red); color: var(--red); }

.ticklist { list-style: none; padding: 0; margin: 0; }
.ticklist li { position: relative; padding-left: 30px; margin-bottom: 12px; font-size: .95rem; }
.ticklist li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--red-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d81021'%3E%3Cpath d='M6.2 11.6 3 8.4l1.1-1.1 2.1 2.1 5.7-5.7L13 4.8z'/%3E%3C/svg%3E") center/13px no-repeat;
}

/* ---------- Deadline table ---------- */
.deadline-list { list-style: none; padding: 0; margin: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
.deadline-list li { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; border-bottom: 1px solid var(--line-2); }
.deadline-list li:last-child { border-bottom: 0; }
.deadline-list li:hover { background: var(--bg-alt); }
.deadline-list .edition { font-weight: 600; color: var(--ink); }
.deadline-list .time { font-weight: 800; color: var(--red); font-size: 1.1rem; font-variant-numeric: tabular-nums; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; text-align: center; }
.contact-card .card-icon { margin: 0 auto 16px; }
.contact-card h3 { margin-bottom: .3em; }
.contact-card a { font-size: 1.15rem; font-weight: 700; }
.contact-card p { color: var(--muted); font-size: .88rem; margin: 6px 0 0; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--navy), #241228); color: #fff; }
.cta-in { display: flex; align-items: center; justify-content: space-between; gap: 36px; padding: 48px 0; flex-wrap: wrap; }
.cta-in h2 { color: #fff; margin-bottom: .3em; }
.cta-in p { color: #b9c3d8; margin: 0; max-width: 62ch; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: #10141c; color: #98a3b6; font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding: 56px 20px 44px; }
.footer-col { min-width: 0; }
.footer h3 { color: #fff; font-size: .95rem; margin-bottom: 1.1em; }
.footer .logo-footer { margin-bottom: 16px; }
.footer .logo-text strong { color: #fff; }
.footer-about { font-size: .87rem; line-height: 1.7; color: #8b96a9; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: #98a3b6; font-size: .88rem; }
.footer-links a:hover { color: #fff; }
.footer-contact li { display: flex; flex-direction: column; margin-bottom: 13px; }
.footer-contact span { font-size: .74rem; text-transform: uppercase; letter-spacing: .07em; color: #626d7f; }
.footer-contact a, .footer-contact b { color: #fff; font-weight: 600; font-size: .95rem; }
.footer-contact a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid #1e242f; }
.footer-bottom-in { display: flex; justify-content: space-between; gap: 20px; padding: 20px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; font-size: .82rem; }
.disclaimer { color: #626d7f; max-width: 62ch; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .42);
  transition: transform .16s ease;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }

/* ---------- 404 ---------- */
.err { text-align: center; padding: 100px 0; }
.err .code { font-size: 5rem; font-weight: 900; color: var(--red); line-height: 1; }

/* ---------- Prose ---------- */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.6em; }
.prose ul { padding-left: 1.3rem; }
.prose li { margin-bottom: .5rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-in { grid-template-columns: 1fr; gap: 40px; padding: 56px 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 860px) {
  .burger { display: block; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg); padding: 12px; max-height: 78vh; overflow-y: auto;
  }
  .nav.is-open { display: flex; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-item > a { padding: 13px 12px; justify-content: space-between; }
  .subnav {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-left: 2px solid var(--line);
    border-radius: 0; margin: 0 0 6px 14px; padding: 0 0 0 6px;
    display: none;
  }
  .nav-item.is-open .subnav { display: block; }
  .nav-cta { margin: 10px 0 4px; }
  .grid-3, .contact-grid { grid-template-columns: 1fr; }
  .cta-in { flex-direction: column; align-items: flex-start; }
  .topbar-in { justify-content: center; text-align: center; }
  .topbar-note { display: none; }
}

@media (max-width: 560px) {
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .hero-meta { gap: 20px; }
  .logo-text small { display: none; }
}
