/* ============================================================
   wolinka.com (English) — Homepage prototype styles
   Marka token'ları (brand.css) ve fontlar HTML <head>'de <link> ile
   yüklenir (CLS/performans). Kaynak kopya: assets/css/brand.css
   Bu dosya yalnızca layout + bileşen stillerini ekler.
   ============================================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-secondary);
  background: var(--bg-warm);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-heading); color: var(--text-primary); line-height: 1.2; text-wrap: balance; }
a { color: inherit; text-decoration: none; }

/* ---------- Accessibility ---------- */
/* Skip link: klavye kullanıcıları doğrudan <main id="main">'e atlar */
.skip-link {
  position: absolute; left: 8px; top: -48px; z-index: 100;
  background: var(--brand-navy); color: #fff; font-weight: 600; font-size: 15px;
  padding: 10px 18px; border-radius: var(--radius-md); transition: top .15s ease;
}
.skip-link:focus { top: 8px; }

/* Görünür focus halkası; koyu bölümlerde açık renkli varyant */
:focus-visible { outline: 3px solid var(--brand-navy); outline-offset: 2px; }
.audits :focus-visible, .stats :focus-visible,
.steps :focus-visible, .site-footer :focus-visible { outline-color: var(--accent-light); }

/* prefers-reduced-motion: smooth scroll, geçiş ve animasyonları kapat */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
}

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand-purple); margin-bottom: 16px;
}
.text-red { color: var(--brand-red); }
.lead { font-size: 19px; color: var(--text-secondary); max-width: 620px; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 26px; border-radius: var(--radius-full);
  font-weight: 600; font-size: 15px; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--brand-red); color: #fff; box-shadow: 0 8px 20px rgba(206,33,65,.22); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(206,33,65,.30); }
.btn-ghost { background: transparent; color: var(--brand-navy); border-color: rgba(27,69,130,.30); }
.btn-ghost:hover { background: rgba(27,69,130,.06); }
.btn-light { background: #fff; color: var(--brand-navy); }
.btn-light:hover { transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(249,246,242,.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav .logo img { height: 26px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--text-secondary); }
.nav-links a:hover { color: var(--brand-navy); }
.nav-links a[aria-current] { color: var(--brand-navy); font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0; background: none; border: 0; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: var(--brand-navy); transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  display: none; flex-direction: column; padding: 8px 24px 20px;
  border-top: 1px solid var(--border-light); background: rgba(249,246,242,.98);
}
.mobile-menu.open { display: flex; }
.mobile-menu a:not(.btn) {
  font-size: 16px; font-weight: 500; color: var(--text-secondary);
  padding: 13px 0; border-bottom: 1px solid var(--border-light);
}
.mobile-menu a:not(.btn):hover { color: var(--brand-navy); }
.mobile-menu a[aria-current] { color: var(--brand-navy); font-weight: 600; }
.mobile-menu .btn { margin-top: 16px; justify-content: center; padding: 12px 26px; }
@media (min-width: 721px) { .mobile-menu { display: none !important; } }

/* ---------- Hero ---------- */
.hero { padding: 96px 0 72px; }
.hero h1 { font-size: clamp(38px, 6vw, 60px); max-width: 760px; margin-bottom: 22px; }
.hero .lead { font-size: 20px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.hero-trust::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--brand-purple); }

/* ---------- Section headings ---------- */
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); line-height: 1.3; margin-bottom: 14px; }
.section-head p:not(.eyebrow) { color: var(--text-secondary); font-size: 17px; }

/* ---------- Plugin cards ---------- */
.grid { display: grid; gap: 24px; }
.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(--border-light); border-radius: var(--radius-lg);
  padding: 28px; transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(13,42,84,.10); }
