/* ──────────────────
 * TreScout · index.html (landing) sayfa-özel stiller
 * site.css (paylaşılan iskelet: token + reset + nav + buttons + footer) ÜZERİNE biner.
 * Yükleme sırası: <link site.css> → <link index.css> (cascade korunur).
 * Önceden index.html içinde inline <style> idi · CSP 'unsafe-inline' (style-src)
 * kaldırılabilsin + HTML küçülsün + CSS ayrı cache'lensin diye harici alındı.
 * ────────────────── */

    /* Gradient text iOS'ta tap'i text-selection olarak yorumluyor · scroll engellenmesin */
    .hero h1 .accent,
    .section-title .accent {
      -webkit-user-select: none;
      user-select: none;
      -webkit-touch-callout: none;
    }
    /* Modal açık · body scroll lock iOS-safe position:fixed ile inline yapılır
       (openModal/closeModal JS'te); class sadece marker, ek CSS gerektirmez */
    /* ---------- HERO ---------- */
    .hero {
      position: relative;
      padding: 96px 0 100px;
      overflow: hidden;
    }
    /* Primary blue glow (top-center) */
    .hero::before {
      content: '';
      position: absolute;
      top: -260px;
      left: 50%;
      transform: translateX(-50%);
      width: 1100px;
      height: 1000px;
      background: radial-gradient(ellipse, rgba(95, 168, 211, 0.22) 0%, transparent 55%);
      pointer-events: none;
      z-index: 0;
      filter: blur(8px);
    }
    /* Secondary yellow accent glow (bottom-right, subtle) */
    .hero::after {
      content: '';
      position: absolute;
      bottom: -240px;
      right: -120px;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(244, 211, 94, 0.09) 0%, transparent 60%);
      pointer-events: none;
      z-index: 0;
    }
    .hero-content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
      gap: 64px;
      align-items: center;
      animation: fadeUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }
    .hero-text { text-align: left; }
    .hero-logo {
      margin-bottom: 28px;
      display: flex;
      justify-content: flex-start;
      filter: drop-shadow(0 8px 24px rgba(244, 211, 94, 0.15));
    }
    .hero h1 {
      font-family: Georgia, serif;
      font-size: clamp(40px, 5.4vw, 64px);
      font-weight: 700;
      line-height: 1.06;
      letter-spacing: -0.025em;
      margin-bottom: 24px;
    }
    .hero h1 .accent,
    .section-title .accent {
      color: var(--accent);
      background: linear-gradient(180deg, #F4D35E 0%, #E5C24B 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-content { animation: none; }
      html { scroll-behavior: auto; }
    }
    .hero .mid-line {
      font-family: Georgia, serif;
      font-style: italic;
      font-size: clamp(18px, 2vw, 22px);
      color: var(--brand-light);
      margin-bottom: 14px;
      max-width: 540px;
      line-height: 1.4;
    }
    .hero .sub-line {
      font-size: 16px;
      color: var(--ink-muted);
      max-width: 520px;
      margin: 0 0 36px;
      line-height: 1.65;
    }
    .cta-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 520px;
    }
    .form-row {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .form-consent {
      display: grid;
      grid-template-columns: 16px 1fr;
      column-gap: 10px;
      row-gap: 4px;
      align-items: start;
      font-size: 13px;
      color: var(--ink-muted);
      cursor: pointer;
      line-height: 1.5;
      padding: 4px 2px;
    }
    .form-consent input[type="checkbox"] {
      width: 16px;
      height: 16px;
      margin-top: 2px;
      accent-color: var(--accent);
      cursor: pointer;
      grid-column: 1;
    }
    /* Consent gerektiren state · görsel cue: hafif sönük */
    .form-consent input[type="checkbox"][data-needs-consent] {
      opacity: 0.6;
    }
    .form-consent > span:not(.form-consent-hint) {
      grid-column: 2;
      min-width: 0;
    }
    .form-consent-hint {
      display: block;
      grid-column: 1 / -1;
      margin-left: 26px;
      margin-top: 2px;
      font-size: 11.5px;
      color: var(--ink-muted);
      font-style: italic;
      letter-spacing: 0.01em;
      transition: color 0.2s ease;
    }
    .form-consent-hint.shake {
      animation: consent-shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97);
      color: var(--accent);
      font-style: normal;
      font-weight: 600;
    }
    @keyframes consent-shake {
      0%, 100% { transform: translateX(0); }
      15%, 45%, 75% { transform: translateX(-5px); }
      30%, 60%, 90% { transform: translateX(5px); }
    }
    @media (prefers-reduced-motion: reduce) {
      .form-consent-hint.shake { animation: none; }
    }
    .form-consent-hint.read {
      color: var(--accent);
      font-style: normal;
      font-weight: 600;
    }
    .form-consent a {
      color: var(--ink);
      border-bottom: 1px solid rgba(244, 211, 94, 0.45);
      text-decoration: none;
      transition: color 0.15s, border-color 0.15s;
    }
    .form-consent a:hover,
    .form-consent a:focus-visible {
      color: var(--accent);
      border-bottom-color: var(--accent);
      outline: none;
    }
    .form-consent input[type="checkbox"]:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }
    /* Honeypot · görünmez, klavye fokusu da almaz */
    .hp-field {
      position: absolute;
      left: -9999px;
      top: -9999px;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    /* HERO VISUAL · gerçek mail client mockup (iCloud / Gmail benzeri) */
    .hero-visual {
      position: relative;
      perspective: 1400px;
    }
    .hero-visual-label {
      text-align: center;
      font-family: Georgia, 'Times New Roman', serif;
      font-size: 18px;
      font-style: italic;
      color: var(--ink-muted);
      margin-bottom: 18px;
      letter-spacing: 0.005em;
      line-height: 1.4;
    }
    @media (max-width: 968px) {
      .hero-visual-label { font-size: 17px; }
    }
    .email-client {
      background: #FFFFFF;
      border: 1px solid rgba(15, 25, 41, 0.08);
      border-radius: 14px;
      overflow: hidden;
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.6) inset,
        0 32px 80px rgba(0, 0, 0, 0.55),
        0 8px 24px rgba(0, 0, 0, 0.3);
      transform: rotateY(-6deg) rotateX(3deg) translateZ(0);
      transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
      transform-style: preserve-3d;
      color: #1B2A40;
    }
    .hero-visual:hover .email-client {
      transform: rotateY(-3deg) rotateX(1.5deg) translateZ(0);
    }

    /* Window chrome (top bar) · macOS-ish */
    .email-client-chrome {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 14px;
      background: linear-gradient(180deg, #F2F4F7 0%, #E8EBEF 100%);
      border-bottom: 1px solid rgba(15, 25, 41, 0.08);
    }
    .email-client-dots {
      display: flex;
      gap: 6px;
    }
    .email-client-dots .dot {
      width: 11px;
      height: 11px;
      border-radius: 50%;
      box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.1);
    }
    .email-client-dots .dot.r { background: #FF5F57; }
    .email-client-dots .dot.y { background: #FEBC2E; }
    .email-client-dots .dot.g { background: #28C840; }
    .email-client-tab {
      flex: 1;
      text-align: center;
      font-size: 12px;
      font-weight: 600;
      color: #4F6577;
      letter-spacing: -0.005em;
    }
    .email-client-actions {
      display: flex;
      gap: 12px;
      color: #8B95A0;
      font-size: 14px;
    }

    /* Mail content area */
    .email-client-body {
      background: #FFFFFF;
    }

    /* Sender bar · avatar + meta + time */
    .email-meta-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 18px 12px;
      border-bottom: 1px solid rgba(15, 25, 41, 0.06);
    }
    .email-sender {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }
    .email-avatar {
      flex-shrink: 0;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      overflow: hidden;
      display: flex;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    .email-avatar svg {
      width: 36px;
      height: 36px;
    }
    .email-sender-info {
      min-width: 0;
    }
    .email-sender-name {
      font-weight: 700;
      font-size: 14px;
      color: #1B2A40;
      line-height: 1.3;
    }
    .email-sender-address {
      font-size: 11.5px;
      color: #6B7785;
      line-height: 1.3;
    }
    .email-time-block {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 4px;
    }
    .email-time {
      font-size: 11.5px;
      color: #6B7785;
    }
    .email-star {
      color: #F4D35E;
      font-size: 14px;
    }

    /* Subject line · with label */
    .email-subject-line {
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 10px;
      border-bottom: 1px solid rgba(15, 25, 41, 0.06);
      flex-wrap: wrap;
    }
    .email-label {
      display: inline-flex;
      align-items: center;
      padding: 3px 8px;
      background: rgba(95, 168, 211, 0.14);
      color: #1B4965;
      font-size: 11px;
      font-weight: 600;
      border-radius: 100px;
      letter-spacing: 0.02em;
    }
    .email-subject {
      font-weight: 600;
      font-size: 15px;
      color: #1B2A40;
      line-height: 1.3;
    }

    /* Body · the actual mail content */
    .email-body-content {
      padding: 18px;
    }
    .mini-more {
      margin-top: 10px;
      padding: 12px 14px;
      background: #FFF8E1;
      border: 1px solid rgba(244, 211, 94, 0.45);
      border-radius: 8px;
      color: #806A1F;
      font-size: 12.5px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .mini-more-icon { font-size: 16px; }
    .mini-more-text em { font-style: normal; color: #9B8424; }

    /* Birkaç Yudum kutusu · gerçek e-postadaki editorial bloğunun aynası */
    .mini-yudum {
      padding: 14px 16px;
      background: rgba(244, 211, 94, 0.10);
      border-left: 3px solid #F4D35E;
      border-radius: 4px;
    }
    .mini-yudum-label {
      font-size: 10px;
      color: #B8941F;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-weight: 700;
      margin-bottom: 6px;
    }
    .mini-yudum-body {
      font-size: 13px;
      line-height: 1.55;
      color: #1B2A40;
      font-style: italic;
      margin: 0;
    }
    .mini-cta {
      margin: 12px 0 0;
      font-size: 12.5px;
      line-height: 1.5;
      color: #4F6577;
    }

    /* Hero responsive · 968px altında stacklenir */
    @media (max-width: 968px) {
      .hero-content {
        grid-template-columns: 1fr;
        gap: 56px;
      }
      .hero-text {
        text-align: center;
        max-width: 640px;
        margin: 0 auto;
      }
      .hero-logo { justify-content: center; }
      .hero .mid-line { max-width: 540px; margin-left: auto; margin-right: auto; }
      .hero .sub-line { margin: 0 auto 36px; }
      .cta-form { justify-content: center; margin: 0 auto; }
      .hero-note { text-align: center; }
      .hero-visual { max-width: 480px; margin: 0 auto; }
      .email-client { transform: rotateY(-3deg) rotateX(1deg); }
      .hero-visual:hover .email-client { transform: rotateY(-1deg); }
    }
    @media (max-width: 540px) {
      .email-client { transform: none; }
      .hero-visual:hover .email-client { transform: none; }
    }
    @media (prefers-reduced-motion: reduce) {
      .email-client,
      .hero-visual:hover .email-client { transform: none !important; transition: none; }
    }
    /* Form states · custom subscribe form */
    .btn[disabled] {
      opacity: 0.55;
      cursor: not-allowed;
      transform: none !important;
    }
    .form-success {
      max-width: 520px;
      margin: 0 auto;
      padding: 16px 22px;
      background: rgba(244, 211, 94, 0.1);
      border: 1px solid var(--accent);
      border-radius: 12px;
      color: var(--ink);
      text-align: center;
      font-size: 15px;
      line-height: 1.55;
    }
    .form-success strong { color: var(--accent); }
    .form-error {
      width: 100%;
      max-width: 520px;
      margin: 12px auto 0;
      padding: 10px 14px;
      background: rgba(255, 120, 120, 0.08);
      border: 1px solid rgba(255, 120, 120, 0.35);
      border-radius: 8px;
      color: #ffb3b3;
      font-size: 13px;
      text-align: center;
    }
    .input {
      flex: 1 1 240px;
      min-width: 200px;
      padding: 16px 20px;
      background: rgba(27, 42, 64, 0.6);
      border: 1px solid rgba(168, 192, 208, 0.35);
      border-radius: 12px;
      color: var(--ink);
      font-size: 15px;
      font-family: inherit;
      outline: none;
      transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
      backdrop-filter: blur(4px);
    }
    .input:hover { border-color: rgba(168, 192, 208, 0.55); }
    .input:focus {
      border-color: var(--accent);
      background: rgba(27, 42, 64, 0.8);
      box-shadow: 0 0 0 4px rgba(244, 211, 94, 0.18);
    }
    .input::placeholder { color: var(--ink-muted); }
    .btn-large {
      padding: 16px 30px;
      font-size: 15px;
      border-radius: 12px;
    }
    .hero-note {
      margin-top: 16px;
      font-size: 13px;
      color: var(--ink-muted);
    }
    .hero-note a {
      color: var(--ink);
      border-bottom: 1px solid rgba(244, 211, 94, 0.4);
      text-decoration: none;
      transition: color 0.15s, border-color 0.15s;
    }
    .hero-note a:hover,
    .hero-note a:focus-visible {
      color: var(--accent);
      border-bottom-color: var(--accent);
      outline: none;
    }

    /* ---------- AYDINLATMA METNİ MODAL ---------- */
    .privacy-modal {
      position: fixed;
      inset: 0;
      background: rgba(8, 14, 24, 0.78);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      pointer-events: none;
      visibility: hidden;
      /* visibility 0.2s opacity transition'ı bitince devreye girer · iframe wheel event'leri yutmaz */
      transition: opacity 0.2s ease, visibility 0s linear 0.2s;
    }
    .privacy-modal[aria-hidden="false"] {
      opacity: 1;
      pointer-events: auto;
      visibility: visible;
      transition: opacity 0.2s ease, visibility 0s linear 0s;
    }
    .privacy-modal-card {
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: 16px;
      width: min(880px, 100%);
      max-height: 92vh;
      display: flex;
      flex-direction: column;
      box-shadow: 0 28px 80px rgba(0, 0, 0, 0.6),
                  0 0 0 1px rgba(255, 255, 255, 0.04) inset;
      overflow: hidden;
      transform: translateY(12px);
      transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    .privacy-modal[aria-hidden="false"] .privacy-modal-card {
      transform: translateY(0);
    }
    .privacy-modal-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid var(--border);
      flex-shrink: 0;
    }
    .privacy-modal-head h2 {
      font-family: Georgia, serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--ink);
      margin: 0;
    }
    .privacy-modal-x {
      appearance: none;
      background: transparent;
      border: 1px solid var(--border);
      color: var(--ink-muted);
      width: 32px;
      height: 32px;
      border-radius: 8px;
      font-size: 20px;
      line-height: 1;
      cursor: pointer;
      transition: background 0.15s, color 0.15s, border-color 0.15s;
    }
    .privacy-modal-x:hover,
    .privacy-modal-x:focus-visible {
      background: rgba(95, 168, 211, 0.08);
      color: var(--ink);
      border-color: rgba(168, 192, 208, 0.4);
      outline: none;
    }
    .privacy-modal-body {
      flex: 1;
      overflow: hidden;
      display: flex;
      min-height: 0;
    }
    .privacy-modal-iframe {
      width: 100%;
      height: 100%;
      min-height: 420px;
      border: none;
      background: var(--bg);
    }
    .privacy-modal-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 14px 20px;
      border-top: 1px solid var(--border);
      flex-shrink: 0;
      background: rgba(15, 25, 41, 0.4);
    }
    .privacy-modal-status {
      font-size: 13px;
      color: var(--ink-muted);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .privacy-modal-status.read {
      color: var(--accent);
      font-weight: 600;
    }
    .privacy-modal-status .pulse-arrow {
      animation: pulse-down 1.6s ease-in-out infinite;
    }
    .privacy-modal-status.read .pulse-arrow { display: none; }
    @keyframes pulse-down {
      0%, 100% { transform: translateY(0); opacity: 0.6; }
      50%      { transform: translateY(3px); opacity: 1; }
    }
    .privacy-modal-confirm {
      appearance: none;
      background: var(--accent);
      color: var(--bg);
      border: none;
      padding: 9px 18px;
      border-radius: 10px;
      font: inherit;
      font-size: 13.5px;
      font-weight: 600;
      cursor: pointer;
      transition: opacity 0.2s ease, transform 0.18s ease;
    }
    .privacy-modal-confirm:disabled {
      opacity: 0.4;
      cursor: not-allowed;
    }
    .privacy-modal-confirm:not(:disabled):hover {
      transform: translateY(-1px);
    }
    @media (max-width: 640px) {
      .privacy-modal { padding: 12px; }
      .privacy-modal-card { max-height: 96vh; }
      .privacy-modal-foot {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
      }
      .privacy-modal-confirm { width: 100%; }
    }
    @media (prefers-reduced-motion: reduce) {
      .privacy-modal,
      .privacy-modal-card { transition: none; }
      .privacy-modal-status .pulse-arrow { animation: none; }
    }

    /* ---------- SECTION COMMON ---------- */
    section.section {
      padding: 100px 0;
      position: relative;
    }
    /* Subtle scroll-reveal · IntersectionObserver ile aktifleşir */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
                  transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    .reveal.in {
      opacity: 1;
      transform: translateY(0);
    }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
    }
    .eyebrow {
      display: inline-block;
      padding: 5px 14px;
      background: rgba(244, 211, 94, 0.08);
      color: var(--accent);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-radius: 100px;
      border: 1px solid rgba(244, 211, 94, 0.15);
      margin-bottom: 20px;
    }
    .section-title {
      font-family: Georgia, serif;
      font-size: clamp(30px, 4.2vw, 44px);
      font-weight: 700;
      line-height: 1.18;
      letter-spacing: -0.015em;
      margin-bottom: 18px;
      max-width: 760px;
    }
    .section-lead {
      font-size: 18px;
      color: var(--ink-muted);
      max-width: 640px;
      margin-bottom: 52px;
      line-height: 1.65;
    }
    .section-center { text-align: center; }
    .section-center .section-title,
    .section-center .section-lead { margin-left: auto; margin-right: auto; }

    /* ---------- TABS · detayli bakış ---------- */
    .tabs {
      display: inline-flex;
      flex-wrap: wrap;
      gap: 4px;
      background: rgba(15, 25, 41, 0.6);
      border: 1px solid var(--border);
      padding: 6px;
      border-radius: 14px;
      margin: 8px auto 44px;
      justify-content: center;
    }
    .tab {
      appearance: none;
      background: transparent;
      border: none;
      color: var(--ink-muted);
      font: inherit;
      font-size: 14px;
      font-weight: 500;
      padding: 10px 18px;
      border-radius: 10px;
      cursor: pointer;
      transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
      white-space: nowrap;
    }
    .tab:hover { color: var(--ink); background: rgba(95, 168, 211, 0.08); }
    .tab:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }
    .tab[aria-selected="true"] {
      background: var(--accent);
      color: var(--bg);
      font-weight: 600;
      box-shadow: 0 4px 14px rgba(244, 211, 94, 0.25);
    }
    .tab-panel {
      text-align: left;
      animation: tab-fade 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    .section-center .tab-panel {
      /* Tabs içeriği panel başına göre sola yaslı kalır, sadece master başlık ortada durur */
      max-width: 960px;
      margin-left: auto;
      margin-right: auto;
    }
    .panel-title {
      font-family: Georgia, serif;
      font-size: clamp(24px, 3vw, 32px);
      font-weight: 700;
      line-height: 1.22;
      letter-spacing: -0.01em;
      margin-bottom: 12px;
      color: var(--ink);
      text-align: center;
    }
    .panel-lead {
      font-size: 16px;
      color: var(--ink-muted);
      line-height: 1.65;
      max-width: 720px;
      margin: 0 auto 32px;
      text-align: center;
    }
    @keyframes tab-fade {
      from { opacity: 0; transform: translateY(6px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @media (prefers-reduced-motion: reduce) {
      .tab-panel { animation: none; }
    }
    @media (max-width: 640px) {
      .tabs {
        display: flex;
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        border-radius: 12px;
      }
      .tabs::-webkit-scrollbar { display: none; }
      .tab { padding: 9px 14px; font-size: 13px; }
    }

    /* ---------- PIPELINE ---------- */
    .pipeline {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 36px;
      position: relative;
    }
    /* Flow connector · 3 step arasındaki noktasal çizgi */
    .pipeline::before {
      content: '';
      position: absolute;
      top: 50px;
      left: 12%;
      right: 12%;
      height: 1px;
      background-image: linear-gradient(90deg, rgba(95, 168, 211, 0.35) 50%, transparent 50%);
      background-size: 10px 1px;
      background-repeat: repeat-x;
      z-index: 0;
      pointer-events: none;
    }
    @media (max-width: 768px) {
      .pipeline { grid-template-columns: 1fr; gap: 16px; }
      .pipeline::before { display: none; }
    }
    .step {
      background: linear-gradient(180deg, var(--bg-elevated) 0%, rgba(27, 42, 64, 0.7) 100%);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px 24px;
      position: relative;
      z-index: 1;
      transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
                  border-color 0.2s ease,
                  box-shadow 0.25s ease;
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset,
                  0 8px 24px rgba(0, 0, 0, 0.2);
    }
    .step:hover {
      transform: translateY(-6px);
      border-color: rgba(244, 211, 94, 0.5);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset,
                  0 20px 48px rgba(0, 0, 0, 0.35),
                  0 0 0 1px rgba(244, 211, 94, 0.1);
    }
    .step-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(95, 168, 211, 0.18) 0%, rgba(95, 168, 211, 0.08) 100%);
      border: 1px solid rgba(95, 168, 211, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      font-size: 22px;
    }
    .step-number {
      position: absolute;
      top: 14px;
      right: 18px;
      font-family: ui-monospace, 'SF Mono', 'JetBrains Mono', monospace;
      font-size: 11px;
      color: var(--ink-muted);
      letter-spacing: 0.12em;
      opacity: 0.7;
    }
    .step h3 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 6px;
    }
    .step p {
      font-size: 14px;
      color: var(--ink-muted);
    }

    /* ---------- PDF PREVIEW SPLIT ---------- */
    .preview-split {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
      gap: 56px;
      align-items: center;
    }
    .preview-text { text-align: left; }
    .preview-text .section-title { margin-bottom: 18px; }
    .preview-text .section-lead { margin-bottom: 0; }
    .bullet-list {
      list-style: none;
      margin: 32px 0 0;
      padding: 0;
    }
    .bullet-list li {
      display: flex;
      gap: 14px;
      margin-bottom: 18px;
      font-size: 15px;
      line-height: 1.5;
      color: var(--ink-muted);
    }
    .bullet-list li strong { color: var(--ink); font-weight: 600; }
    .bullet-list .bullet-icon {
      flex-shrink: 0;
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: rgba(95, 168, 211, 0.15);
      border: 1px solid rgba(95, 168, 211, 0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    .pdf-card {
      display: block;
      background: linear-gradient(180deg, var(--bg-elevated) 0%, rgba(27, 42, 64, 0.7) 100%);
      border: 1px solid rgba(95, 168, 211, 0.2);
      border-radius: 20px;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
                  box-shadow 0.4s ease,
                  border-color 0.3s ease;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4),
                  0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    }
    .pdf-card:hover {
      transform: translateY(-6px);
      border-color: rgba(244, 211, 94, 0.3);
      box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5),
                  0 0 0 1px rgba(244, 211, 94, 0.08) inset;
    }
    .pdf-action {
      padding: 16px 22px;
      background: rgba(15, 25, 41, 0.4);
      border-top: 1px solid rgba(95, 168, 211, 0.15);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .pdf-action-info { min-width: 0; flex: 1; }
    .pdf-action-title {
      font-weight: 600;
      font-size: 13.5px;
      color: var(--ink);
      margin-bottom: 2px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .pdf-inline-badge {
      display: inline-block;
      margin-left: 6px;
      padding: 2px 8px;
      background: rgba(244, 211, 94, 0.18);
      color: var(--accent);
      border: 1px solid rgba(244, 211, 94, 0.45);
      border-radius: 4px;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      vertical-align: 2px;
    }
    .pdf-date-token {
      display: inline-block;
      padding: 0 6px;
      background: rgba(95, 168, 211, 0.12);
      border: 1px dashed rgba(95, 168, 211, 0.4);
      border-radius: 3px;
      color: var(--brand-light);
      font-family: ui-monospace, 'SF Mono', monospace;
      letter-spacing: 0.04em;
    }
    .mini-more-text .pdf-date-token {
      background: rgba(155, 132, 36, 0.15);
      border-color: rgba(155, 132, 36, 0.5);
      color: #9B8424;
      font-size: 11px;
    }
    .pdf-action-meta {
      font-size: 11.5px;
      color: var(--ink-muted);
    }
    .pdf-action-btn {
      background: linear-gradient(180deg, #F8DC72 0%, #F4D35E 100%);
      color: var(--bg);
      padding: 9px 18px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 13px;
      flex-shrink: 0;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset,
                  0 4px 12px rgba(244, 211, 94, 0.18);
      transition: box-shadow 0.2s ease, transform 0.18s ease;
    }
    .pdf-action-btn:hover,
    .pdf-action-btn:focus-visible {
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset,
                  0 6px 18px rgba(244, 211, 94, 0.32);
      transform: translateY(-1px);
      outline: none;
    }

    @media (max-width: 900px) {
      .preview-split {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .preview-text { text-align: center; }
      .bullet-list li { text-align: left; }
    }

    /* ---------- PDF CAROUSEL · gerçek 21 Mayıs 2026 raporunun 6 sayfası ---------- */
    .pdf-carousel {
      background: linear-gradient(135deg, #ECEEF1 0%, #DFE4EA 100%);
      padding: 28px 0 22px;
      position: relative;
    }
    .pdf-carousel-badge {
      position: absolute;
      top: 16px;
      left: 24px;
      background: var(--accent);
      color: var(--bg);
      padding: 5px 11px;
      border-radius: 100px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.04em;
      z-index: 5;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }
    .pdf-carousel-track {
      display: flex;
      gap: 14px;
      padding: 36px 28px 6px;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      scroll-padding-left: 28px;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }
    .pdf-carousel-track::-webkit-scrollbar { display: none; }
    .pdf-carousel-slide {
      flex: 0 0 auto;
      width: 230px;
      scroll-snap-align: start;
      position: relative;
      display: block;
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16),
                  0 1px 2px rgba(0, 0, 0, 0.08);
      background: white;
      text-decoration: none;
      color: inherit;
      transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
                  box-shadow 0.3s ease;
    }
    .pdf-carousel-slide:hover,
    .pdf-carousel-slide:focus-visible {
      transform: translateY(-4px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22),
                  0 1px 2px rgba(0, 0, 0, 0.08);
      outline: none;
    }
    .pdf-carousel-slide img {
      display: block;
      width: 100%;
      height: auto;
      aspect-ratio: 1192 / 1686;
    }
    .pdf-carousel-pageno {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: rgba(15, 25, 41, 0.85);
      color: #F4D35E;
      padding: 4px 10px;
      border-radius: 100px;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.06em;
      -webkit-backdrop-filter: blur(4px);
      backdrop-filter: blur(4px);
    }
    .pdf-carousel-hint {
      text-align: center;
      font-size: 11.5px;
      color: rgba(27, 73, 101, 0.6);
      font-weight: 500;
      letter-spacing: 0.02em;
      padding: 4px 28px 0;
    }
    @media (prefers-reduced-motion: reduce) {
      .pdf-carousel-track { scroll-behavior: auto; }
      .pdf-carousel-slide:hover,
      .pdf-carousel-slide:focus-visible { transform: none; }
    }
    /* Desktop · slide'ları büyüt · PDF içeriği okunur olsun */
    @media (min-width: 901px) {
      .pdf-carousel-track { gap: 18px; padding: 40px 32px 10px; }
      .pdf-carousel-slide { width: 300px; }
      .pdf-carousel-badge { font-size: 11.5px; padding: 6px 12px; }
      .pdf-carousel-pageno { font-size: 11.5px; padding: 5px 12px; bottom: 12px; right: 12px; }
      .pdf-carousel-hint { font-size: 12.5px; padding-top: 6px; }
    }

    /* ---------- INLINE TERM · parantezli teknik terim vurgusu ---------- */
    .term {
      color: var(--accent);
      font-family: ui-monospace, 'SF Mono', monospace;
      font-size: 0.94em;
      font-weight: 500;
    }

    /* ---------- DIFF TABLE ---------- */
    .diff-table {
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      margin-top: 32px;
    }
    .diff-table .row {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 0;
      padding: 16px 24px;
      border-bottom: 1px solid var(--border);
      align-items: center;
      font-size: 14px;
    }
    .diff-table .row:last-child { border-bottom: none; }
    .diff-table .row.head {
      background: var(--bg);
      font-weight: 600;
      color: var(--ink-muted);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .diff-table .check { color: var(--success); }
    .diff-table .cross { color: var(--ink-muted); }

    /* Mobil: 3 sütun 375px'de sıkışıp okunmaz oluyor → her satırı karta çevir,
       sütunları ::before ile etiketle (head satırı gizlenir). */
    @media (max-width: 600px) {
      .diff-table .row.head { display: none; }
      .diff-table .row {
        grid-template-columns: 1fr;
        gap: 2px;
        padding: 18px 20px 20px;
      }
      .diff-table .row > div:first-child {
        font-weight: 700;
        font-size: 15px;
        color: var(--ink);
        margin-bottom: 8px;
      }
      .diff-table .row .cross::before,
      .diff-table .row .check::before {
        display: block;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-top: 8px;
        opacity: 0.75;
      }
      .diff-table .row .cross::before { content: "Manuel / YZ araçları"; color: var(--ink-muted); }
      .diff-table .row .check::before { content: "TreScout"; color: var(--success); }
    }

    /* ---------- FEATURES ---------- */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 32px;
    }
    @media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; } }
    .feature {
      padding: 32px 28px;
      background: linear-gradient(180deg, var(--bg-elevated) 0%, rgba(27, 42, 64, 0.7) 100%);
      border: 1px solid var(--border);
      border-radius: 16px;
      transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
                  border-color 0.2s ease,
                  box-shadow 0.25s ease;
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset,
                  0 8px 24px rgba(0, 0, 0, 0.2);
    }
    .feature:hover {
      transform: translateY(-4px);
      border-color: rgba(244, 211, 94, 0.4);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset,
                  0 16px 40px rgba(0, 0, 0, 0.3);
    }
    .feature-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--accent) 0%, #D4B040 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
      color: var(--bg);
      font-size: 24px;
      box-shadow: 0 4px 14px rgba(244, 211, 94, 0.2),
                  0 1px 0 rgba(255, 255, 255, 0.2) inset;
    }
    .feature h3 {
      font-family: Georgia, serif;
      font-size: 20px;
      margin-bottom: 8px;
    }
    .feature p {
      font-size: 14px;
      color: var(--ink-muted);
    }

    /* Bento layout · 1 hero + 2 side cards */
    .features-bento {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 20px;
      margin-top: 36px;
      text-align: left;
    }
    .features-bento-side {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .feature-hero {
      padding: 40px 36px;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }
    .feature-hero::after {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(244, 211, 94, 0.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .feature-hero .feature-icon {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      font-size: 28px;
    }
    .feature-hero h3 {
      font-size: 26px;
      margin-bottom: 12px;
      letter-spacing: -0.01em;
    }
    .feature-hero p {
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 28px;
      flex: 1;
    }
    .time-strip {
      position: relative;
      z-index: 1;
      margin-top: 4px;
    }
    .time-strip-rail {
      position: relative;
      height: 32px;
      background: linear-gradient(180deg, rgba(15, 25, 41, 0.6) 0%, rgba(15, 25, 41, 0.3) 100%);
      border: 1px solid rgba(95, 168, 211, 0.18);
      border-radius: 100px;
      display: flex;
      align-items: center;
      padding: 0 12px;
      gap: 0;
      justify-content: space-between;
      overflow: visible;
    }
    .time-strip-tick {
      width: 1px;
      height: 8px;
      background: rgba(168, 192, 208, 0.3);
      border-radius: 1px;
    }
    .time-strip-tick:nth-child(6n+1) { height: 12px; background: rgba(168, 192, 208, 0.55); }
    .time-strip-thumb {
      position: absolute;
      top: 50%;
      transform: translate(-50%, -50%);
      background: var(--accent);
      color: var(--bg);
      font-family: ui-monospace, 'SF Mono', monospace;
      font-size: 12px;
      font-weight: 600;
      padding: 6px 12px;
      border-radius: 100px;
      box-shadow: 0 4px 14px rgba(244, 211, 94, 0.35),
                  0 0 0 4px rgba(244, 211, 94, 0.12);
      letter-spacing: 0.02em;
      white-space: nowrap;
    }
    .time-strip-labels {
      display: flex;
      justify-content: space-between;
      margin-top: 8px;
      padding: 0 4px;
      font-family: ui-monospace, 'SF Mono', monospace;
      font-size: 10.5px;
      color: var(--ink-muted);
      letter-spacing: 0.04em;
    }
    .time-strip-note {
      margin-top: 14px;
      font-size: 12.5px;
      color: var(--ink-muted);
      font-style: italic;
    }
    .term-list {
      margin-top: 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .term-row {
      padding: 10px 12px;
      background: rgba(15, 25, 41, 0.4);
      border-radius: 8px;
      font-size: 12.5px;
      line-height: 1.5;
      display: grid;
      grid-template-columns: auto auto 1fr;
      gap: 8px;
      align-items: start;
    }
    .term-row code {
      font-family: ui-monospace, 'SF Mono', monospace;
      color: var(--accent);
      font-weight: 600;
      white-space: nowrap;
    }
    .term-row .term-arrow {
      color: var(--ink-muted);
      font-family: ui-monospace, monospace;
    }
    .term-row .term-def {
      color: var(--ink-muted);
    }
    @media (max-width: 768px) {
      .features-bento { grid-template-columns: 1fr; }
      .feature-hero { padding: 32px 28px; }
      .feature-hero h3 { font-size: 22px; }
    }

    /* ---------- ROADMAP (Yol Haritası) ---------- */
    .roadmap {
      position: relative;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 44px;
      text-align: left;
    }
    .roadmap-track {
      position: absolute;
      top: 28px;
      left: 8%;
      right: 8%;
      height: 2px;
      background: linear-gradient(90deg,
        rgba(95, 168, 211, 0.4) 0%,
        rgba(95, 168, 211, 0.4) 100%);
      background-image: linear-gradient(90deg, rgba(95, 168, 211, 0.4) 50%, transparent 50%);
      background-size: 8px 2px;
      background-repeat: repeat-x;
      z-index: 0;
    }
    .roadmap-item {
      position: relative;
      z-index: 1;
      padding: 0 8px;
    }
    .roadmap-dot {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--bg);
      border: 2px solid rgba(95, 168, 211, 0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 20px;
      transition: border-color 0.25s ease, transform 0.25s ease;
    }
    .roadmap-item:hover .roadmap-dot {
      border-color: var(--accent);
      transform: scale(1.05);
    }
    .roadmap-stage {
      display: inline-block;
      font-family: ui-monospace, 'SF Mono', monospace;
      font-size: 10px;
      font-weight: 700;
      color: var(--accent);
      background: rgba(244, 211, 94, 0.08);
      border: 1px solid rgba(244, 211, 94, 0.2);
      padding: 3px 8px;
      border-radius: 100px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .roadmap-title {
      font-family: Georgia, serif;
      font-size: 19px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--ink);
    }
    .roadmap-item p {
      font-size: 14px;
      color: var(--ink-muted);
      line-height: 1.55;
    }
    @media (max-width: 768px) {
      .roadmap {
        grid-template-columns: 1fr;
        gap: 28px;
      }
      .roadmap-track {
        top: 0;
        bottom: 0;
        left: 27px;
        right: auto;
        width: 2px;
        height: auto;
        background-image: linear-gradient(180deg, rgba(95, 168, 211, 0.4) 50%, transparent 50%);
        background-size: 2px 8px;
        background-repeat: repeat-y;
      }
      .roadmap-item { padding-left: 76px; }
      .roadmap-dot {
        position: absolute;
        left: 0;
        top: 0;
        margin-bottom: 0;
        width: 56px;
        height: 56px;
      }
    }

    /* ---------- VERTICALS · Sıradaki alan ---------- */
    .vertical-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 40px;
      text-align: left;
    }
    .vertical-card {
      padding: 24px 20px;
      background: linear-gradient(180deg, var(--bg-elevated) 0%, rgba(27, 42, 64, 0.7) 100%);
      border: 1px solid var(--border);
      border-radius: 14px;
      transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.2s ease;
    }
    .vertical-card:hover {
      transform: translateY(-3px);
      border-color: rgba(244, 211, 94, 0.3);
    }
    .vertical-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(244, 211, 94, 0.1);
      border: 1px solid rgba(244, 211, 94, 0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 14px;
    }
    .vertical-card h3 {
      font-family: Georgia, serif;
      font-size: 18px;
      margin-bottom: 6px;
      color: var(--ink);
    }
    .vertical-card p {
      font-size: 13px;
      line-height: 1.55;
      color: var(--ink-muted);
    }
    .vertical-cta {
      margin-top: 44px;
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
      padding: 24px 28px;
      background: rgba(244, 211, 94, 0.06);
      border: 1px solid rgba(244, 211, 94, 0.2);
      border-radius: 14px;
      text-align: left;
    }
    .vertical-cta p {
      font-size: 15px;
      line-height: 1.65;
      color: var(--ink);
      margin: 0;
    }
    .vertical-cta strong {
      color: var(--accent);
    }
    @media (max-width: 968px) {
      .vertical-cards { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 540px) {
      .vertical-cards { grid-template-columns: 1fr; }
      .vertical-cta { text-align: center; }
    }

    /* ---------- COMMUNITY · Ekibe katıl + Geri bildirim ---------- */
    .community-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .community-card {
      display: flex;
      gap: 20px;
      padding: 28px;
      background: linear-gradient(180deg, var(--bg-elevated) 0%, rgba(27, 42, 64, 0.7) 100%);
      border: 1px solid var(--border);
      border-radius: 16px;
      text-decoration: none;
      color: inherit;
      transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
                  border-color 0.2s ease,
                  box-shadow 0.25s ease;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }
    .community-card:hover {
      transform: translateY(-3px);
      border-color: rgba(244, 211, 94, 0.4);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    }
    .community-icon {
      flex-shrink: 0;
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: rgba(95, 168, 211, 0.12);
      border: 1px solid rgba(95, 168, 211, 0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
    }
    .community-content { flex: 1; min-width: 0; text-align: left; }
    .section-center .section-title + .community-grid { margin-top: 12px; }
    .community-eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 8px;
    }
    .community-card h3 {
      font-family: Georgia, serif;
      font-size: 22px;
      margin-bottom: 8px;
      color: var(--ink);
    }
    .community-card p {
      font-size: 14px;
      line-height: 1.6;
      color: var(--ink-muted);
      margin-bottom: 14px;
    }
    .community-cta {
      font-size: 13px;
      font-weight: 600;
      color: var(--accent);
      font-family: ui-monospace, 'SF Mono', monospace;
      transition: gap 0.15s ease;
    }
    .community-card:hover .community-cta {
      letter-spacing: 0.02em;
    }
    @media (max-width: 768px) {
      .community-grid { grid-template-columns: 1fr; }
    }

    /* ---------- FINAL CTA ---------- */
    .final-cta {
      background:
        radial-gradient(ellipse at top, rgba(95, 168, 211, 0.18), transparent 60%),
        linear-gradient(135deg, var(--brand) 0%, var(--bg-elevated) 100%);
      border: 1px solid rgba(95, 168, 211, 0.2);
      border-radius: 28px;
      padding: 72px 48px;
      text-align: center;
      margin: 80px 0;
      position: relative;
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35),
                  0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    }
    .final-cta::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(244, 211, 94, 0.06) 0%, transparent 60%);
      pointer-events: none;
    }
    .final-cta > * { position: relative; z-index: 1; }
    .final-cta h2 {
      font-family: Georgia, serif;
      font-size: clamp(32px, 4.5vw, 44px);
      margin-bottom: 16px;
      letter-spacing: -0.015em;
      line-height: 1.15;
    }
    .final-cta p {
      color: var(--ink-muted);
      max-width: 540px;
      margin: 0 auto 36px;
      font-size: 17px;
    }
    .final-cta-btn {
      font-size: 16px !important;
      padding: 16px 36px !important;
    }
    .final-cta-form { margin: 0 auto; text-align: left; }
    .final-cta-form .form-row { justify-content: center; }
    .final-cta-form .form-consent { justify-content: center; }
    @media (max-width: 540px) {
      .final-cta { padding: 56px 24px; border-radius: 20px; }
    }


/* ---------- ÖRNEK RAPOR · CANLI ARŞİV CTA (eski body-içi <style>'dan taşındı) ---------- */
            .preview-archive-cta { display: flex; align-items: center; gap: 13px; margin-top: 26px; padding: 14px 18px; background: var(--bg-elevated); border: 1px solid rgba(244, 211, 94, .28); border-radius: 12px; text-decoration: none; transition: border-color .15s, transform .12s; }
            .preview-archive-cta:hover { border-color: var(--accent); transform: translateY(-1px); }
            .pac-live { flex-shrink: 0; font-size: 11px; font-weight: 700; letter-spacing: .1em; color: #15202B; background: var(--accent); padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
            .pac-msg { font-size: 14.5px; line-height: 1.5; color: var(--ink-muted); }
            .pac-msg strong { color: var(--ink); }
            .pac-go { color: var(--accent); font-weight: 600; white-space: nowrap; }

/* ---------- TIME-STRIP THUMB · eski inline style="left:37.5%" ---------- */
.time-strip-thumb--0900 { left: 37.5%; }