.plugin-card, .theme-card { display: flex; flex-direction: column; height: 100%; }
.plugin-card .badge, .theme-card .badge { align-self: flex-start; margin-bottom: 16px; }
.plugin-card h3, .theme-card h3 { font-size: 21px; line-height: 1.5; margin-bottom: 8px; }
.plugin-card p, .theme-card p { font-size: 15px; color: var(--text-secondary); margin-bottom: 18px; }
.plugin-card .more, .theme-card .more { margin-top: auto; font-weight: 600; color: var(--brand-red); font-size: 15px; }

.badge {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .03em;
  padding: 5px 12px; border-radius: var(--radius-full);
}
.badge-free { background: rgba(27,69,130,.10); color: var(--brand-navy); }
.badge-pro { background: rgba(157,79,130,.14); color: #7d2f63; } /* koyu mor: AA için, --brand-purple açık zeminde kontrastı düşük */
.badge-neutral { background: var(--bg-card); color: var(--text-muted); }

/* ---------- Why (promise) ---------- */
.why { background: var(--bg-cream); }
.promise {
  display: grid; grid-template-columns: 40px 1fr;
  column-gap: 18px; row-gap: 6px; align-items: start;
}
.promise .num {
  grid-column: 1; grid-row: 1 / span 2; align-self: start;
  width: 40px; height: 40px; border-radius: var(--radius-full);
  background: var(--brand-navy); color: #fff; font-family: var(--font-heading);
  display: grid; place-items: center; font-size: 18px;
  padding-bottom: 5px;   /* serif rakamı daire içinde optik ortala */
}
.promise h3 { grid-column: 2; grid-row: 1; font-size: 19px; line-height: 1.15; }
.promise p { grid-column: 2; grid-row: 2; font-size: 15px; }

/* ---------- Audit strip (secondary, dark) ---------- */
.audits { background: var(--gradient-navy); color: #fff; border-radius: 0; }
.audits .section-head h2 { color: #fff; }
.audits .section-head p { color: rgba(255,255,255,.78); }
.audit-card {
  display: block;
  background: rgba(255,255,255,.06); border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg); padding: 28px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
a.audit-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.28); }
.audit-card h3 { color: #fff; font-size: 21px; margin-bottom: 10px; }
.audit-card p { color: rgba(255,255,255,.80); font-size: 15px; margin-bottom: 18px; }
.audit-card .more { color: var(--accent-light); font-weight: 600; font-size: 15px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: center; }
.about-grid img { width: 260px; height: 300px; border-radius: var(--radius-lg); object-fit: cover; }
.about-grid h2 { font-size: clamp(26px, 4vw, 36px); line-height: 1.3; margin-bottom: 14px; }
.about-grid p:not(.eyebrow) { font-size: 17px; margin-bottom: 14px; }

/* ---------- Post cards (blog teaser + archive + related) ---------- */
.post-card {
  display: flex; flex-direction: column; height: 100%;
  background:#fff; border:1px solid var(--border-light); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .18s ease, box-shadow .18s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(13,42,84,.10); }
.post-card .body { display: flex; flex-direction: column; flex: 1; padding: 22px; }
.post-card .cat { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing:.08em; color: var(--brand-purple); }
.post-card h3 { font-size: 18px; line-height: 1.5; margin: 8px 0; }
.post-card p {
  font-size: 14px; color: var(--text-muted); margin-bottom: 18px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* Typographic cover: gradient zemin + üstüne kategori ve başlık */
.post-thumb { height: 140px; background: var(--gradient-red); }
.cover {
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 200px; height: auto; padding: 22px; color: #fff;
  position: relative; overflow: hidden;
}
.cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,42,84,0) 35%, rgba(13,42,84,.55) 100%);
}
.cover > * { position: relative; z-index: 1; }
.cover-cat { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.9); }
.cover-title {
  color: #fff; font-family: var(--font-heading);
  font-size: clamp(17px, 2.1vw, 20px); line-height: 1.45; margin-top: 8px;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,.72); padding: 64px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.site-footer .logo img { height: 35px; width: auto; margin-bottom: 16px; }
.site-footer h3 { color: #fff; font-family: var(--font-body); font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { font-size: 15px; color: rgba(255,255,255,.72); }
.site-footer a:hover { color: #fff; }
.footer-note { font-size: 14px; max-width: 300px; }
.footer-bottom { border-top: 1px solid var(--border-dark); padding-top: 24px; font-size: 13px; color: rgba(255,255,255,.55); }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  /* footer: logo bloğu tam genişlik, link sütunları 2'şerli yan yana */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-grid img { width: 260px; height: 260px; min-height: 0; margin: 0 auto; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  /* footer telefonda da 2 kolon kalır (yukarıdaki kural geçerli); tek kolona düşmez */
}

/* ============================================================
   BLOG PAGES (archive + single)
   ============================================================ */

/* ---------- Shared ---------- */
.container-narrow { max-width: 760px; }
.post-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 13px; color: var(--text-muted); margin-top: 14px;
}

/* ---------- Page head (archive) ---------- */
.page-head { padding: 72px 0 8px; }
.page-head h1 { font-size: clamp(34px, 5vw, 52px); max-width: 720px; margin-bottom: 18px; }
.page-head .lead { font-size: 19px; }

/* ---------- Category filters ---------- */
.blog-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.chip {
  display: inline-flex; align-items: center; padding: 7px 16px; min-height: 44px;
  border-radius: var(--radius-full); border: 1px solid var(--border-light);
  background: #fff; font-size: 14px; font-weight: 500; color: var(--text-secondary);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.chip:hover { border-color: rgba(27,69,130,.35); color: var(--brand-navy); }
.chip.is-active { background: var(--brand-navy); border-color: var(--brand-navy); color: #fff; }

/* ---------- Featured post ---------- */
.featured-post {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 0;
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  overflow: hidden; margin-bottom: 48px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.featured-post:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(13,42,84,.10); }
.featured-thumb { min-height: 260px; position: relative; overflow: hidden; }
/* öne çıkan yazıda boş kalan bloğa büyük, yarı saydam marka monogramı (inline SVG) */
.featured-monogram {
  position: absolute; right: -12%; top: 53%; transform: translateY(-50%);
  width: 74%; height: auto; fill: rgba(255,255,255,.14);
}
.featured-body { padding: 40px; }
.featured-body .cat { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--brand-purple); }
.featured-body h2 { font-size: clamp(24px, 3vw, 32px); line-height: 1.25; margin: 12px 0 14px; }
.featured-body p { font-size: 16px; color: var(--text-secondary); }

/* ---------- Post grid + meta inside cards ---------- */
.blog-grid { margin-bottom: 48px; }
.post-card .post-meta { margin-top: auto; } /* açıklama kısa olsa bile meta en altta hizalı */

/* ---------- Pagination ---------- */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; }
.page-link {
  display: inline-grid; place-items: center; min-width: 44px; height: 44px; padding: 0 12px;
  border-radius: var(--radius-md); border: 1px solid var(--border-light);
  background: #fff; font-size: 15px; font-weight: 500; color: var(--text-secondary);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.page-link:hover { border-color: rgba(27,69,130,.35); color: var(--brand-navy); }
.page-link.is-active { background: var(--brand-navy); border-color: var(--brand-navy); color: #fff; }
.page-next { font-weight: 600; }

/* ---------- Single: breadcrumb + head ---------- */
.article { padding: 72px 0 0; }
.breadcrumb { display: flex; gap: 8px; font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.breadcrumb a:hover { color: var(--brand-navy); }
.article-head .cat { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--brand-purple); }
.article-head h1 { font-size: clamp(32px, 5vw, 48px); line-height: 1.18; margin: 14px 0 16px; }
.article-dek { font-size: 20px; color: var(--text-secondary); }
.article-meta { margin-top: 20px; font-size: 14px; }
.article-cover { height: 360px; border-radius: var(--radius-lg); margin: 36px 0 44px; }

/* ---------- Single: prose ---------- */
.prose { font-size: 18px; line-height: 1.75; color: var(--text-secondary); }
.prose > p { margin-bottom: 24px; }
.prose h2 { font-size: clamp(24px, 3vw, 30px); line-height: 1.3; margin: 44px 0 16px; }
.prose h3 { font-size: 22px; line-height: 1.35; margin: 32px 0 12px; }
.prose ul, .prose ol { margin: 0 0 24px; padding-left: 24px; }
.prose li { margin-bottom: 10px; }
.prose a { color: var(--brand-red); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: #a51a34; }
.prose strong { color: var(--text-primary); }
.prose blockquote {
  margin: 32px 0; padding: 18px 24px; border-left: 4px solid var(--brand-purple);
  background: var(--bg-card); border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 19px; color: var(--text-primary);
}
.prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .88em; background: var(--bg-card); color: #7d2f63;
  padding: 2px 7px; border-radius: var(--radius-sm);
}
.prose pre {
  background: var(--bg-dark); color: #f3f5f9; border-radius: var(--radius-md);
  padding: 20px 22px; overflow-x: auto; margin: 0 0 24px; font-size: 15px;
}
.prose pre code { background: none; color: inherit; padding: 0; font-size: inherit; }

/* ---------- Single: author box ---------- */
.author-box {
  display: flex; gap: 20px; align-items: flex-start;
  margin: 56px 0 8px; padding: 28px; background: var(--bg-cream);
  border: 1px solid var(--border-light); border-radius: var(--radius-lg);
}
.author-box img { width: 72px; height: 72px; border-radius: var(--radius-full); object-fit: cover; flex-shrink: 0; }
.author-name { font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.author-bio { font-size: 15px; color: var(--text-secondary); }

.related-posts { margin-top: 72px; }

/* ---------- Blog responsive ---------- */
@media (max-width: 720px) {
  .featured-post { grid-template-columns: 1fr; }
  .featured-thumb { min-height: 200px; }
  .featured-body { padding: 28px; }
  .article-cover { height: 220px; }
  .prose { font-size: 17px; }
  .author-box { flex-direction: column; gap: 14px; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Intro: portre ve metni dikeyde ortala */
.about-intro .about-grid { align-items: center; }
.about-intro .about-grid img { height: 320px; }

/* ---------- Story timeline ---------- */
.timeline { max-width: 720px; margin: 0 auto; }
.tl-item { display: grid; grid-template-columns: 96px 1fr; gap: 28px; }
.tl-year {
  font-family: var(--font-heading); font-size: 28px; line-height: 1;
  color: var(--brand-red); padding-top: 2px; text-align: right;
}
.tl-body {
  position: relative; padding: 0 0 40px 32px;
  border-left: 2px solid var(--border-light);
}
.tl-item:last-child .tl-body { padding-bottom: 0; border-left-color: transparent; }
.tl-body::before {
  content: ""; position: absolute; left: -7px; top: 5px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--brand-red); box-shadow: 0 0 0 4px var(--bg-cream);
}
.tl-body h3 { font-size: 20px; line-height: 1.3; margin-bottom: 8px; }
.tl-body p { font-size: 16px; color: var(--text-secondary); }

/* ---------- Stats strip (navy) ---------- */
.stats { background: var(--gradient-navy); color: #fff; }
.stat { text-align: center; }
.stat .num {
  font-family: var(--font-heading); font-size: clamp(34px, 5vw, 48px);
  line-height: 1; color: #fff; margin-bottom: 10px;
}
.stat .label { font-size: 15px; color: rgba(255,255,255,.78); }

/* ---------- CTA ---------- */
.about-cta .cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---------- About responsive ---------- */
@media (max-width: 720px) {
  .about-intro .about-grid img { height: 260px; }
  .tl-item { grid-template-columns: 1fr; gap: 4px; }
  .tl-year { text-align: left; }
  .tl-body { padding-left: 0; border-left: 0; }
  .tl-body::before { display: none; }
  .tl-item:not(:last-child) .tl-body { padding-bottom: 28px; }
  .stat { padding: 6px 0; }
}

/* ============================================================
   PLUGIN PAGES (archive + product)
   ============================================================ */

/* ---------- Shared bits ---------- */
/* Generic centred CTA actions (used by product CTA band; about-cta reuses too) */
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* Generic chip filter row (shared visual with blog filters) */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }

/* Check list (feature/plan bullets) */
.checklist { list-style: none; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 30px; font-size: 16px; color: var(--text-secondary); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(27,69,130,.10)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.6 6.2 4.9 8.6 9.4 3.6' fill='none' stroke='%231b4582' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 12px no-repeat;
}

/* ---------- Archive: plugin catalog cards ---------- */
.plugin-grid { margin-bottom: 48px; }
.plugin-card h2 { font-size: 22px; line-height: 1.4; margin-bottom: 8px; }
.plugin-card .plugin-meta {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-muted); margin: 4px 0 16px;
}

/* Cross-sell band (to themes) */
.cross-sell {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: var(--bg-cream); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px 36px; margin-top: 48px;
}
.cross-sell h2 { font-size: 24px; line-height: 1.3; margin-bottom: 6px; }
.cross-sell p { font-size: 16px; color: var(--text-secondary); max-width: 520px; }

/* ---------- Product hero (üst boşluk standart .page-head'den gelir) ---------- */
.product-hero { padding: 0 0 64px; }
.product-hero .container { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: stretch; }
.product-hero .badge { margin-bottom: 16px; }
.product-hero h1 { font-size: clamp(34px, 5vw, 52px); margin-bottom: 16px; }
.product-lead { font-size: 20px; color: var(--text-secondary); margin-bottom: 24px; }
.product-points { margin-bottom: 28px; }
.product-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.requires-note { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.requires-note::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--brand-purple); flex-shrink: 0; }
.requires-note a { color: var(--brand-navy); text-decoration: underline; text-underline-offset: 2px; }

/* Screenshot placeholder: a stylised app window on a brand gradient */
.product-media {
  background: var(--gradient-navy); border-radius: var(--radius-lg);
  padding: 40px 32px; min-height: 340px; display: grid; place-items: center;
}

/* ---------- Hero glyph banner (tek tip, ikon-güdümlü; öneri #2) ----------
   Eklenti başına değişen tek şey ikon. WP'de CPT 'icon' alanından çizilir;
   statik prototipte Lucide SVG inline. .product-media zaten navy gradient +
   place-items:center sağlar. */
.hero-glyph {
  position: relative; overflow: hidden;
  /* krem → soft mor → soluk mavi: brand purple geçişe araya katılır */
  background: linear-gradient(150deg, var(--bg-cream) 0%, #e9d8e4 52%, #e0e7f5 100%);
  border: 1px solid var(--border-light);
}
.hero-glyph .glyph-bg {
  position: absolute; right: -8%; bottom: -12%; width: 80%; height: auto;
  fill: none; stroke: rgba(157,79,130,.12); stroke-width: .8;
  stroke-linecap: round; stroke-linejoin: round;
}
.hero-glyph .glyph-badge {
  position: relative; z-index: 1;
  width: 144px; height: 144px; border-radius: 30px;
  background: #fff; border: 1px solid var(--border-light);
  display: grid; place-items: center; box-shadow: 0 20px 48px rgba(13,42,84,.12);
}
.hero-glyph .glyph-badge svg {
  width: 74px; height: 74px; fill: none; stroke: var(--brand-navy);
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}

/* ---------- Features ---------- */
.feature { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 26px; }
.feature .ficon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: rgba(157,79,130,.12); display: grid; place-items: center; margin-bottom: 16px;
}
.feature .ficon svg { width: 22px; height: 22px; stroke: var(--brand-purple); fill: none; stroke-width: 1.7; }
.feature h3 { font-size: 19px; line-height: 1.35; margin-bottom: 8px; }
.feature p { font-size: 15px; color: var(--text-secondary); }

/* ---------- Free callout (free-only product) ---------- */
.free-callout { background: var(--bg-cream); }
.free-callout .panel {
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 40px;
}
.free-callout h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 12px; }
.free-callout .panel > div:first-child > p:not(.eyebrow) { font-size: 16px; color: var(--text-secondary); margin-bottom: 18px; max-width: 560px; }

/* ---------- Demo band (paid pages: try before you buy) ---------- */
.demo-cta .panel {
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
  background: var(--brand-navy); color: #fff; border-radius: var(--radius-lg); padding: 36px 44px;
}
.demo-cta .panel .eyebrow { color: rgba(255,255,255,.72); }
.demo-cta .panel h2 { color: #fff; font-size: clamp(22px, 3vw, 30px); margin: 0 0 8px; }
.demo-cta .panel p { color: rgba(255,255,255,.85); max-width: 540px; margin: 0; }
.demo-cta .btn-primary { background: #fff; color: var(--brand-navy); box-shadow: none; }
.demo-cta .btn-primary:hover { background: rgba(255,255,255,.88); }

/* Hero price line (paid hero) */
.hero-price { font-size: 15px; color: var(--text-secondary); margin: -2px 0 18px; }
.hero-price strong { color: var(--text-primary); font-size: 19px; font-weight: 700; }

/* ---------- Pricing (free vs pro) ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 860px; margin: 0 auto; align-items: start; }
.pricing-grid.pricing-3 { grid-template-columns: repeat(3, 1fr); max-width: 1020px; gap: 20px; }
.plan {
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 32px;
  display: flex; flex-direction: column; height: 100%;
}
.plan-pro { border: 2px solid var(--brand-red); position: relative; box-shadow: 0 18px 40px rgba(13,42,84,.08); }
.plan-tag {
  position: absolute; top: -13px; left: 32px; background: var(--brand-red); color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: .03em; padding: 5px 14px; border-radius: var(--radius-full);
}
.plan-name { font-family: var(--font-body); font-size: 14px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.plan-price { font-family: var(--font-heading); font-size: 40px; line-height: 1; color: var(--text-primary); }
.plan-price .per { font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--text-muted); }
.plan-billing { font-size: 14px; color: var(--text-muted); margin: 8px 0 22px; }
.plan .checklist { margin-bottom: 26px; }
.plan .checklist li { font-size: 15px; }
.plan .btn { margin-top: auto; justify-content: center; }
.plan-foot { font-size: 13px; color: var(--text-muted); margin-top: 14px; text-align: center; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer;
  list-style: none; padding: 22px 0; font-family: var(--font-heading); font-size: 19px; color: var(--text-primary);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex-shrink: 0; width: 12px; height: 12px;
  border-right: 2px solid var(--brand-navy); border-bottom: 2px solid var(--brand-navy);
  transform: rotate(45deg); transition: transform .2s ease; margin-bottom: 4px;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-bottom: -4px; }
.faq-item p { font-size: 16px; color: var(--text-secondary); padding: 0 0 22px; max-width: 680px; }
.faq-item p code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .9em; background: var(--bg-card); color: #7d2f63; padding: 2px 7px; border-radius: var(--radius-sm);
}

/* ---------- Trust strip (social proof under hero) ---------- */
.trust-strip { padding: 0; }
.trust-strip .container {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 36px;
  padding-top: 22px; padding-bottom: 22px;
  border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light);
}
.trust-rating { display: flex; align-items: center; gap: 10px; }
.trust-stars { display: inline-flex; gap: 2px; color: var(--brand-red); }
.trust-stars svg { width: 18px; height: 18px; fill: currentColor; }
.trust-num { font-weight: 600; color: var(--text-primary); font-size: 15px; }
.trust-points { display: flex; flex-wrap: wrap; gap: 12px 22px; margin: 0 0 0 auto; padding: 0; list-style: none; }
.trust-point { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 500; color: var(--text-secondary); }
.trust-point::before {
  content: ""; flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(27,69,130,.10)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.6 6.2 4.9 8.6 9.4 3.6' fill='none' stroke='%231b4582' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 11px no-repeat;
}

/* ---------- Screenshot gallery (thumbnail grid → lightbox, no autoplay) ---------- */
.product-gallery {
  list-style: none; margin: 0 auto; padding: 0; max-width: 940px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.pg-item {
  display: flex; flex-direction: column; gap: 10px; width: 100%;
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-md);
  padding: 8px; cursor: pointer; font: inherit; color: var(--text-secondary); text-align: left;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.pg-item:hover { border-color: rgba(27,69,130,.35); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(20,40,80,.10); }
.pg-item:focus-visible { outline: 2px solid var(--brand-navy); outline-offset: 2px; }
.pg-item img {
  width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: var(--radius-sm); display: block;
}
/* Showcase variant: büyük, dönüşümlü ekran görüntüsü + açıklama (slider değil) */
.product-gallery.is-showcase { display: block; max-width: 1000px; grid-template-columns: none; }
.pg-row { display: grid; grid-template-columns: 1.35fr 1fr; gap: 36px; align-items: center; }
.pg-row + .pg-row { margin-top: 30px; }
.pg-row:nth-child(even) { grid-template-columns: 1fr 1.35fr; }
.pg-row:nth-child(even) .pg-item { order: 2; }
.is-showcase .pg-item { position: relative; padding: 8px; gap: 0; }
.is-showcase .pg-item img { aspect-ratio: 16 / 9; }
.pg-zoom {
  position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(15,23,42,.55); color: #fff; display: grid; place-items: center;
  opacity: 0; transform: scale(.9); transition: opacity .15s ease, transform .15s ease;
}
.pg-item:hover .pg-zoom, .pg-item:focus-visible .pg-zoom { opacity: 1; transform: scale(1); }
.pg-zoom svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pg-row-title { font-size: 20px; margin: 0 0 8px; color: var(--text-primary); }
.pg-row-text p { color: var(--text-secondary); margin: 0; }
.pg-row-title .badge, .feature h3 .badge { vertical-align: middle; margin-left: 8px; font-size: 11px; padding: 4px 10px; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center;
  opacity: 0; transition: opacity .28s ease;
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lb-backdrop { position: absolute; inset: 0; background: rgba(15,23,42,.86); backdrop-filter: blur(2px); }
.lb-figure {
  position: relative; z-index: 1; margin: 0; max-width: min(94vw, 1100px);
  display: grid; gap: 14px; justify-items: center;
  transform: scale(.96); transition: transform .28s ease;
}
.lightbox.is-open .lb-figure { transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  .lightbox, .lb-figure { transition: none; }
}
.lb-img {
  max-width: 100%; max-height: 78vh; width: auto; height: auto; display: block;
  border-radius: var(--radius-lg); box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.lb-caption { color: rgba(255,255,255,.88); font-size: 15px; text-align: center; max-width: 60ch; }
.lb-close {
  position: absolute; top: 18px; right: 20px; z-index: 2;
  width: 44px; height: 44px; border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.12); color: #fff; font-size: 28px; line-height: 1;
  display: grid; place-items: center; transition: background .15s ease;
}
.lb-close:hover { background: rgba(255,255,255,.24); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 52px; height: 52px; border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.12); color: #fff; font-size: 30px; line-height: 1;
  display: grid; place-items: center; transition: background .15s ease;
}
.lb-nav:hover { background: rgba(255,255,255,.24); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-close:focus-visible, .lb-nav:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* ---------- Plugin pages responsive ---------- */
@media (max-width: 720px) {
  .product-hero .container { grid-template-columns: 1fr; gap: 36px; }
  .product-media { min-height: 0; padding: 28px 22px; }
  .pricing-grid, .pricing-grid.pricing-3 { grid-template-columns: 1fr; }
  .free-callout .panel { grid-template-columns: 1fr; text-align: center; }
  .free-callout .panel .btn { justify-self: center; }
  .demo-cta .panel { grid-template-columns: 1fr; text-align: center; gap: 22px; padding: 30px 26px; }
  .demo-cta .panel p { margin-left: auto; margin-right: auto; }
  .demo-cta .panel .btn { justify-self: center; }
  .cross-sell { padding: 28px; }
  .trust-points { margin-left: 0; }
  .product-gallery { grid-template-columns: 1fr; gap: 12px; max-width: 420px; }
  .product-gallery.is-showcase { max-width: none; margin: 0; }
  .pg-row, .pg-row:nth-child(even) { grid-template-columns: 1fr; gap: 14px; }
  .pg-row:nth-child(even) .pg-item { order: 0; }
  .pg-row + .pg-row { margin-top: 24px; }
  .lb-nav { width: 44px; height: 44px; font-size: 26px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-img { max-height: 70vh; }
}

/* ============================================================
   SERVICES PAGE (productized audits)
   ============================================================ */

/* ---------- Service package cards ---------- */
.service-card { display: flex; flex-direction: column; height: 100%; padding: 34px; }
.service-card .ficon {
  width: 50px; height: 50px; border-radius: var(--radius-md);
  background: rgba(157,79,130,.12); display: grid; place-items: center; margin-bottom: 18px;
}
.service-card .ficon svg { width: 25px; height: 25px; stroke: var(--brand-purple); fill: none; stroke-width: 1.7; }
.service-card.is-security .ficon { background: rgba(27,69,130,.10); }
.service-card.is-security .ficon svg { stroke: var(--brand-navy); }
.service-card h2 { font-size: 24px; line-height: 1.3; margin-bottom: 10px; }
.service-lead { font-size: 16px; color: var(--text-secondary); margin-bottom: 22px; }
.service-card .incl-label {
  font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 14px;
}
.service-card .checklist { margin-bottom: 26px; }
.service-card .checklist li { font-size: 15px; }
.service-foot { margin-top: auto; border-top: 1px solid var(--border-light); padding-top: 22px; }
.service-price { font-family: var(--font-heading); font-size: 26px; line-height: 1; color: var(--text-primary); margin-bottom: 6px; }
.service-price .per { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--text-muted); }
.service-billing { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
.service-tags {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-size: 13px; color: var(--text-muted); margin-bottom: 20px;
}
.service-card .btn { justify-content: center; }
.service-card .btn + .plan-foot { margin-top: 14px; }

/* ---------- How it works (numbered steps on navy) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step .snum {
  width: 46px; height: 46px; border-radius: var(--radius-full);
  background: var(--brand-red); color: #fff; font-family: var(--font-heading);
  display: grid; place-items: center; font-size: 19px; margin-bottom: 16px; padding-bottom: 4px;
}
.step h3 { color: #fff; font-size: 20px; line-height: 1.3; margin-bottom: 8px; }
.step p { color: rgba(255,255,255,.78); font-size: 15px; }

/* ---------- Scope (in / out) two columns ---------- */
.scope-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.scope-card { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 30px; }
.scope-card h3 { font-size: 19px; margin-bottom: 18px; }
.scope-list { list-style: none; display: grid; gap: 12px; }
.scope-list li { position: relative; padding-left: 30px; font-size: 15px; color: var(--text-secondary); }
.scope-list.yes li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(27,69,130,.10)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.6 6.2 4.9 8.6 9.4 3.6' fill='none' stroke='%231b4582' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 12px no-repeat;
}
.scope-list.no li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--bg-card)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3.5 3.5l5 5M8.5 3.5l-5 5' fill='none' stroke='%238a93a6' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E")
    center / 12px no-repeat;
}

/* ---------- Services responsive ---------- */
@media (max-width: 720px) {
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .scope-grid { grid-template-columns: 1fr; }
}
