/* =============================================================
   Pixa Theme — Main Stylesheet
   Extracted from HTML source files — do not add font @imports here
   Fonts are enqueued via functions.php
============================================================= */

/* ─────────────────────────────────────────────────────────
   BASE — Shared Variables, Nav, Footer, Hero, Stats, Features, Articles, Reviews, CTA
───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --white:    #FFFFFF;
      --off:      #F7F8FC;
      --gray-50:  #F0F2F8;
      --gray-100: #E4E7F0;
      --gray-200: #C9CEDC;
      --gray-400: #8892A4;
      --gray-600: #4E5870;
      --ink:      #0F1523;
      --blue:     #3D5AFE;
      --blue-d:   #2645FD;
      --blue-l:   #EEF1FF;
      --blue-m:   #C7D0FF;
      --green:    #16A34A;
      --green-l:  #DCFCE7;
      --amber:    #D97706;
      --amber-l:  #FEF3C7;
      --shadow-s: 0 1px 3px rgba(15,21,35,.06), 0 1px 2px rgba(15,21,35,.04);
      --shadow-m: 0 4px 16px rgba(15,21,35,.08), 0 1px 4px rgba(15,21,35,.04);
      --shadow-l: 0 12px 40px rgba(15,21,35,.10), 0 2px 8px rgba(15,21,35,.05);
      --shadow-xl:0 24px 64px rgba(15,21,35,.12), 0 4px 16px rgba(15,21,35,.06);
      --radius:   10px;
      --radius-l: 16px;
      --font-h:   'Bricolage Grotesque', sans-serif;
      --font-b:   'DM Sans', sans-serif;
      --max:      1200px;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--white);
      color: var(--ink);
      font-family: var(--font-b);
      font-size: 15px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--off); }
    ::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 4px; }

    .container {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 32px;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(255,255,255,.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--gray-100);
      height: 68px;
    }

    .nav-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 32px;
      height: 100%;
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 9px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .logo-icon {
      width: 34px; height: 34px;
      background: var(--blue);
      border-radius: 8px;
      display: grid;
      grid-template: repeat(3,8px) / repeat(3,8px);
      gap: 2.5px;
      padding: 6px;
    }

    .logo-icon span {
      background: rgba(255,255,255,.9);
      border-radius: 1.5px;
      display: block;
    }

    .logo-icon span:nth-child(5) { background: rgba(255,255,255,.35); }

    .logo-name {
      font-family: var(--font-h);
      font-size: 18px;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: -0.03em;
    }

    .logo-name span { color: var(--blue); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      list-style: none;
    }

    .nav-links a {
      display: block;
      padding: 7px 14px;
      font-size: 14px;
      font-weight: 400;
      color: var(--gray-600);
      text-decoration: none;
      border-radius: 7px;
      transition: color .15s, background .15s;
    }

    .nav-links a:hover { color: var(--ink); background: var(--off); }

    .nav-right {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-ghost {
      font-size: 14px;
      font-weight: 500;
      color: var(--gray-600);
      text-decoration: none;
      padding: 8px 16px;
      border-radius: 8px;
      transition: color .15s, background .15s;
    }

    .nav-ghost:hover { color: var(--ink); background: var(--off); }

    .nav-btn {
      background: var(--blue);
      color: #fff;
      font-family: var(--font-b);
      font-size: 14px;
      font-weight: 500;
      padding: 9px 20px;
      border-radius: 8px;
      text-decoration: none;
      transition: background .15s, transform .1s, box-shadow .15s;
      box-shadow: 0 2px 8px rgba(61,90,254,.25);
    }

    .nav-btn:hover {
      background: var(--blue-d);
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(61,90,254,.35);
    }

    /* ─── LANGUAGE SWITCHER (Polylang) ─── */
    .nav-lang {
      position: relative;
      display: inline-flex;
      align-items: center;
      padding-bottom: 8px;
      margin-bottom: -8px;
    }
    .nav-lang li {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    /* Aktif dil — her zaman görünür, dropdown tetikleyicisi */
    .nav-lang li.current-lang a {
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
      text-decoration: none;
      padding: 7px 10px 7px 12px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: background .15s;
    }
    /* Chevron oku */
    .nav-lang li.current-lang a::after {
      content: '';
      display: inline-block;
      width: 0; height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 4px solid currentColor;
      opacity: .5;
      transition: transform .2s;
      margin-top: 1px;
    }
    .nav-lang:hover li.current-lang a { background: var(--off); }
    .nav-lang:hover li.current-lang a::after { transform: rotate(180deg); }
    /* Diğer diller — dropdown */
    .nav-lang li:not(.current-lang) {
      position: absolute;
      top: calc(100% - 2px);
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 8px 24px rgba(0,0,0,.10), 0 1px 4px rgba(0,0,0,.06);
      min-width: 120px;
      padding: 6px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .15s, transform .15s;
    }
    .nav-lang:hover li:not(.current-lang) {
      opacity: 1;
      pointer-events: all;
      transform: translateX(-50%) translateY(0);
    }
    .nav-lang li:not(.current-lang) a {
      font-size: 14px;
      font-weight: 500;
      color: var(--gray-600);
      text-decoration: none;
      padding: 9px 14px;
      border-radius: 7px;
      display: block;
      transition: background .15s, color .15s;
    }
    .nav-lang li:not(.current-lang) a:hover { background: var(--off); color: var(--ink); }

    /* ─── HERO ─── */
    .hero {
      padding: 136px 0 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    /* subtle radial bg */
    .hero::before {
      content: '';
      position: absolute;
      top: -100px; left: 50%;
      transform: translateX(-50%);
      width: 900px; height: 700px;
      background: radial-gradient(ellipse at 50% 30%, rgba(61,90,254,.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--blue-l);
      color: var(--blue);
      border: 1px solid var(--blue-m);
      border-radius: 100px;
      padding: 5px 14px 5px 8px;
      font-size: 13px;
      font-weight: 500;
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp .5s .1s ease forwards;
    }

    .badge-dot {
      width: 6px; height: 6px;
      background: var(--blue);
      border-radius: 50%;
      box-shadow: 0 0 0 3px rgba(61,90,254,.2);
    }

    .hero h1 {
      font-family: var(--font-h);
      font-size: clamp(44px, 5.5vw, 76px);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.03em;
      color: var(--ink);
      max-width: 760px;
      margin: 0 auto 24px;
      opacity: 0;
      animation: fadeUp .6s .2s ease forwards;
    }

    .hero h1 span { color: var(--blue); }

    .hero-sub {
      font-size: 17px;
      color: var(--gray-600);
      max-width: 520px;
      margin: 0 auto 40px;
      line-height: 1.7;
      font-weight: 400;
      opacity: 0;
      animation: fadeUp .6s .33s ease forwards;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 64px;
      opacity: 0;
      animation: fadeUp .5s .45s ease forwards;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--blue);
      color: #fff;
      font-family: var(--font-b);
      font-size: 15px;
      font-weight: 500;
      padding: 13px 28px;
      border-radius: 10px;
      text-decoration: none;
      transition: background .15s, transform .1s, box-shadow .15s;
      box-shadow: 0 4px 16px rgba(61,90,254,.3);
    }

    .btn-primary:hover {
      background: var(--blue-d);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(61,90,254,.4);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      color: var(--ink);
      font-family: var(--font-b);
      font-size: 15px;
      font-weight: 500;
      padding: 13px 28px;
      border-radius: 10px;
      text-decoration: none;
      border: 1px solid var(--gray-100);
      box-shadow: var(--shadow-s);
      transition: border-color .15s, transform .1s, box-shadow .15s;
    }

    .btn-secondary:hover {
      border-color: var(--gray-200);
      transform: translateY(-1px);
      box-shadow: var(--shadow-m);
    }


    /* ─── STATS BAND ─── */
    .stats-band {
      border-top: 1px solid var(--gray-100);
      border-bottom: 1px solid var(--gray-100);
      background: var(--off);
      padding: 0;
    }

    .stats-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 32px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .stat {
      padding: 36px 24px;
      text-align: center;
      border-right: 1px solid var(--gray-100);
    }

    .stat:last-child { border-right: none; }

    .stat-n {
      font-family: var(--font-h);
      font-size: 36px;
      font-weight: 800;
      color: var(--ink);
      letter-spacing: -0.03em;
      line-height: 1;
    }

    .stat-n em { color: var(--blue); font-style: normal; }

    .stat-l {
      font-size: 13px;
      color: var(--gray-400);
      margin-top: 6px;
    }

    /* ─── BRANDS BAND ─── */
    .brands-band {
      border-top: 1px solid var(--gray-100);
      border-bottom: 1px solid var(--gray-100);
      background: var(--off);
      padding: 0;
    }

    .brands-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 32px;
      display: grid;
      grid-template-columns: auto repeat(4, 1fr);
      align-items: center;
    }

    .brands-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--gray-400);
      white-space: nowrap;
      padding: 28px 28px 28px 0;
      border-right: 1px solid var(--gray-100);
    }

    .brand-item {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 26px 20px;
      border-right: 1px solid var(--gray-100);
      color: var(--gray-300);
      transition: color .2s;
    }

    .brand-item:last-child { border-right: none; }
    .brand-item:hover { color: var(--ink); }

    .brand-logo {
      height: 32px;
      width: auto;
      display: block;
      flex-shrink: 0;
      transition: color .2s;
    }

    /* ─── SHARED ─── */
    .section-kicker {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 14px;
    }

    .section-title {
      font-family: var(--font-h);
      font-size: clamp(32px, 3.5vw, 48px);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
      color: var(--ink);
    }

    .section-sub {
      font-size: 16px;
      color: var(--gray-600);
      margin-top: 14px;
      max-width: 480px;
      line-height: 1.65;
    }

    /* ─── THEME SPOTLIGHT ─── */
    .spotlight-section {
      padding: 100px 0;
      border-bottom: 1px solid var(--gray-100);
    }

    .spotlight-inner {
      display: grid;
      grid-template-columns: 1fr 480px;
      gap: 72px;
      align-items: center;
    }

    /* mockup */
    .spotlight-mockup {
      position: relative;
      border-radius: var(--radius-l);
      overflow: hidden;
      border: 1px solid var(--gray-100);
      box-shadow: var(--shadow-xl);
      background: linear-gradient(145deg, #0D1B2E 0%, #1A3358 100%);
      aspect-ratio: 16/10;
    }
    .sm-screenshot {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }
    .sm-screenshot img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      display: block;
    }
    a.spotlight-mockup {
      display: block;
      text-decoration: none;
      cursor: pointer;
    }
    a.spotlight-mockup:hover { opacity: .92; transition: opacity .2s; }
    .spotlight-name a {
      color: inherit;
      text-decoration: none;
    }
    .spotlight-name a:hover { text-decoration: underline; text-underline-offset: 3px; }
    .btn-ghost-sm {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 13px;
      font-weight: 500;
      color: var(--gray-500);
      text-decoration: none;
      padding: 7px 14px;
      border-radius: 8px;
      border: 1px solid var(--gray-200);
      transition: color .15s, border-color .15s, background .15s;
    }
    .btn-ghost-sm:hover { color: var(--ink); border-color: var(--gray-400); background: var(--off); }

    .sm-browser {
      position: absolute; top: 0; left: 0; right: 0;
      background: rgba(0,0,0,.25);
      padding: 12px 16px;
      display: flex; align-items: center; gap: 8px;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .sm-dots { display: flex; gap: 5px; }
    .sm-dot  { width: 9px; height: 9px; border-radius: 50%; }
    .sm-dot-r { background: #FF5F57; }
    .sm-dot-y { background: #FFBD2E; }
    .sm-dot-g { background: #27C840; }
    .sm-url {
      flex: 1; height: 20px; max-width: 200px; margin: 0 auto;
      background: rgba(255,255,255,.07);
      border-radius: 4px;
    }

    .sm-body {
      position: absolute;
      inset: 48px 24px 24px;
      display: flex; flex-direction: column; gap: 10px;
    }

    .sm-bar { height: 6px; border-radius: 3px; background: rgba(255,255,255,.55); }
    .sm-bar.accent { background: var(--blue); width: 45%; }
    .sm-bar.w-full  { width: 100%; }
    .sm-bar.w-3q    { width: 75%; }
    .sm-bar.w-half  { width: 50%; opacity: .6; }
    .sm-bar.thin    { height: 4px; opacity: .4; }
    .sm-btn { width: 80px; height: 22px; border-radius: 5px; background: var(--blue); margin-top: 4px; }
    .sm-img-row { display: flex; gap: 10px; flex: 1; margin-top: 6px; }
    .sm-img { flex: 1; background: rgba(255,255,255,.07); border-radius: 6px; }

    .spotlight-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--blue-l);
      color: var(--blue);
      border: 1px solid var(--blue-m);
      border-radius: 100px;
      padding: 4px 12px;
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .spotlight-name {
      font-family: var(--font-h);
      font-size: clamp(36px, 4vw, 52px);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.05;
      color: var(--ink);
      margin-bottom: 16px;
    }

    .spotlight-desc {
      font-size: 15px;
      color: var(--gray-600);
      line-height: 1.75;
      margin-bottom: 28px;
    }

    .spotlight-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 32px;
    }

    .sp-tag {
      font-size: 12px;
      color: var(--gray-600);
      background: var(--gray-50);
      border: 1px solid var(--gray-100);
      padding: 5px 12px;
      border-radius: 7px;
    }

    .spotlight-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .spotlight-actions .btn-ghost-sm {
      font-size: 15px;
      font-weight: 500;
      padding: 13px 28px;
      gap: 8px;
      border-radius: 10px;
    }

    @media (max-width: 900px) {
      .spotlight-inner { grid-template-columns: 1fr; gap: 40px; }
    }

    /* ─── FEATURES ─── */
    .features-section {
      padding: 100px 0;
      background: var(--off);
      border-top: 1px solid var(--gray-100);
      border-bottom: 1px solid var(--gray-100);
    }

    .features-head {
      text-align: center;
      margin-bottom: 56px;
    }

    .features-head .section-sub {
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .feat-card {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius-l);
      padding: 32px 28px;
      box-shadow: var(--shadow-s);
      transition: transform .25s, box-shadow .25s;
    }

    .feat-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-m);
    }

    .feat-icon {
      width: 48px; height: 48px;
      background: var(--blue-l);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--blue);
    }

    .feat-title {
      font-family: var(--font-h);
      font-size: 18px;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }

    .feat-body {
      font-size: 14px;
      color: var(--gray-600);
      line-height: 1.7;
    }

    /* ─── FREE vs PREMIUM ─── */
    /* ─── ARTICLES ─── */
    .articles-section {
      padding: 100px 0;
    }

    .articles-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 32px;
      margin-bottom: 48px;
    }

    .articles-head-link {
      font-size: 14px;
      font-weight: 500;
      color: var(--blue);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      flex-shrink: 0;
      transition: gap .15s;
    }

    .articles-head-link:hover { gap: 10px; }

    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .article-card {
      border-radius: var(--radius-l);
      border: 1px solid var(--gray-100);
      background: var(--white);
      overflow: hidden;
      box-shadow: var(--shadow-s);
      transition: transform .25s, box-shadow .25s;
      display: flex;
      flex-direction: column;
    }

    .article-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-l);
    }

    .article-cover {
      height: 180px;
      position: relative;
      overflow: hidden;
    }

    .ac-bg {
      position: absolute; inset: 0;
      transition: transform .4s cubic-bezier(.4,0,.2,1);
    }

    .article-card:hover .ac-bg { transform: scale(1.04); }

    .ac-1 { background: linear-gradient(135deg, #EEF1FF 0%, #C7D0FF 100%); }
    .ac-2 { background: linear-gradient(135deg, #DCFCE7 0%, #A7F3D0 100%); }
    .ac-3 { background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%); }

    .ac-cover-icon {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ac-1 .ac-cover-icon { color: var(--blue); }
    .ac-2 .ac-cover-icon { color: var(--green); }
    .ac-3 .ac-cover-icon { color: var(--amber); }

    .article-body {
      padding: 24px 24px 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .article-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }

    .article-cat {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--blue);
    }

    .article-date {
      font-size: 12px;
      color: var(--gray-400);
    }

    .article-title {
      font-family: var(--font-h);
      font-size: 17px;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: -0.02em;
      line-height: 1.3;
      margin-bottom: 10px;
      text-decoration: none;
      display: block;
      transition: color .15s;
    }

    .article-title:hover { color: var(--blue); }

    .article-excerpt {
      font-size: 13px;
      color: var(--gray-600);
      line-height: 1.7;
      flex: 1;
    }

    .article-footer {
      padding: 14px 24px;
      border-top: 1px solid var(--gray-100);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .article-author {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: var(--gray-600);
    }

    .author-avatar {
      width: 26px; height: 26px;
      border-radius: 50%;
      background: var(--blue-l);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 700;
      color: var(--blue);
    }

    .article-read {
      font-size: 12px;
      color: var(--gray-400);
    }

    @media (max-width: 768px) {
      .articles-grid { grid-template-columns: 1fr; }
      .articles-head { flex-direction: column; align-items: flex-start; gap: 16px; }
    }

    /* ─── TESTIMONIALS ─── */
    .reviews-section {
      padding: 100px 0;
      background: var(--off);
      border-top: 1px solid var(--gray-100);
      border-bottom: 1px solid var(--gray-100);
    }

    .reviews-head {
      text-align: center;
      margin-bottom: 56px;
    }

    .reviews-stars {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      margin-bottom: 16px;
    }

    .star { color: #F59E0B; font-size: 20px; }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .review-card {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius-l);
      padding: 28px 24px;
      box-shadow: var(--shadow-s);
    }

    .review-quote {
      font-size: 14px;
      color: var(--gray-600);
      line-height: 1.75;
      margin-bottom: 20px;
      font-style: italic;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .review-avatar {
      width: 38px; height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
    }

    .av-blue  { background: linear-gradient(135deg, #3D5AFE, #6D8EFF); }
    .av-green { background: linear-gradient(135deg, #16A34A, #4ADE80); }
    .av-amber { background: linear-gradient(135deg, #D97706, #FBBF24); }

    .review-name {
      font-weight: 600;
      font-size: 14px;
      color: var(--ink);
    }

    .review-role {
      font-size: 12px;
      color: var(--gray-400);
      margin-top: 1px;
    }

    .review-stars {
      display: flex;
      gap: 2px;
      margin-bottom: 14px;
    }

    .review-star { color: #F59E0B; font-size: 13px; }

    /* ─── CTA ─── */
    .cta-section {
      padding: 100px 0;
    }

    .cta-box {
      background: linear-gradient(135deg, var(--blue) 0%, #5C6EFF 100%);
      border-radius: 24px;
      padding: 72px 64px;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 16px 60px rgba(61,90,254,.3);
    }

    .cta-box::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-box::after {
      content: '';
      position: absolute;
      bottom: -60px; left: -60px;
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-kicker {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.7);
      margin-bottom: 16px;
    }

    .cta-h {
      font-family: var(--font-h);
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.03em;
      line-height: 1.1;
      max-width: 600px;
      margin: 0 auto 20px;
    }

    .cta-p {
      font-size: 16px;
      color: rgba(255,255,255,.75);
      max-width: 460px;
      margin: 0 auto 40px;
      line-height: 1.65;
    }

    .cta-form {
      display: flex;
      max-width: 460px;
      margin: 0 auto;
      gap: 0;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0,0,0,.2);
    }

    .cta-input {
      flex: 1;
      background: rgba(255,255,255,.15);
      border: 1px solid rgba(255,255,255,.25);
      border-right: none;
      border-radius: 10px 0 0 10px;
      padding: 13px 18px;
      color: #fff;
      font-family: var(--font-b);
      font-size: 14px;
      outline: none;
      transition: background .15s;
    }

    .cta-input::placeholder { color: rgba(255,255,255,.55); }
    .cta-input:focus { background: rgba(255,255,255,.2); }

    .cta-submit {
      background: #fff;
      color: var(--blue);
      border: none;
      padding: 13px 24px;
      border-radius: 0 10px 10px 0;
      font-family: var(--font-b);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: background .15s;
      white-space: nowrap;
    }

    .cta-submit:hover { background: var(--blue-l); }

    .cta-note {
      font-size: 12px;
      color: rgba(255,255,255,.5);
      margin-top: 14px;
    }

    #cta-ok {
      font-size: 13px;
      color: rgba(255,255,255,.8);
      margin-top: 12px;
      opacity: 0;
      transition: opacity .3s;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--ink);
      color: rgba(255,255,255,.85);
    }

    .footer-main {
      max-width: var(--max);
      margin: 0 auto;
      padding: 64px 32px 48px;
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1fr;
      gap: 60px;
    }

    .footer-logo-row {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 16px;
    }

    .footer-logo-icon {
      width: 30px; height: 30px;
      background: var(--blue);
      border-radius: 7px;
      display: grid;
      grid-template: repeat(3,6px) / repeat(3,6px);
      gap: 2px;
      padding: 5px;
    }

    .footer-logo-icon span {
      display: block;
      background: rgba(255,255,255,.9);
      border-radius: 1px;
    }

    .footer-logo-icon span:nth-child(5) { background: rgba(255,255,255,.25); }

    .footer-logo-name {
      font-family: var(--font-h);
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.02em;
    }

    .footer-logo-name span { color: var(--blue); }

    .footer-desc {
      font-size: 13px;
      color: rgba(255,255,255,.45);
      line-height: 1.75;
      max-width: 240px;
    }

    .footer-col-h {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.35);
      margin-bottom: 18px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      font-size: 14px;
      color: rgba(255,255,255,.55);
      text-decoration: none;
      transition: color .15s;
    }

    .footer-links a:hover { color: rgba(255,255,255,.9); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.06);
    }

    .footer-bottom-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 20px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-size: 13px;
      color: rgba(255,255,255,.3);
    }

    .footer-bottom-inner a {
      color: rgba(255,255,255,.3);
      text-decoration: none;
      transition: color .15s;
    }

    .footer-bottom-inner a:hover { color: rgba(255,255,255,.7); }

    /* ─── REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .reveal.in {
      opacity: 1;
      transform: none;
    }

    .d1 { transition-delay: .08s; }
    .d2 { transition-delay: .16s; }
    .d3 { transition-delay: .24s; }
    .d4 { transition-delay: .32s; }

    /* ─── KEYFRAMES ─── */
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .themes-grid { grid-template-columns: repeat(2, 1fr); }
      .theme-card.featured { grid-column: span 1; }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
    }

    @media (max-width: 768px) {
      .container { padding: 0 20px; }
      .nav-inner { padding: 0 20px; gap: 16px; }
      .nav-links { display: none; }
      .nav-ghost { display: none; }
      .hero { padding: 100px 0 0; }
      .hero h1 { font-size: 38px; }
      .hero-sub { font-size: 15px; }
      .hero-themes-row { grid-template-columns: 1fr; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .stat:nth-child(even) { border-right: none; }
      .stat:nth-child(3) { border-top: 1px solid var(--gray-100); }
      .stat:nth-child(4) { border-top: 1px solid var(--gray-100); }
      .brands-inner { grid-template-columns: repeat(2, 1fr); }
      .brands-label { display: none; }
      .brand-item:nth-child(odd) { border-right: none; }
      .brand-item:nth-child(n+4) { border-top: 1px solid var(--gray-100); }
      .spotlight-section, .features-section, .articles-section, .reviews-section, .cta-section { padding: 70px 0; }
      .themes-head { flex-direction: column; align-items: flex-start; gap: 20px; }
      .themes-grid { grid-template-columns: 1fr; }
      .features-grid { grid-template-columns: 1fr; }
      .fvp-grid { grid-template-columns: 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }
      .cta-box { padding: 48px 24px; }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 20px; }
      .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
    }

/* ─────────────────────────────────────────────────────────
   BLOG LISTING — Category Filter, Post Grid, Sidebar
───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --white:    #FFFFFF;
      --off:      #F7F8FC;
      --gray-50:  #F0F2F8;
      --gray-100: #E4E7F0;
      --gray-200: #C9CEDC;
      --gray-400: #8892A4;
      --gray-600: #4E5870;
      --ink:      #0F1523;
      --blue:     #3D5AFE;
      --blue-d:   #2645FD;
      --blue-l:   #EEF1FF;
      --blue-m:   #C7D0FF;
      --green:    #16A34A;
      --green-l:  #DCFCE7;
      --amber:    #D97706;
      --amber-l:  #FEF3C7;
      --rose:     #E11D48;
      --rose-l:   #FFE4E6;
      --violet:   #7C3AED;
      --violet-l: #EDE9FE;
      --teal:     #0D9488;
      --teal-l:   #CCFBF1;
      --shadow-s: 0 1px 3px rgba(15,21,35,.06), 0 1px 2px rgba(15,21,35,.04);
      --shadow-m: 0 4px 16px rgba(15,21,35,.08), 0 1px 4px rgba(15,21,35,.04);
      --shadow-l: 0 12px 40px rgba(15,21,35,.10), 0 2px 8px rgba(15,21,35,.05);
      --shadow-xl:0 24px 64px rgba(15,21,35,.12), 0 4px 16px rgba(15,21,35,.06);
      --radius:   10px;
      --radius-l: 16px;
      --font-h:   'Bricolage Grotesque', sans-serif;
      --font-b:   'DM Sans', sans-serif;
      --max:      1200px;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--white);
      color: var(--ink);
      font-family: var(--font-b);
      font-size: 15px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--off); }
    ::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 4px; }

    .container {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 32px;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(255,255,255,.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--gray-100);
      height: 68px;
    }

    .nav-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 32px;
      height: 100%;
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 9px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .logo-icon {
      width: 34px; height: 34px;
      background: var(--blue);
      border-radius: 8px;
      display: grid;
      grid-template: repeat(3,8px) / repeat(3,8px);
      gap: 2.5px;
      padding: 6px;
    }

    .logo-icon span {
      background: rgba(255,255,255,.9);
      border-radius: 1.5px;
      display: block;
    }

    .logo-icon span:nth-child(5) { background: rgba(255,255,255,.35); }

    .logo-name {
      font-family: var(--font-h);
      font-size: 18px;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: -0.03em;
    }

    .logo-name span { color: var(--blue); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      list-style: none;
    }

    .nav-links a {
      display: block;
      padding: 7px 14px;
      font-size: 14px;
      font-weight: 400;
      color: var(--gray-600);
      text-decoration: none;
      border-radius: 7px;
      transition: color .15s, background .15s;
    }

    .nav-links a:hover,
    .nav-links a.active { color: var(--ink); background: var(--off); }
    .nav-links a.active { font-weight: 500; }

    .nav-right {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-ghost {
      font-size: 14px;
      font-weight: 500;
      color: var(--gray-600);
      text-decoration: none;
      padding: 8px 16px;
      border-radius: 8px;
      transition: color .15s, background .15s;
    }

    .nav-ghost:hover { color: var(--ink); background: var(--off); }

    .nav-btn {
      background: var(--blue);
      color: #fff;
      font-family: var(--font-b);
      font-size: 14px;
      font-weight: 500;
      padding: 9px 20px;
      border-radius: 8px;
      text-decoration: none;
      transition: background .15s, transform .1s, box-shadow .15s;
      box-shadow: 0 2px 8px rgba(61,90,254,.25);
    }

    .nav-btn:hover {
      background: var(--blue-d);
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(61,90,254,.35);
    }

    /* ─── PAGE HEADER ─── */
    .page-header {
      padding: 104px 0 56px;
      background: var(--white);
      border-bottom: 1px solid var(--gray-100);
      position: relative;
      overflow: hidden;
    }

    .page-header::before {
      content: '';
      position: absolute;
      top: 0; left: 50%;
      transform: translateX(-50%);
      width: 800px; height: 400px;
      background: radial-gradient(ellipse at 50% 0%, rgba(61,90,254,.05) 0%, transparent 70%);
      pointer-events: none;
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--gray-400);
      margin-bottom: 20px;
    }

    .breadcrumb a {
      color: var(--gray-400);
      text-decoration: none;
      transition: color .15s;
    }

    .breadcrumb a:hover { color: var(--blue); }

    .breadcrumb svg { flex-shrink: 0; }

    .page-header-content {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 32px;
    }

    .page-header-left h1 {
      font-family: var(--font-h);
      font-size: clamp(36px, 4vw, 52px);
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--ink);
      line-height: 1.08;
      margin-bottom: 12px;
    }

    .page-header-left p {
      font-size: 16px;
      color: var(--gray-600);
      max-width: 460px;
      line-height: 1.65;
    }

    .page-header-meta {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-shrink: 0;
    }

    .ph-stat {
      text-align: right;
    }

    .ph-stat-n {
      font-family: var(--font-h);
      font-size: 26px;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: -0.02em;
      line-height: 1;
    }

    .ph-stat-l {
      font-size: 12px;
      color: var(--gray-400);
      margin-top: 3px;
    }

    .ph-divider {
      width: 1px;
      height: 36px;
      background: var(--gray-100);
    }

    /* ─── CATEGORY FILTER ─── */
    .cat-filter-wrap {
      background: var(--white);
      border-bottom: 1px solid var(--gray-100);
      position: sticky;
      top: 68px;
      z-index: 50;
    }

    .cat-filter {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 32px;
      display: flex;
      align-items: center;
      gap: 4px;
      overflow-x: auto;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .cat-filter::-webkit-scrollbar { display: none; }

    .cat-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 16px;
      font-family: var(--font-b);
      font-size: 13.5px;
      font-weight: 500;
      color: var(--gray-600);
      background: none;
      border: none;
      cursor: pointer;
      border-bottom: 2px solid transparent;
      white-space: nowrap;
      transition: color .15s, border-color .15s;
      margin-bottom: -1px;
    }

    .cat-btn:hover { color: var(--ink); }

    .cat-btn.active {
      color: var(--blue);
      border-bottom-color: var(--blue);
    }

    .cat-count {
      background: var(--gray-50);
      color: var(--gray-400);
      font-size: 11px;
      font-weight: 600;
      padding: 1px 6px;
      border-radius: 10px;
      line-height: 1.6;
    }

    .cat-btn.active .cat-count {
      background: var(--blue-l);
      color: var(--blue);
    }

    /* ─── BLOG LAYOUT ─── */
    .blog-layout {
      padding: 56px 0 100px;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 48px;
      align-items: start;
    }

    /* ─── FEATURED POST ─── */
    .featured-post {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-radius: var(--radius-l);
      overflow: hidden;
      border: 1px solid var(--gray-100);
      box-shadow: var(--shadow-m);
      margin-bottom: 40px;
      transition: box-shadow .25s, transform .25s;
    }

    .featured-post:hover {
      box-shadow: var(--shadow-l);
      transform: translateY(-2px);
    }

    .featured-cover {
      position: relative;
      min-height: 320px;
      background: linear-gradient(135deg, #1e1b4b 0%, #3730a3 40%, #4f46e5 70%, #6366f1 100%);
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      padding: 28px;
    }

    .featured-cover::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 20% 80%, rgba(99,102,241,.6) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(139,92,246,.4) 0%, transparent 50%);
    }

    .featured-cover-inner {
      position: relative;
      z-index: 1;
    }

    .featured-cover-tag {
      display: inline-block;
      background: rgba(255,255,255,.15);
      backdrop-filter: blur(8px);
      color: #fff;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 6px;
      border: 1px solid rgba(255,255,255,.2);
    }

    .featured-cover-tag + .featured-cover-label {
      margin-top: 10px;
    }

    .featured-cover-label {
      font-family: var(--font-h);
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      line-height: 1.25;
      letter-spacing: -0.02em;
      display: block;
      margin-top: 10px;
    }

    .feat-deco {
      position: absolute;
      top: 24px; right: 24px;
      width: 80px; height: 80px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.15);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .feat-deco::after {
      content: '';
      width: 50px; height: 50px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.1);
    }

    .featured-body {
      padding: 36px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .featured-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: var(--violet-l);
      color: var(--violet);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 6px;
      margin-bottom: 16px;
      align-self: flex-start;
    }

    .featured-title {
      font-family: var(--font-h);
      font-size: 24px;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.25;
      letter-spacing: -0.02em;
      margin-bottom: 14px;
      text-decoration: none;
      display: block;
      transition: color .15s;
    }

    .featured-title:hover { color: var(--blue); }

    .featured-excerpt {
      font-size: 14.5px;
      color: var(--gray-600);
      line-height: 1.7;
      margin-bottom: 28px;
    }

    .featured-meta {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .feat-author {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--gray-600);
    }

    .feat-avatar {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--violet-l);
      color: var(--violet);
      font-size: 11px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .feat-author-name {
      font-weight: 500;
      color: var(--ink);
    }

    .feat-dot {
      width: 3px; height: 3px;
      background: var(--gray-200);
      border-radius: 50%;
    }

    .feat-date, .feat-read {
      font-size: 13px;
      color: var(--gray-400);
    }

    /* ─── SORT ROW ─── */
    .posts-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
    }

    .posts-count {
      font-size: 14px;
      color: var(--gray-400);
    }

    .posts-count strong {
      color: var(--ink);
      font-weight: 600;
    }

    .sort-select {
      font-family: var(--font-b);
      font-size: 13.5px;
      color: var(--ink);
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: 8px;
      padding: 7px 32px 7px 12px;
      appearance: none;
      -webkit-appearance: none;
      cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' fill='none' stroke='%238892A4' stroke-width='1.5' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 10px center;
      outline: none;
      transition: border-color .15s;
    }

    .sort-select:focus { border-color: var(--blue); }

    /* ─── POSTS GRID ─── */
    .posts-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .post-card {
      border: 1px solid var(--gray-100);
      border-radius: var(--radius-l);
      overflow: hidden;
      background: var(--white);
      box-shadow: var(--shadow-s);
      transition: box-shadow .25s, transform .25s, border-color .25s;
      display: flex;
      flex-direction: column;
    }

    .post-card:hover {
      box-shadow: var(--shadow-l);
      transform: translateY(-3px);
      border-color: var(--gray-200);
    }

    .post-cover {
      height: 168px;
      position: relative;
      overflow: hidden;
    }

    /* Cover color themes */
    .pc-blue   { background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%); }
    .pc-green  { background: linear-gradient(135deg, #14532d 0%, #22c55e 100%); }
    .pc-amber  { background: linear-gradient(135deg, #78350f 0%, #f59e0b 100%); }
    .pc-rose   { background: linear-gradient(135deg, #881337 0%, #f43f5e 100%); }
    .pc-violet { background: linear-gradient(135deg, #4c1d95 0%, #8b5cf6 100%); }
    .pc-teal   { background: linear-gradient(135deg, #134e4a 0%, #2dd4bf 100%); }

    .post-cover::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 30% 70%, rgba(255,255,255,.12) 0%, transparent 60%);
    }

    .post-cover-icon {
      position: absolute;
      bottom: 16px; left: 16px;
      width: 40px; height: 40px;
      background: rgba(255,255,255,.15);
      backdrop-filter: blur(8px);
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,.9);
    }

    .post-cover-reading {
      position: absolute;
      top: 14px; right: 14px;
      background: rgba(0,0,0,.3);
      backdrop-filter: blur(8px);
      color: rgba(255,255,255,.9);
      font-size: 11px;
      font-weight: 500;
      padding: 3px 8px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .post-body {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .post-meta-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
    }

    .post-cat {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 2px 8px;
      border-radius: 5px;
    }

    .cat-wp    { background: var(--blue-l);   color: var(--blue); }
    .cat-perf  { background: var(--amber-l);  color: var(--amber); }
    .cat-design{ background: var(--violet-l); color: var(--violet); }
    .cat-news  { background: var(--green-l);  color: var(--green); }
    .cat-guide { background: var(--teal-l);   color: var(--teal); }
    .cat-review{ background: var(--rose-l);   color: var(--rose); }

    .post-date {
      font-size: 12px;
      color: var(--gray-400);
      margin-left: auto;
    }

    .post-title {
      font-family: var(--font-h);
      font-size: 16px;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.35;
      letter-spacing: -0.01em;
      text-decoration: none;
      display: block;
      margin-bottom: 10px;
      transition: color .15s;
    }

    .post-title:hover { color: var(--blue); }

    .post-excerpt {
      font-size: 13.5px;
      color: var(--gray-600);
      line-height: 1.65;
      flex: 1;
      margin-bottom: 18px;
    }

    .post-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 14px;
      border-top: 1px solid var(--gray-50);
    }

    .post-author {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 12.5px;
      color: var(--gray-600);
    }

    .pa-avatar {
      width: 26px; height: 26px;
      border-radius: 50%;
      font-size: 9px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .av-b { background: var(--blue-l);   color: var(--blue); }
    .av-g { background: var(--green-l);  color: var(--green); }
    .av-a { background: var(--amber-l);  color: var(--amber); }
    .av-v { background: var(--violet-l); color: var(--violet); }

    .post-read-btn {
      font-size: 12px;
      font-weight: 500;
      color: var(--blue);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 4px;
      transition: gap .15s;
    }

    .post-read-btn:hover { gap: 7px; }

    /* ─── PAGINATION ─── */
    .pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin-top: 48px;
    }

    .page-btn {
      width: 38px; height: 38px;
      border-radius: 9px;
      border: 1px solid var(--gray-100);
      background: var(--white);
      font-family: var(--font-b);
      font-size: 14px;
      font-weight: 500;
      color: var(--gray-600);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color .15s, color .15s, background .15s;
      text-decoration: none;
    }

    .page-btn:hover {
      border-color: var(--blue);
      color: var(--blue);
    }

    .page-btn.active {
      background: var(--blue);
      border-color: var(--blue);
      color: #fff;
      box-shadow: 0 2px 8px rgba(61,90,254,.3);
    }

    .page-btn.arrow {
      color: var(--gray-400);
    }

    .page-btn.arrow:hover {
      color: var(--blue);
      border-color: var(--blue);
    }

    .page-dots {
      width: 38px;
      text-align: center;
      color: var(--gray-400);
      font-size: 14px;
      user-select: none;
    }

    /* ─── NO RESULTS ─── */
    .no-results {
      padding: 64px 32px;
      text-align: center;
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius-l);
      box-shadow: var(--shadow-s);
    }

    .no-results-icon {
      width: 80px; height: 80px;
      border-radius: 50%;
      background: var(--gray-50);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      color: var(--gray-300);
    }

    .no-results-title {
      font-family: var(--font-h);
      font-size: 22px;
      font-weight: 700;
      color: var(--ink);
      margin: 0 0 12px;
    }

    .no-results-text {
      font-size: 15px;
      color: var(--gray-500);
      margin: 0 auto 28px;
      max-width: 420px;
      line-height: 1.6;
    }

    .no-results-form {
      max-width: 440px;
      margin: 0 auto;
    }

    /* ─── SIDEBAR ─── */
    .sidebar {
      display: flex;
      flex-direction: column;
      gap: 28px;
      position: sticky;
      top: calc(68px + 45px + 24px);
    }

    .sidebar-block {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius-l);
      padding: 22px;
      box-shadow: var(--shadow-s);
    }

    .sidebar-block-h {
      font-family: var(--font-h);
      font-size: 14px;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: -0.01em;
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--gray-50);
    }

    /* Search */
    .sb-search {
      display: flex;
      align-items: center;
      gap: 0;
      border: 1px solid var(--gray-100);
      border-radius: var(--radius);
      overflow: hidden;
      transition: border-color .15s, box-shadow .15s;
    }

    .sb-search:focus-within {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(61,90,254,.1);
    }

    .sb-search-icon {
      padding: 0 12px;
      color: var(--gray-400);
      display: flex;
      align-items: center;
    }

    .sb-input {
      flex: 1;
      border: none;
      outline: none;
      font-family: var(--font-b);
      font-size: 14px;
      color: var(--ink);
      padding: 10px 0;
      background: none;
    }

    .sb-input::placeholder { color: var(--gray-400); }

    .sb-search-btn {
      background: var(--blue);
      border: none;
      padding: 10px 14px;
      cursor: pointer;
      color: #fff;
      display: flex;
      align-items: center;
      align-self: stretch;
      transition: background .15s;
    }

    .sb-search-btn:hover { background: var(--blue-d); }

    /* Categories */
    .sb-cats {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .sb-cat-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 10px;
      border-radius: 8px;
      text-decoration: none;
      transition: background .15s;
      cursor: pointer;
    }

    .sb-cat-item:hover { background: var(--off); }

    .sb-cat-item.active { background: var(--blue-l); }

    .sb-cat-left {
      display: flex;
      align-items: center;
      gap: 9px;
    }

    .sb-cat-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .sb-cat-name {
      font-size: 13.5px;
      color: var(--ink);
      font-weight: 400;
    }

    .sb-cat-item.active .sb-cat-name { color: var(--blue); font-weight: 500; }

    .sb-cat-num {
      font-size: 12px;
      color: var(--gray-400);
      font-weight: 500;
    }

    .sb-cat-item.active .sb-cat-num { color: var(--blue); }

    /* Popular posts */
    .sb-popular {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .sb-pop-item {
      display: flex;
      gap: 12px;
      text-decoration: none;
    }

    .sb-pop-thumb {
      width: 52px;
      height: 52px;
      border-radius: 9px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .sb-pop-body { flex: 1; }

    .sb-pop-title {
      font-size: 13px;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.4;
      display: block;
      margin-bottom: 4px;
      transition: color .15s;
    }

    .sb-pop-item:hover .sb-pop-title { color: var(--blue); }

    .sb-pop-meta {
      font-size: 11.5px;
      color: var(--gray-400);
    }

    /* Tags */
    .sb-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
    }

    .sb-tag {
      display: inline-block;
      padding: 4px 11px;
      border-radius: 6px;
      background: var(--gray-50);
      color: var(--gray-600);
      font-size: 12.5px;
      font-weight: 500;
      text-decoration: none;
      transition: background .15s, color .15s;
    }

    .sb-tag:hover {
      background: var(--blue-l);
      color: var(--blue);
    }

    /* Newsletter sidebar */
    .sb-newsletter {
      background: linear-gradient(135deg, var(--blue) 0%, #5C6EFF 100%);
      border: none;
      border-radius: var(--radius-l);
      padding: 24px;
      position: relative;
      overflow: hidden;
    }

    .sb-newsletter::before {
      content: '';
      position: absolute;
      top: -40px; right: -40px;
      width: 160px; height: 160px;
      background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
    }

    .sb-nl-h {
      font-family: var(--font-h);
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.02em;
      margin-bottom: 8px;
      position: relative;
    }

    .sb-nl-p {
      font-size: 13px;
      color: rgba(255,255,255,.75);
      line-height: 1.6;
      margin-bottom: 16px;
      position: relative;
    }

    .sb-nl-input {
      width: 100%;
      background: rgba(255,255,255,.15);
      border: 1px solid rgba(255,255,255,.25);
      border-radius: 8px;
      padding: 10px 14px;
      color: #fff;
      font-family: var(--font-b);
      font-size: 13.5px;
      outline: none;
      margin-bottom: 8px;
      position: relative;
      transition: background .15s;
    }

    .sb-nl-input::placeholder { color: rgba(255,255,255,.5); }
    .sb-nl-input:focus { background: rgba(255,255,255,.2); }

    .sb-nl-btn {
      width: 100%;
      background: #fff;
      color: var(--blue);
      border: none;
      border-radius: 8px;
      padding: 10px;
      font-family: var(--font-b);
      font-size: 13.5px;
      font-weight: 600;
      cursor: pointer;
      transition: background .15s;
      position: relative;
    }

    .sb-nl-btn:hover { background: var(--blue-l); }

    .sb-nl-ok {
      display: none;
      margin: 10px 0 0;
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,.85);
      line-height: 1.4;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--ink);
      color: rgba(255,255,255,.85);
    }

    .footer-main {
      max-width: var(--max);
      margin: 0 auto;
      padding: 64px 32px 48px;
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1fr;
      gap: 60px;
    }

    .footer-logo-row {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 16px;
    }

    .footer-logo-icon {
      width: 30px; height: 30px;
      background: var(--blue);
      border-radius: 7px;
      display: grid;
      grid-template: repeat(3,6px) / repeat(3,6px);
      gap: 2px;
      padding: 5px;
    }

    .footer-logo-icon span {
      display: block;
      background: rgba(255,255,255,.9);
      border-radius: 1px;
    }

    .footer-logo-icon span:nth-child(5) { background: rgba(255,255,255,.25); }

    .footer-logo-name {
      font-family: var(--font-h);
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      letter-spacing: -0.02em;
    }

    .footer-logo-name span { color: var(--blue); }

    .footer-desc {
      font-size: 13px;
      color: rgba(255,255,255,.45);
      line-height: 1.75;
      max-width: 240px;
    }

    .footer-col-h {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.35);
      margin-bottom: 18px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      font-size: 14px;
      color: rgba(255,255,255,.55);
      text-decoration: none;
      transition: color .15s;
    }

    .footer-links a:hover { color: rgba(255,255,255,.9); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.06);
    }

    .footer-bottom-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 20px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-size: 13px;
      color: rgba(255,255,255,.3);
    }

    .footer-bottom-inner a {
      color: rgba(255,255,255,.3);
      text-decoration: none;
      transition: color .15s;
    }

    .footer-bottom-inner a:hover { color: rgba(255,255,255,.7); }

    /* ─── REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .55s ease, transform .55s ease;
    }

    .reveal.in {
      opacity: 1;
      transform: none;
    }

    .d1 { transition-delay: .07s; }
    .d2 { transition-delay: .14s; }
    .d3 { transition-delay: .21s; }
    .d4 { transition-delay: .28s; }

    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .blog-grid { grid-template-columns: 1fr; }
      .sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
      .sb-newsletter { grid-column: span 2; }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
    }

    @media (max-width: 768px) {
      .container { padding: 0 20px; }
      .nav-inner { padding: 0 20px; gap: 16px; }
      .nav-links { display: none; }
      .nav-ghost { display: none; }
      .page-header { padding: 88px 0 40px; }
      .page-header-content { flex-direction: column; align-items: flex-start; gap: 20px; }
      .page-header-meta { flex-direction: row; }
      .cat-filter { padding: 0 20px; }
      .featured-post { grid-template-columns: 1fr; }
      .featured-cover { min-height: 200px; }
      .posts-grid { grid-template-columns: 1fr; }
      .sidebar { grid-template-columns: 1fr; }
      .sb-newsletter { grid-column: span 1; }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 20px; }
      .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
    }

/* ─────────────────────────────────────────────────────────
   BLOG DETAIL — Progress Bar, Article Typography, TOC, Author, Related
───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --white:    #FFFFFF;
      --off:      #F7F8FC;
      --gray-50:  #F0F2F8;
      --gray-100: #E4E7F0;
      --gray-200: #C9CEDC;
      --gray-400: #8892A4;
      --gray-600: #4E5870;
      --ink:      #0F1523;
      --blue:     #3D5AFE;
      --blue-d:   #2645FD;
      --blue-l:   #EEF1FF;
      --blue-m:   #C7D0FF;
      --green:    #16A34A;
      --green-l:  #DCFCE7;
      --amber:    #D97706;
      --amber-l:  #FEF3C7;
      --rose:     #E11D48;
      --rose-l:   #FFE4E6;
      --violet:   #7C3AED;
      --violet-l: #EDE9FE;
      --teal:     #0D9488;
      --teal-l:   #CCFBF1;
      --shadow-s: 0 1px 3px rgba(15,21,35,.06), 0 1px 2px rgba(15,21,35,.04);
      --shadow-m: 0 4px 16px rgba(15,21,35,.08), 0 1px 4px rgba(15,21,35,.04);
      --shadow-l: 0 12px 40px rgba(15,21,35,.10), 0 2px 8px rgba(15,21,35,.05);
      --shadow-xl:0 24px 64px rgba(15,21,35,.12), 0 4px 16px rgba(15,21,35,.06);
      --radius:   10px;
      --radius-l: 16px;
      --font-h:   'Bricolage Grotesque', sans-serif;
      --font-b:   'DM Sans', sans-serif;
      --font-s:   'Lora', serif;
      --max:      1200px;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--white);
      color: var(--ink);
      font-family: var(--font-b);
      font-size: 15px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--off); }
    ::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 4px; }

    /* ─── READING PROGRESS ─── */
    #read-progress {
      position: fixed;
      top: 0; left: 0;
      height: 3px;
      background: var(--blue);
      width: 0%;
      z-index: 200;
      transition: width .1s linear;
      box-shadow: 0 0 8px rgba(61,90,254,.4);
    }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(255,255,255,.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--gray-100);
      height: 68px;
    }

    .nav-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 32px;
      height: 100%;
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .nav-logo {
      display: flex; align-items: center; gap: 9px;
      text-decoration: none; flex-shrink: 0;
    }

    .logo-icon {
      width: 34px; height: 34px;
      background: var(--blue);
      border-radius: 8px;
      display: grid;
      grid-template: repeat(3,8px) / repeat(3,8px);
      gap: 2.5px; padding: 6px;
    }

    .logo-icon span {
      background: rgba(255,255,255,.9);
      border-radius: 1.5px; display: block;
    }

    .logo-icon span:nth-child(5) { background: rgba(255,255,255,.35); }

    .logo-name {
      font-family: var(--font-h);
      font-size: 18px; font-weight: 700;
      color: var(--ink); letter-spacing: -0.03em;
    }

    .logo-name span { color: var(--blue); }

    .nav-links {
      display: flex; align-items: center;
      gap: 4px; list-style: none;
    }

    .nav-links a {
      display: block; padding: 7px 14px;
      font-size: 14px; font-weight: 400;
      color: var(--gray-600); text-decoration: none;
      border-radius: 7px;
      transition: color .15s, background .15s;
    }

    .nav-links a:hover { color: var(--ink); background: var(--off); }
    .nav-links a.active { color: var(--ink); background: var(--off); font-weight: 500; }

    .nav-right {
      margin-left: auto;
      display: flex; align-items: center; gap: 12px;
    }

    .nav-ghost {
      font-size: 14px; font-weight: 500;
      color: var(--gray-600); text-decoration: none;
      padding: 8px 16px; border-radius: 8px;
      transition: color .15s, background .15s;
    }

    .nav-ghost:hover { color: var(--ink); background: var(--off); }

    .nav-btn {
      background: var(--blue); color: #fff;
      font-family: var(--font-b);
      font-size: 14px; font-weight: 500;
      padding: 9px 20px; border-radius: 8px;
      text-decoration: none;
      transition: background .15s, transform .1s, box-shadow .15s;
      box-shadow: 0 2px 8px rgba(61,90,254,.25);
    }

    .nav-btn:hover {
      background: var(--blue-d); transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(61,90,254,.35);
    }

    /* ─── ARTICLE HERO ─── */
    .article-hero {
      padding-top: 68px;
    }

    .article-hero-cover {
      height: 420px;
      background: linear-gradient(135deg, #1e1b4b 0%, #3730a3 35%, #4f46e5 65%, #6366f1 100%);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
    }

    .article-hero-cover::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at 15% 85%, rgba(99,102,241,.7) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 15%, rgba(139,92,246,.5) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0,0,0,.15) 0%, transparent 70%);
    }

    /* Decorative grid pattern */
    .article-hero-cover::after {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
      background-size: 48px 48px;
    }

    .hero-cover-meta {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 32px 40px;
    }

    .hero-cover-meta .breadcrumb {
      display: flex; align-items: center;
      gap: 6px; font-size: 13px;
      color: rgba(255,255,255,.75);
      margin-bottom: 16px;
    }

    .hero-cover-meta .breadcrumb a {
      color: rgba(255,255,255,.85);
      text-decoration: none;
      transition: color .15s;
    }

    .hero-cover-meta .breadcrumb a:hover { color: #fff; }
    .hero-cover-meta .breadcrumb svg { flex-shrink: 0; color: rgba(255,255,255,.5); }

    .hero-cat-badge {
      display: inline-flex; align-items: center; gap: 5px;
      background: rgba(255,255,255,.15);
      backdrop-filter: blur(8px);
      color: #fff;
      font-size: 11px; font-weight: 600;
      letter-spacing: 0.07em; text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 6px;
      border: 1px solid rgba(255,255,255,.2);
      margin-bottom: 16px;
    }

    .hero-cover-meta .hero-title {
      font-family: var(--font-h);
      font-size: clamp(28px, 3.5vw, 48px);
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.03em;
      line-height: 1.1;
      max-width: 740px;
    }

    /* ─── ARTICLE META BAR ─── */
    .article-meta-bar {
      border-bottom: 1px solid var(--gray-100);
      background: var(--white);
    }

    .article-meta-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 16px 32px;
      display: flex;
      align-items: center;
      gap: 0;
      flex-wrap: wrap;
    }

    .meta-author {
      display: flex; align-items: center; gap: 10px;
    }

    .meta-avatar {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: var(--violet-l);
      color: var(--violet);
      font-size: 12px; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }

    .meta-author-info { line-height: 1.2; }

    .meta-author-name {
      font-size: 14px; font-weight: 600;
      color: var(--ink);
    }

    .meta-author-role {
      font-size: 12px; color: var(--gray-400);
    }

    .meta-sep {
      width: 1px; height: 28px;
      background: var(--gray-100);
      margin: 0 20px;
    }

    .meta-item {
      display: flex; align-items: center; gap: 6px;
      font-size: 13px; color: var(--gray-400);
    }

    .meta-item svg { flex-shrink: 0; }

    .meta-item + .meta-item { margin-left: 20px; }

    .meta-share {
      margin-left: auto;
      display: flex; align-items: center; gap: 8px;
    }

    .share-label {
      font-size: 12px; color: var(--gray-400);
      font-weight: 500; margin-right: 4px;
    }

    .share-btn {
      width: 32px; height: 32px;
      border-radius: 8px;
      border: 1px solid var(--gray-100);
      background: var(--white);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; color: var(--gray-600);
      transition: border-color .15s, color .15s, background .15s;
      text-decoration: none;
    }

    .share-btn:hover {
      border-color: var(--blue);
      color: var(--blue);
      background: var(--blue-l);
    }

    /* ─── ARTICLE BODY LAYOUT ─── */
    .article-body-wrap {
      max-width: var(--max);
      margin: 0 auto;
      padding: 52px 32px 100px;
      display: grid;
      grid-template-columns: 1fr 280px;
      gap: 64px;
      align-items: start;
    }

    /* ─── ARTICLE CONTENT ─── */
    .article-content {
      min-width: 0;
    }

    /* Lead paragraph */
    .article-lead {
      font-family: var(--font-s);
      font-size: 19px;
      line-height: 1.75;
      color: var(--gray-600);
      margin-bottom: 36px;
      padding-bottom: 36px;
      border-bottom: 1px solid var(--gray-100);
    }

    /* Rich text */
    .prose h2 {
      font-family: var(--font-h);
      font-size: 26px;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: -0.025em;
      line-height: 1.2;
      margin: 48px 0 18px;
      padding-top: 8px;
      scroll-margin-top: 120px;
    }

    .prose h3 {
      font-family: var(--font-h);
      font-size: 19px;
      font-weight: 600;
      color: var(--ink);
      letter-spacing: -0.015em;
      line-height: 1.3;
      margin: 32px 0 12px;
      scroll-margin-top: 120px;
    }

    .prose p {
      font-size: 16px;
      line-height: 1.8;
      color: #2A3142;
      margin-bottom: 22px;
    }

    .prose a {
      color: var(--blue);
      text-decoration: underline;
      text-decoration-color: var(--blue-m);
      text-underline-offset: 3px;
      transition: text-decoration-color .15s;
    }

    .prose a:hover { text-decoration-color: var(--blue); }

    .prose strong { color: var(--ink); font-weight: 600; }

    .prose ul, .prose ol {
      padding-left: 22px;
      margin-bottom: 22px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .prose li {
      font-size: 16px;
      line-height: 1.75;
      color: #2A3142;
    }

    .prose ul li::marker { color: var(--blue); }
    .prose ol li::marker { color: var(--blue); font-weight: 600; }

    /* Blockquote */
    .prose blockquote {
      border-left: 3px solid var(--blue);
      background: var(--blue-l);
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: 20px 24px;
      margin: 32px 0;
    }

    .prose blockquote p {
      font-family: var(--font-s);
      font-size: 17px;
      font-style: italic;
      color: var(--ink);
      margin: 0;
      line-height: 1.7;
    }

    .prose blockquote cite {
      display: block;
      font-size: 13px;
      color: var(--gray-400);
      font-style: normal;
      margin-top: 10px;
      font-family: var(--font-b);
    }

    /* Code inline */
    .prose code {
      font-family: 'Menlo', 'Consolas', monospace;
      font-size: 13.5px;
      background: var(--gray-50);
      border: 1px solid var(--gray-100);
      border-radius: 5px;
      padding: 1px 6px;
      color: var(--violet);
    }

    /* Code block — reset inline code styles */
    .code-block pre code {
      background: none;
      border: none;
      border-radius: 0;
      padding: 0;
      color: #E2E8F0;
      font-size: 13.5px;
    }

    /* Code block */
    .code-block {
      background: #0F1523;
      border-radius: var(--radius-l);
      margin: 28px 0;
      overflow: hidden;
      box-shadow: var(--shadow-l);
    }

    .code-header {
      display: flex; align-items: center;
      justify-content: space-between;
      padding: 12px 18px;
      background: rgba(255,255,255,.04);
      border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .code-lang {
      font-size: 11.5px; font-weight: 600;
      color: rgba(255,255,255,.4);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-family: 'Menlo', 'Consolas', monospace;
    }

    .code-copy {
      display: flex; align-items: center; gap: 5px;
      font-size: 12px; color: rgba(255,255,255,.3);
      background: none; border: none;
      cursor: pointer;
      padding: 4px 8px; border-radius: 5px;
      font-family: var(--font-b);
      transition: color .15s, background .15s;
    }

    .code-copy:hover {
      color: rgba(255,255,255,.7);
      background: rgba(255,255,255,.06);
    }

    .code-body {
      padding: 20px 22px;
      overflow-x: auto;
    }

    .code-body pre {
      font-family: 'Menlo', 'Consolas', monospace;
      font-size: 13.5px;
      line-height: 1.7;
      color: #E2E8F0;
      margin: 0;
      white-space: pre;
    }

    .tok-key  { color: #93C5FD; }
    .tok-str  { color: #86EFAC; }
    .tok-com  { color: #64748B; font-style: italic; }
    .tok-num  { color: #FCA5A5; }
    .tok-fn   { color: #C4B5FD; }

    /* Callout / tip box */
    .callout {
      border-radius: var(--radius-l);
      padding: 20px 22px;
      margin: 28px 0;
      display: flex;
      gap: 14px;
    }

    .callout-tip {
      background: var(--blue-l);
      border: 1px solid var(--blue-m);
    }

    .callout-warn {
      background: var(--amber-l);
      border: 1px solid #FDE68A;
    }

    .callout-icon {
      width: 32px; height: 32px;
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .callout-tip .callout-icon {
      background: var(--blue-m);
      color: var(--blue);
    }

    .callout-warn .callout-icon {
      background: #FDE68A;
      color: var(--amber);
    }

    .callout-body { flex: 1; }

    .callout-title {
      font-size: 13px; font-weight: 700;
      letter-spacing: 0.04em; text-transform: uppercase;
      margin-bottom: 6px;
    }

    .callout-tip .callout-title { color: var(--blue-d); }
    .callout-warn .callout-title { color: var(--amber); }

    .callout-body p {
      font-size: 14.5px;
      line-height: 1.65;
      margin: 0;
    }

    .callout-tip .callout-body p { color: #1E3A8A; }
    .callout-warn .callout-body p { color: #78350F; }

    /* Figure / image */
    .article-figure {
      margin: 32px 0;
      border-radius: var(--radius-l);
      overflow: hidden;
      border: 1px solid var(--gray-100);
      box-shadow: var(--shadow-m);
    }

    .article-figure-img {
      width: 100%;
      height: 280px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #f0f4ff 0%, #e8edff 100%);
      position: relative;
      overflow: hidden;
    }

    .article-figure-img::before {
      content: '';
      position: absolute; inset: 0;
      background:
        linear-gradient(135deg, rgba(61,90,254,.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(124,58,237,.08) 0%, transparent 50%);
    }

    .article-figure-mockup {
      position: relative;
      width: 460px;
      background: #fff;
      border-radius: 10px 10px 0 0;
      box-shadow: 0 -8px 40px rgba(15,21,35,.12);
      overflow: hidden;
      transform: translateY(20px);
    }

    .mockup-bar {
      background: #F0F2F8;
      padding: 10px 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      border-bottom: 1px solid var(--gray-100);
    }

    .mockup-dots { display: flex; gap: 5px; }
    .mockup-dot {
      width: 9px; height: 9px;
      border-radius: 50%;
    }
    .md-r { background: #FC5753; }
    .md-y { background: #FDBC40; }
    .md-g { background: #33C748; }

    .mockup-url {
      flex: 1;
      background: #fff;
      border-radius: 5px;
      height: 22px;
      display: flex;
      align-items: center;
      padding: 0 8px;
      gap: 5px;
      font-size: 11px;
      color: var(--gray-400);
      font-family: var(--font-b);
    }

    .mockup-body {
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .mockup-nav-strip {
      height: 8px;
      background: var(--gray-50);
      border-radius: 4px;
    }

    .mockup-hero-strip {
      height: 56px;
      background: linear-gradient(135deg, #3730a3, #6366f1);
      border-radius: 7px;
    }

    .mockup-content-strips {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 6px;
      margin-top: 4px;
    }

    .mockup-strip {
      height: 40px;
      background: var(--gray-50);
      border-radius: 6px;
    }

    .article-figure figcaption {
      padding: 12px 18px;
      font-size: 13px;
      color: var(--gray-400);
      text-align: center;
      background: var(--off);
      border-top: 1px solid var(--gray-100);
    }

    /* Article tags */
    .article-tags {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 7px;
      padding: 32px 0;
      border-top: 1px solid var(--gray-100);
      margin-top: 48px;
    }

    .tags-label {
      font-size: 12.5px;
      font-weight: 600;
      color: var(--gray-400);
      text-transform: uppercase;
      letter-spacing: 0.07em;
      margin-right: 4px;
    }

    .art-tag {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 6px;
      background: var(--gray-50);
      border: 1px solid var(--gray-100);
      color: var(--gray-600);
      font-size: 13px;
      text-decoration: none;
      transition: background .15s, color .15s, border-color .15s;
    }

    .art-tag:hover {
      background: var(--blue-l);
      border-color: var(--blue-m);
      color: var(--blue);
    }

    /* Article share row */
    .article-share-row {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 24px 0;
      border-top: 1px solid var(--gray-100);
    }

    .share-row-label {
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
      margin-right: 4px;
    }

    .share-full-btn {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 500;
      font-family: var(--font-b);
      border: 1px solid var(--gray-100);
      background: var(--white);
      color: var(--gray-600);
      cursor: pointer;
      text-decoration: none;
      transition: border-color .15s, color .15s, background .15s;
    }

    .share-full-btn:hover {
      border-color: var(--blue);
      color: var(--blue);
      background: var(--blue-l);
    }

    .share-copy-msg {
      font-size: 13px;
      color: var(--green);
      font-weight: 500;
      opacity: 0;
      transition: opacity .3s;
    }

    /* Author bio card */
    .author-card {
      background: var(--off);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius-l);
      padding: 28px;
      display: flex;
      gap: 20px;
      margin-top: 8px;
    }

    .author-card-avatar {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: var(--violet-l);
      color: var(--violet);
      font-size: 20px; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-family: var(--font-h);
    }

    .author-card-body { flex: 1; }

    .author-card-label {
      font-size: 11px; font-weight: 600;
      letter-spacing: 0.09em; text-transform: uppercase;
      color: var(--gray-400);
      margin-bottom: 4px;
    }

    .author-card-name {
      font-family: var(--font-h);
      font-size: 18px; font-weight: 700;
      color: var(--ink);
      letter-spacing: -0.015em;
      margin-bottom: 10px;
    }

    .author-card-bio {
      font-size: 14px;
      color: var(--gray-600);
      line-height: 1.7;
      margin-bottom: 14px;
    }

    .author-card-stats {
      display: flex;
      gap: 20px;
    }

    .author-stat-n {
      font-size: 16px; font-weight: 700;
      color: var(--ink);
      font-family: var(--font-h);
      letter-spacing: -0.01em;
    }

    .author-stat-l {
      font-size: 11px; color: var(--gray-400);
    }

    /* ─── SIDEBAR ─── */
    .article-sidebar {
      position: sticky;
      top: calc(68px + 24px);
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .sidebar-block {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius-l);
      padding: 20px;
      box-shadow: var(--shadow-s);
    }

    .sidebar-block-h {
      font-size: 11px; font-weight: 700;
      letter-spacing: 0.09em; text-transform: uppercase;
      color: var(--gray-400);
      margin-bottom: 14px;
    }

    /* ToC */
    .toc-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1px;
    }

    .toc-item a {
      display: block;
      padding: 6px 10px;
      font-size: 13px;
      color: var(--gray-600);
      text-decoration: none;
      border-radius: 7px;
      border-left: 2px solid transparent;
      transition: background .15s, color .15s, border-color .15s;
      line-height: 1.45;
    }

    .toc-item a:hover {
      background: var(--off);
      color: var(--ink);
    }

    .toc-item.active a {
      background: var(--blue-l);
      color: var(--blue);
      border-left-color: var(--blue);
      font-weight: 500;
    }

    .toc-item.toc-h3 a {
      padding-left: 20px;
      font-size: 12.5px;
    }

    /* Read time / progress */
    .read-stats {
      display: flex;
      gap: 16px;
    }

    .read-stat {
      flex: 1;
      text-align: center;
      padding: 12px 8px;
      background: var(--off);
      border-radius: var(--radius);
    }

    .read-stat-n {
      font-family: var(--font-h);
      font-size: 20px; font-weight: 700;
      color: var(--ink);
      letter-spacing: -0.02em;
      line-height: 1;
    }

    .read-stat-l {
      font-size: 11px; color: var(--gray-400);
      margin-top: 3px;
    }

    /* Sidebar related */
    .sb-related {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .sb-rel-item {
      display: flex; gap: 11px;
      text-decoration: none;
    }

    .sb-rel-thumb {
      width: 48px; height: 48px;
      border-radius: 8px;
      flex-shrink: 0;
    }

    .sb-rel-body { flex: 1; }

    .sb-rel-title {
      font-size: 13px; font-weight: 600;
      color: var(--ink); line-height: 1.4;
      display: block; margin-bottom: 3px;
      transition: color .15s;
    }

    .sb-rel-item:hover .sb-rel-title { color: var(--blue); }

    .sb-rel-meta {
      font-size: 11.5px; color: var(--gray-400);
    }

    /* Sidebar newsletter */
    .sb-nl {
      background: linear-gradient(135deg, var(--blue) 0%, #5C6EFF 100%);
      border: none; border-radius: var(--radius-l);
      padding: 22px;
      position: relative; overflow: hidden;
    }

    .sb-nl::before {
      content: '';
      position: absolute; top: -40px; right: -40px;
      width: 140px; height: 140px;
      background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
    }

    .sb-nl-h {
      font-family: var(--font-h);
      font-size: 16px; font-weight: 700;
      color: #fff; letter-spacing: -0.02em;
      margin-bottom: 7px; position: relative;
    }

    .sb-nl-p {
      font-size: 13px; color: rgba(255,255,255,.72);
      line-height: 1.6; margin-bottom: 14px;
      position: relative;
    }

    .sb-nl-input {
      width: 100%;
      background: rgba(255,255,255,.15);
      border: 1px solid rgba(255,255,255,.25);
      border-radius: 8px;
      padding: 9px 13px;
      color: #fff; font-family: var(--font-b);
      font-size: 13.5px; outline: none;
      margin-bottom: 8px; position: relative;
      transition: background .15s;
    }

    .sb-nl-input::placeholder { color: rgba(255,255,255,.48); }
    .sb-nl-input:focus { background: rgba(255,255,255,.2); }

    .sb-nl-btn {
      width: 100%; background: #fff;
      color: var(--blue); border: none;
      border-radius: 8px; padding: 9px;
      font-family: var(--font-b);
      font-size: 13.5px; font-weight: 600;
      cursor: pointer; transition: background .15s;
      position: relative;
    }

    .sb-nl-btn:hover { background: var(--blue-l); }

    /* ─── COMMENTS ─── */

    /* footer elementinin global stilini comment-meta'dan sıfırla */
    .comment-body footer.comment-meta {
      background: none !important;
      color: inherit !important;
      padding: 0;
      margin: 0 0 12px;
    }

    .comments-area {
      margin-top: 48px;
      padding-top: 40px;
      border-top: 1px solid var(--gray-100);
    }

    .comments-title {
      font-family: var(--font-h);
      font-size: 20px;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: -0.02em;
      margin-bottom: 28px;
    }

    /* Comment list */
    .comment-list,
    .comment-list .children {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .comment-list { margin-bottom: 40px; display: flex; flex-direction: column; gap: 20px; }
    .comment-list .children { margin: 16px 0 0 40px; display: flex; flex-direction: column; gap: 16px; }

    .comment-body {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius-l);
      padding: 20px;
      box-shadow: var(--shadow-s);
    }

    /* Avatar + name satırı */
    .comment-author {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 6px;
    }

    .comment-author img.avatar {
      width: 40px !important;
      height: 40px !important;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .comment-author .fn {
      font-size: 14px;
      font-weight: 600;
      color: var(--ink);
      font-style: normal;
    }

    .comment-author .fn a { color: inherit; text-decoration: none; }

    /* "says:" metnini gizle */
    .comment-author .says { display: none; }

    .comment-metadata {
      font-size: 12px;
      color: var(--gray-400);
      margin-bottom: 12px;
      padding-left: 52px;
    }

    .comment-metadata a { color: inherit; text-decoration: none; }

    .comment-content {
      padding-left: 52px;
    }

    .comment-content p {
      font-size: 14px;
      color: var(--gray-700);
      line-height: 1.7;
      margin: 0 0 8px;
    }

    .reply { padding-left: 52px; margin-top: 8px; }

    .comment-reply-link {
      font-size: 12.5px;
      font-weight: 500;
      color: var(--blue);
      text-decoration: none;
      transition: color .15s;
    }

    .comment-reply-link:hover { color: var(--blue-d); }

    /* Comment form */
    #respond {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius-l);
      padding: 28px;
      box-shadow: var(--shadow-s);
    }

    .comment-reply-title {
      font-family: var(--font-h);
      font-size: 18px;
      font-weight: 700;
      color: var(--ink);
      letter-spacing: -0.02em;
      margin-bottom: 4px;
    }

    .comment-reply-title small { margin-left: 12px; }
    .comment-reply-title small a { font-size: 13px; font-weight: 400; color: var(--gray-400); text-decoration: none; }

    .comment-notes {
      font-size: 13px;
      color: var(--gray-400);
      margin-bottom: 20px;
    }

    .comment-form p { margin: 0 0 16px; }

    .comment-form label {
      display: block;
      font-size: 13px;
      font-weight: 500;
      color: var(--gray-700);
      margin-bottom: 6px;
    }

    .comment-form input[type="text"],
    .comment-form input[type="email"],
    .comment-form input[type="url"],
    .comment-form textarea {
      width: 100%;
      border: 1px solid var(--gray-200);
      border-radius: 9px;
      padding: 10px 14px;
      font-family: var(--font-b);
      font-size: 14px;
      color: var(--ink);
      background: var(--white);
      outline: none;
      transition: border-color .15s, box-shadow .15s;
      box-sizing: border-box;
    }

    .comment-form input[type="text"]:focus,
    .comment-form input[type="email"]:focus,
    .comment-form input[type="url"]:focus,
    .comment-form textarea:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(61,90,254,.1);
    }

    .comment-form textarea { min-height: 130px; resize: vertical; }

    .comment-form .comment-form-cookies-consent { display: flex; align-items: flex-start; gap: 8px; }
    .comment-form .comment-form-cookies-consent input { width: auto; margin-top: 3px; }
    .comment-form .comment-form-cookies-consent label { font-size: 13px; font-weight: 400; color: var(--gray-500); margin-bottom: 0; }

    .comment-form .form-submit { margin-bottom: 0; }

    .comment-form #submit {
      background: var(--blue);
      color: #fff;
      font-family: var(--font-b);
      font-size: 14px;
      font-weight: 500;
      padding: 10px 24px;
      border: none;
      border-radius: 9px;
      cursor: pointer;
      transition: background .15s, transform .1s, box-shadow .15s;
      box-shadow: 0 2px 8px rgba(61,90,254,.25);
    }

    .comment-form #submit:hover {
      background: var(--blue-d);
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(61,90,254,.35);
    }

    /* ─── RELATED ARTICLES (bottom) ─── */
    .related-section {
      background: var(--off);
      border-top: 1px solid var(--gray-100);
      padding: 72px 0;
    }

    .related-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 32px;
    }

    .related-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 32px;
    }

    .related-head h2 {
      font-family: var(--font-h);
      font-size: 22px; font-weight: 700;
      color: var(--ink); letter-spacing: -0.02em;
    }

    .related-all {
      font-size: 14px; font-weight: 500;
      color: var(--blue); text-decoration: none;
      display: flex; align-items: center; gap: 4px;
      transition: gap .15s;
    }

    .related-all:hover { gap: 7px; }

    .related-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .rel-card {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius-l);
      overflow: hidden;
      box-shadow: var(--shadow-s);
      transition: box-shadow .25s, transform .25s, border-color .25s;
    }

    .rel-card:hover {
      box-shadow: var(--shadow-l);
      transform: translateY(-3px);
      border-color: var(--gray-200);
    }

    .rel-cover {
      height: 140px;
      position: relative; overflow: hidden;
    }

    .pc-blue   { background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%); }
    .pc-amber  { background: linear-gradient(135deg, #78350f 0%, #f59e0b 100%); }
    .pc-teal   { background: linear-gradient(135deg, #134e4a 0%, #2dd4bf 100%); }

    .rel-cover::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 30% 70%, rgba(255,255,255,.1) 0%, transparent 60%);
    }

    .rel-body { padding: 18px; }

    .rel-meta {
      display: flex; align-items: center; gap: 8px;
      margin-bottom: 8px;
    }

    .rel-cat {
      font-size: 10.5px; font-weight: 600;
      letter-spacing: 0.06em; text-transform: uppercase;
      padding: 2px 7px; border-radius: 4px;
    }

    .cat-wp    { background: var(--blue-l);   color: var(--blue); }
    .cat-perf  { background: var(--amber-l);  color: var(--amber); }
    .cat-guide { background: var(--teal-l);   color: var(--teal); }

    .rel-date { font-size: 12px; color: var(--gray-400); margin-left: auto; }

    .rel-title {
      font-family: var(--font-h);
      font-size: 15px; font-weight: 700;
      color: var(--ink); line-height: 1.35;
      letter-spacing: -0.01em;
      text-decoration: none; display: block;
      margin-bottom: 8px;
      transition: color .15s;
    }

    .rel-card:hover .rel-title { color: var(--blue); }

    .rel-footer {
      display: flex; align-items: center;
      justify-content: space-between;
      padding-top: 12px;
      border-top: 1px solid var(--gray-50);
      margin-top: 12px;
    }

    .rel-author {
      display: flex; align-items: center; gap: 6px;
      font-size: 12px; color: var(--gray-600);
    }

    .rel-av {
      width: 22px; height: 22px;
      border-radius: 50%;
      font-size: 8px; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
    }

    .av-b { background: var(--blue-l);   color: var(--blue); }
    .av-a { background: var(--amber-l);  color: var(--amber); }
    .av-t { background: var(--teal-l);   color: var(--teal); }

    .rel-read {
      font-size: 12px; color: var(--gray-400);
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--ink);
      color: rgba(255,255,255,.85);
    }

    .footer-main {
      max-width: var(--max); margin: 0 auto;
      padding: 64px 32px 48px;
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1fr;
      gap: 60px;
    }

    .footer-logo-row {
      display: flex; align-items: center;
      gap: 9px; margin-bottom: 16px;
    }

    .footer-logo-icon {
      width: 30px; height: 30px;
      background: var(--blue); border-radius: 7px;
      display: grid;
      grid-template: repeat(3,6px) / repeat(3,6px);
      gap: 2px; padding: 5px;
    }

    .footer-logo-icon span {
      display: block;
      background: rgba(255,255,255,.9);
      border-radius: 1px;
    }

    .footer-logo-icon span:nth-child(5) { background: rgba(255,255,255,.25); }

    .footer-logo-name {
      font-family: var(--font-h);
      font-size: 16px; font-weight: 700;
      color: #fff; letter-spacing: -0.02em;
    }

    .footer-logo-name span { color: var(--blue); }

    .footer-desc {
      font-size: 13px;
      color: rgba(255,255,255,.45);
      line-height: 1.75; max-width: 240px;
    }

    .footer-col-h {
      font-size: 11px; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: rgba(255,255,255,.35); margin-bottom: 18px;
    }

    .footer-links {
      list-style: none;
      display: flex; flex-direction: column; gap: 10px;
    }

    .footer-links a {
      font-size: 14px;
      color: rgba(255,255,255,.55);
      text-decoration: none; transition: color .15s;
    }

    .footer-links a:hover { color: rgba(255,255,255,.9); }

    .footer-bottom { border-top: 1px solid rgba(255,255,255,.06); }

    .footer-bottom-inner {
      max-width: var(--max); margin: 0 auto;
      padding: 20px 32px;
      display: flex; align-items: center;
      justify-content: space-between;
      gap: 16px; font-size: 13px;
      color: rgba(255,255,255,.3);
    }

    .footer-bottom-inner a {
      color: rgba(255,255,255,.3);
      text-decoration: none; transition: color .15s;
    }

    .footer-bottom-inner a:hover { color: rgba(255,255,255,.7); }

    /* ─── REVEAL ─── */
    .reveal {
      opacity: 0; transform: translateY(18px);
      transition: opacity .55s ease, transform .55s ease;
    }

    .reveal.in { opacity: 1; transform: none; }
    .d1 { transition-delay: .07s; }
    .d2 { transition-delay: .14s; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: none; }
    }

    .anim-in {
      animation: fadeUp .5s ease forwards;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .article-body-wrap { grid-template-columns: 1fr; gap: 40px; }
      .article-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
      .sb-nl { grid-column: span 2; }
      .related-grid { grid-template-columns: 1fr 1fr; }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
    }

    @media (max-width: 768px) {
      .nav-inner { padding: 0 20px; gap: 16px; }
      .nav-links, .nav-ghost { display: none; }
      .article-hero-cover { height: 300px; }
      .hero-cover-meta { padding: 0 20px 28px; }
      .article-meta-inner { padding: 12px 20px; gap: 0; flex-wrap: wrap; gap: 8px; }
      .meta-share { margin-left: 0; width: 100%; }
      .article-body-wrap { padding: 36px 20px 72px; }
      .article-sidebar { grid-template-columns: 1fr; }
      .sb-nl { grid-column: span 1; }
      .related-inner { padding: 0 20px; }
      .related-grid { grid-template-columns: 1fr; }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 20px; }
      .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
    }

/* ─────────────────────────────────────────────────────────
   CONTACT — Subject Selector, File Drop, FAQ Accordion, Info Cards
───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --white:    #FFFFFF;
      --off:      #F7F8FC;
      --gray-50:  #F0F2F8;
      --gray-100: #E4E7F0;
      --gray-200: #C9CEDC;
      --gray-400: #8892A4;
      --gray-600: #4E5870;
      --ink:      #0F1523;
      --blue:     #3D5AFE;
      --blue-d:   #2645FD;
      --blue-l:   #EEF1FF;
      --blue-m:   #C7D0FF;
      --green:    #16A34A;
      --green-l:  #DCFCE7;
      --amber:    #D97706;
      --amber-l:  #FEF3C7;
      --violet:   #7C3AED;
      --violet-l: #EDE9FE;
      --teal:     #0D9488;
      --teal-l:   #CCFBF1;
      --shadow-s: 0 1px 3px rgba(15,21,35,.06), 0 1px 2px rgba(15,21,35,.04);
      --shadow-m: 0 4px 16px rgba(15,21,35,.08), 0 1px 4px rgba(15,21,35,.04);
      --shadow-l: 0 12px 40px rgba(15,21,35,.10), 0 2px 8px rgba(15,21,35,.05);
      --radius:   10px;
      --radius-l: 16px;
      --font-h:   'Bricolage Grotesque', sans-serif;
      --font-b:   'DM Sans', sans-serif;
      --max:      1200px;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--white);
      color: var(--ink);
      font-family: var(--font-b);
      font-size: 15px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--off); }
    ::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 4px; }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(255,255,255,.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--gray-100);
      height: 68px;
    }

    .nav-inner {
      max-width: var(--max); margin: 0 auto;
      padding: 0 32px; height: 100%;
      display: flex; align-items: center; gap: 40px;
    }

    .nav-logo {
      display: flex; align-items: center; gap: 9px;
      text-decoration: none; flex-shrink: 0;
    }

    .logo-icon {
      width: 34px; height: 34px;
      background: var(--blue); border-radius: 8px;
      display: grid; grid-template: repeat(3,8px) / repeat(3,8px);
      gap: 2.5px; padding: 6px;
    }

    .logo-icon span { background: rgba(255,255,255,.9); border-radius: 1.5px; display: block; }
    .logo-icon span:nth-child(5) { background: rgba(255,255,255,.35); }

    .logo-name { font-family: var(--font-h); font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; }
    .logo-name span { color: var(--blue); }

    .nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }

    .nav-links a {
      display: block; padding: 7px 14px;
      font-size: 14px; font-weight: 400;
      color: var(--gray-600); text-decoration: none;
      border-radius: 7px; transition: color .15s, background .15s;
    }

    .nav-links a:hover { color: var(--ink); background: var(--off); }
    .nav-links a.active { color: var(--ink); background: var(--off); font-weight: 500; }

    .nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }

    .nav-ghost {
      font-size: 14px; font-weight: 500; color: var(--gray-600);
      text-decoration: none; padding: 8px 16px; border-radius: 8px;
      transition: color .15s, background .15s;
    }

    .nav-ghost:hover { color: var(--ink); background: var(--off); }

    .nav-btn {
      background: var(--blue); color: #fff; font-family: var(--font-b);
      font-size: 14px; font-weight: 500; padding: 9px 20px; border-radius: 8px;
      text-decoration: none; box-shadow: 0 2px 8px rgba(61,90,254,.25);
      transition: background .15s, transform .1s, box-shadow .15s;
    }

    .nav-btn:hover { background: var(--blue-d); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(61,90,254,.35); }

    /* ─── PAGE HEADER ─── */
    .page-header {
      padding: 108px 0 64px;
      border-bottom: 1px solid var(--gray-100);
      position: relative; overflow: hidden;
    }

    .page-header::before {
      content: '';
      position: absolute; top: 0; left: 50%; transform: translateX(-50%);
      width: 1000px; height: 600px;
      background: radial-gradient(ellipse at 50% 0%, rgba(61,90,254,.055) 0%, transparent 65%);
      pointer-events: none;
    }

    .ph-inner {
      max-width: var(--max); margin: 0 auto; padding: 0 32px;
    }

    .breadcrumb {
      display: flex; align-items: center; gap: 6px;
      font-size: 13px; color: var(--gray-400); margin-bottom: 20px;
    }

    .breadcrumb a { color: var(--gray-400); text-decoration: none; transition: color .15s; }
    .breadcrumb a:hover { color: var(--blue); }

    .ph-content {
      display: flex; align-items: flex-end;
      justify-content: space-between; gap: 40px;
    }

    .ph-left h1 {
      font-family: var(--font-h);
      font-size: clamp(36px, 4vw, 54px);
      font-weight: 800; letter-spacing: -0.03em;
      color: var(--ink); line-height: 1.06;
      margin-bottom: 14px;
    }

    .ph-left p {
      font-size: 16px; color: var(--gray-600);
      max-width: 440px; line-height: 1.7;
    }

    /* response time pill */
    .response-pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--green-l); border: 1px solid #BBF7D0;
      color: var(--green); border-radius: 100px;
      padding: 8px 16px 8px 10px;
      font-size: 13.5px; font-weight: 500;
      flex-shrink: 0;
    }

    .rp-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 3px rgba(22,163,74,.2);
      flex-shrink: 0;
    }

    /* ─── MAIN SECTION ─── */
    .contact-section {
      padding: 64px 0 100px;
    }

    .contact-inner {
      max-width: var(--max); margin: 0 auto; padding: 0 32px;
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 56px;
      align-items: start;
    }

    /* ─── CONTACT FORM ─── */
    .form-card {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: 20px;
      padding: 40px;
      box-shadow: var(--shadow-l);
    }

    .form-card-h {
      font-family: var(--font-h);
      font-size: 22px; font-weight: 700;
      color: var(--ink); letter-spacing: -0.02em;
      margin-bottom: 6px;
    }

    .form-card-sub {
      font-size: 14px; color: var(--gray-600);
      margin-bottom: 32px; line-height: 1.6;
    }

    /* subject type selector */
    .subject-types {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 10px; margin-bottom: 28px;
    }

    .stype {
      border: 1.5px solid var(--gray-100);
      border-radius: var(--radius-l);
      padding: 14px 16px;
      cursor: pointer;
      transition: border-color .15s, background .15s;
      display: flex; align-items: flex-start; gap: 11px;
      position: relative;
    }

    .stype:hover { border-color: var(--blue-m); background: var(--blue-l); }

    .stype.selected {
      border-color: var(--blue);
      background: var(--blue-l);
    }

    .stype input[type=radio] {
      position: absolute; opacity: 0; pointer-events: none;
    }

    .stype-icon {
      width: 34px; height: 34px; border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 1px;
    }

    .si-blue   { background: var(--blue-l);   color: var(--blue); }
    .si-green  { background: var(--green-l);  color: var(--green); }
    .si-amber  { background: var(--amber-l);  color: var(--amber); }
    .si-violet { background: var(--violet-l); color: var(--violet); }

    .stype.selected .stype-icon { background: rgba(61,90,254,.15); }

    .stype-body { flex: 1; }

    .stype-name {
      font-size: 13.5px; font-weight: 600;
      color: var(--ink); line-height: 1.3;
    }

    .stype-desc {
      font-size: 12px; color: var(--gray-400);
      margin-top: 2px; line-height: 1.4;
    }

    .stype.selected .stype-name { color: var(--blue); }

    /* form fields */
    .form-row {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 16px; margin-bottom: 16px;
    }

    .form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
    .form-group:last-of-type { margin-bottom: 0; }

    .form-label {
      font-size: 13.5px; font-weight: 600;
      color: var(--ink); letter-spacing: -0.005em;
    }

    .form-label span { color: var(--blue); margin-left: 2px; }

    .form-input, .form-select, .form-textarea {
      font-family: var(--font-b);
      font-size: 14.5px; color: var(--ink);
      background: var(--white);
      border: 1.5px solid var(--gray-100);
      border-radius: var(--radius);
      padding: 11px 14px;
      outline: none; width: 100%;
      transition: border-color .15s, box-shadow .15s;
    }

    .form-input::placeholder,
    .form-textarea::placeholder { color: var(--gray-400); }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(61,90,254,.1);
    }

    .form-select {
      appearance: none; -webkit-appearance: none; cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' fill='none' stroke='%238892A4' stroke-width='1.5' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 14px center;
      padding-right: 36px;
    }

    .form-textarea {
      resize: vertical; min-height: 128px;
      line-height: 1.65;
    }

    .form-hint {
      font-size: 12px; color: var(--gray-400); margin-top: -4px;
    }

    /* char count */
    .char-count {
      font-size: 12px; color: var(--gray-400);
      text-align: right; margin-top: 4px;
    }

    /* file attachment */
    .form-label-opt {
      font-weight: 400; font-size: 13px; color: var(--gray-400); margin-left: 4px;
    }

    .file-drop {
      border: 1.5px dashed var(--gray-200);
      border-radius: var(--radius);
      padding: 18px;
      cursor: pointer;
      transition: border-color .15s, background .15s;
      display: flex; align-items: center; gap: 12px;
      position: relative; overflow: hidden;
    }

    .file-drop:hover {
      border-color: var(--blue);
      background: var(--blue-l);
    }

    .file-drop-icon {
      width: 36px; height: 36px; border-radius: 9px;
      background: var(--gray-50); color: var(--gray-400);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; transition: background .15s, color .15s;
    }

    .file-drop:hover .file-drop-icon {
      background: var(--blue-m); color: var(--blue);
    }

    .file-drop-text { text-align: left; flex: 1; }
    .file-drop-text strong { font-size: 13.5px; font-weight: 600; color: var(--ink); display: block; }
    .file-drop-text span  { font-size: 12px; color: var(--gray-400); }

    /* CF7 file input — invisible overlay covering the entire file-drop area */
    .file-drop .wpcf7-form-control-wrap,
    .file-drop input[type=file] {
      position: absolute; top: 0; left: 0;
      width: 100%; height: 100%;
      opacity: 0; cursor: pointer; z-index: 2;
    }

    /* privacy checkbox */
    .privacy-row {
      display: flex; align-items: flex-start; gap: 10px;
      margin: 20px 0 24px;
    }

    .privacy-row input[type=checkbox] {
      accent-color: var(--blue);
      width: 16px; height: 16px;
      cursor: pointer; flex-shrink: 0; margin-top: 2px;
    }

    .privacy-text {
      font-size: 13px; color: var(--gray-600); line-height: 1.6;
    }

    .privacy-text a { color: var(--blue); text-decoration: none; }
    .privacy-text a:hover { text-decoration: underline; }

    /* submit */
    .submit-btn {
      width: 100%;
      background: var(--blue); color: #fff;
      font-family: var(--font-b);
      font-size: 15px; font-weight: 600;
      padding: 14px 24px; border-radius: 10px;
      border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      box-shadow: 0 4px 16px rgba(61,90,254,.3);
      transition: background .15s, transform .1s, box-shadow .15s;
    }

    .submit-btn:hover {
      background: var(--blue-d); transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(61,90,254,.4);
    }

    /* ─── CONTACT FORM 7 ─── */

    .wpcf7 .hidden-fields-container { display: none !important; }

    /* CF7 span wrapper fix — inputs fill full width */
    .wpcf7-form .wpcf7-form-control-wrap {
      display: block; width: 100%;
    }

    /* CF7 inputs inherit form-input styles */
    .wpcf7-form input[type=text],
    .wpcf7-form input[type=email],
    .wpcf7-form input[type=tel],
    .wpcf7-form input[type=url],
    .wpcf7-form input[type=number] {
      font-family: var(--font-b);
      font-size: 14.5px; color: var(--ink);
      background: var(--white);
      border: 1.5px solid var(--gray-100);
      border-radius: var(--radius);
      padding: 11px 14px;
      outline: none; width: 100%;
      transition: border-color .15s, box-shadow .15s;
    }

    .wpcf7-form select {
      font-family: var(--font-b);
      font-size: 14.5px; color: var(--ink);
      background: var(--white);
      border: 1.5px solid var(--gray-100);
      border-radius: var(--radius);
      padding: 11px 36px 11px 14px;
      outline: none; width: 100%;
      appearance: none; -webkit-appearance: none; cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' fill='none' stroke='%238892A4' stroke-width='1.5' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 14px center;
      transition: border-color .15s, box-shadow .15s;
    }

    .wpcf7-form textarea {
      font-family: var(--font-b);
      font-size: 14.5px; color: var(--ink);
      background: var(--white);
      border: 1.5px solid var(--gray-100);
      border-radius: var(--radius);
      padding: 11px 14px;
      outline: none; width: 100%;
      resize: vertical; min-height: 128px; line-height: 1.65;
      transition: border-color .15s, box-shadow .15s;
    }

    .wpcf7-form input[type=text]:focus,
    .wpcf7-form input[type=email]:focus,
    .wpcf7-form input[type=tel]:focus,
    .wpcf7-form input[type=url]:focus,
    .wpcf7-form select:focus,
    .wpcf7-form textarea:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(61,90,254,.1);
    }

    .wpcf7-form input::placeholder,
    .wpcf7-form textarea::placeholder { color: var(--gray-400); }

    /* CF7 acceptance (checkbox) */
    .wpcf7-form .wpcf7-acceptance {
      display: flex; align-items: flex-start; gap: 10px;
      margin: 20px 0 24px;
    }

    .wpcf7-form .wpcf7-acceptance input[type=checkbox] {
      accent-color: var(--blue);
      width: 16px; height: 16px;
      cursor: pointer; flex-shrink: 0; margin-top: 3px;
    }

    .wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
      display: flex; align-items: flex-start; gap: 10px; margin: 0;
    }

    .wpcf7-form .wpcf7-acceptance .wpcf7-list-item label {
      display: flex; align-items: flex-start; gap: 10px; cursor: pointer;
    }

    .wpcf7-form .wpcf7-acceptance input[type=checkbox] {
      margin-top: 2px; flex-shrink: 0;
    }

    .wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label {
      font-size: 13px; color: var(--gray-600); line-height: 1.6;
    }

    .wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label a {
      color: var(--blue); text-decoration: none;
    }

    .wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label a:hover {
      text-decoration: underline;
    }

    /* CF7 submit button */
    .wpcf7-form input[type=submit] {
      width: 100%;
      background: var(--blue); color: #fff;
      font-family: var(--font-b);
      font-size: 15px; font-weight: 600;
      padding: 14px 24px; border-radius: 10px;
      border: none; cursor: pointer;
      box-shadow: 0 4px 16px rgba(61,90,254,.3);
      transition: background .15s, transform .1s, box-shadow .15s;
    }

    .wpcf7-form input[type=submit]:hover {
      background: var(--blue-d); transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(61,90,254,.4);
    }

    /* CF7 validation errors */
    .wpcf7-not-valid {
      border-color: #ef4444 !important;
      box-shadow: 0 0 0 3px rgba(239,68,68,.1) !important;
    }

    .wpcf7-not-valid-tip {
      font-size: 12px; color: #ef4444;
      display: block; margin-top: 4px;
    }

    /* CF7 response output */
    .wpcf7 .screen-reader-response { position: absolute; left: -9999px; }

    .wpcf7-response-output {
      display: none;
      border: none !important;
      margin: 0 !important;
      padding: 0 !important;
    }

    /* Yeni CF7: class form elementine ekleniyor (sent / invalid / failed / spam / aborted) */
    .wpcf7-form.sent .wpcf7-response-output {
      display: flex !important;
      align-items: center; gap: 10px;
      margin: 20px 0 0 !important;
      padding: 14px 18px !important;
      border-radius: var(--radius) !important;
      border: 1.5px solid #bbf7d0 !important;
      background: var(--green-l) !important;
      color: var(--green) !important;
      font-size: 14px; font-weight: 500; line-height: 1.5;
    }

    .wpcf7-form.sent .wpcf7-response-output::before {
      content: '';
      display: inline-block; flex-shrink: 0;
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 3px rgba(22,163,74,.2);
    }

    .wpcf7-form.invalid .wpcf7-response-output,
    .wpcf7-form.failed .wpcf7-response-output,
    .wpcf7-form.spam .wpcf7-response-output,
    .wpcf7-form.aborted .wpcf7-response-output,
    .wpcf7-form.unaccepted .wpcf7-response-output {
      display: flex !important;
      align-items: center; gap: 10px;
      margin: 20px 0 0 !important;
      padding: 14px 18px !important;
      border-radius: var(--radius) !important;
      border: 1.5px solid #fecaca !important;
      background: #fef2f2 !important;
      color: #ef4444 !important;
      font-size: 14px; font-weight: 500; line-height: 1.5;
    }

    .wpcf7-form.invalid .wpcf7-response-output::before,
    .wpcf7-form.failed .wpcf7-response-output::before,
    .wpcf7-form.spam .wpcf7-response-output::before,
    .wpcf7-form.aborted .wpcf7-response-output::before,
    .wpcf7-form.unaccepted .wpcf7-response-output::before {
      content: '';
      display: inline-block; flex-shrink: 0;
      width: 8px; height: 8px; border-radius: 50%;
      background: #ef4444;
      box-shadow: 0 0 0 3px rgba(239,68,68,.2);
    }

    /* CF7 spinner */
    .wpcf7-spinner {
      display: none !important;
    }

    /* success state */
    .form-success {
      display: none;
      text-align: center; padding: 48px 24px;
    }

    .success-icon {
      width: 64px; height: 64px; border-radius: 50%;
      background: var(--green-l); color: var(--green);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px; font-size: 28px;
    }

    .success-title {
      font-family: var(--font-h);
      font-size: 22px; font-weight: 700;
      color: var(--ink); letter-spacing: -0.02em;
      margin-bottom: 10px;
    }

    .success-text {
      font-size: 14.5px; color: var(--gray-600);
      line-height: 1.7; max-width: 320px; margin: 0 auto;
    }

    /* ─── RIGHT COLUMN ─── */
    .contact-aside {
      display: flex; flex-direction: column; gap: 16px;
    }

    /* info cards */
    .info-card {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius-l);
      padding: 22px 24px;
      box-shadow: var(--shadow-s);
      display: flex; align-items: flex-start; gap: 16px;
      transition: box-shadow .2s, transform .2s;
    }

    .info-card:hover { box-shadow: var(--shadow-m); transform: translateY(-2px); }

    .info-icon {
      width: 44px; height: 44px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }

    .ii-blue   { background: var(--blue-l);   color: var(--blue); }
    .ii-green  { background: var(--green-l);  color: var(--green); }
    .ii-violet { background: var(--violet-l); color: var(--violet); }
    .ii-amber  { background: var(--amber-l);  color: var(--amber); }
    .ii-teal   { background: var(--teal-l);   color: var(--teal); }

    .info-body { flex: 1; }

    .info-label {
      font-size: 11.5px; font-weight: 600;
      letter-spacing: 0.07em; text-transform: uppercase;
      color: var(--gray-400); margin-bottom: 4px;
    }

    .info-value {
      font-size: 15px; font-weight: 600; color: var(--ink);
      line-height: 1.3; margin-bottom: 3px;
    }

    .info-sub {
      font-size: 13px; color: var(--gray-400); line-height: 1.5;
    }

    .info-link {
      display: inline-flex; align-items: center; gap: 4px;
      font-size: 13px; font-weight: 500;
      color: var(--blue); text-decoration: none;
      margin-top: 6px;
      transition: gap .15s;
    }

    .info-link:hover { gap: 7px; }

    /* social block */
    .social-card {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius-l);
      padding: 22px 24px;
      box-shadow: var(--shadow-s);
    }

    .social-card-h {
      font-size: 13.5px; font-weight: 700;
      color: var(--ink); margin-bottom: 14px;
    }

    .social-links {
      display: flex; flex-direction: column; gap: 8px;
    }

    .social-link {
      display: flex; align-items: center; gap: 12px;
      padding: 10px 12px;
      border-radius: var(--radius);
      text-decoration: none;
      border: 1px solid var(--gray-100);
      transition: border-color .15s, background .15s;
    }

    .social-link:hover { border-color: var(--gray-200); background: var(--off); }

    .sl-icon {
      width: 32px; height: 32px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }

    .sl-x       { background: #000; color: #fff; }
    .sl-wp      { background: #21759B; color: #fff; }
    .sl-github  { background: #1b1f23; color: #fff; }

    .sl-body { flex: 1; }
    .sl-name { font-size: 13.5px; font-weight: 600; color: var(--ink); display: block; }
    .sl-handle { font-size: 12px; color: var(--gray-400); }

    .sl-arrow { color: var(--gray-400); }

    /* quick links block */
    .quick-card {
      background: var(--off);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius-l);
      padding: 22px 24px;
    }

    .quick-card-h {
      font-size: 13px; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--gray-400); margin-bottom: 14px;
    }

    .quick-links {
      display: flex; flex-direction: column; gap: 2px;
    }

    .quick-link {
      display: flex; align-items: center; gap: 10px;
      padding: 9px 10px; border-radius: 8px;
      text-decoration: none;
      transition: background .15s;
    }

    .quick-link:hover { background: var(--gray-100); }

    .ql-icon {
      width: 30px; height: 30px; border-radius: 7px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }

    .quick-link-text { flex: 1; }
    .qlt-name { font-size: 13.5px; font-weight: 500; color: var(--ink); display: block; line-height: 1.2; }
    .qlt-sub  { font-size: 12px; color: var(--gray-400); }
    .ql-arrow { color: var(--gray-200); flex-shrink: 0; }
    .quick-link:hover .ql-arrow { color: var(--gray-400); }

    /* ─── FAQ STRIP ─── */
    .faq-section {
      background: var(--off);
      border-top: 1px solid var(--gray-100);
      padding: 72px 0;
    }

    .faq-inner {
      max-width: var(--max); margin: 0 auto; padding: 0 32px;
    }

    .faq-head {
      text-align: center; margin-bottom: 48px;
    }

    .faq-kicker {
      font-size: 12px; font-weight: 600;
      letter-spacing: 0.09em; text-transform: uppercase;
      color: var(--blue); margin-bottom: 12px;
    }

    .faq-head h2 {
      font-family: var(--font-h);
      font-size: clamp(26px, 3vw, 38px); font-weight: 800;
      color: var(--ink); letter-spacing: -0.025em;
    }

    .faq-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    }

    .faq-item {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius-l);
      overflow: hidden;
      box-shadow: var(--shadow-s);
    }

    .faq-q {
      display: flex; align-items: center;
      justify-content: space-between; gap: 12px;
      padding: 18px 20px;
      cursor: pointer;
      transition: background .15s;
    }

    .faq-q:hover { background: var(--off); }

    .faq-q-text {
      font-size: 14.5px; font-weight: 600;
      color: var(--ink); line-height: 1.4;
    }

    .faq-toggle {
      width: 26px; height: 26px; border-radius: 7px;
      background: var(--gray-50); border: 1px solid var(--gray-100);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; color: var(--gray-400);
      font-size: 18px; line-height: 1; font-weight: 300;
      transition: background .15s, color .15s, transform .2s;
      user-select: none;
    }

    .faq-item.open .faq-toggle {
      background: var(--blue-l); color: var(--blue);
      border-color: var(--blue-m); transform: rotate(45deg);
    }

    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height .3s ease, padding .3s ease;
      padding: 0 20px;
    }

    .faq-item.open .faq-a {
      max-height: 200px;
      padding: 0 20px 18px;
    }

    .faq-a p {
      font-size: 14px; color: var(--gray-600); line-height: 1.75;
      border-top: 1px solid var(--gray-50); padding-top: 14px;
    }

    .faq-a a { color: var(--blue); text-decoration: none; }
    .faq-a a:hover { text-decoration: underline; }

    /* ─── FOOTER ─── */
    footer { background: var(--ink); color: rgba(255,255,255,.85); }

    .footer-main {
      max-width: var(--max); margin: 0 auto;
      padding: 64px 32px 48px;
      display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 60px;
    }

    .footer-logo-row { display: flex; align-items: center; gap: 9px; margin-bottom: 16px; }

    .footer-logo-icon {
      width: 30px; height: 30px; background: var(--blue); border-radius: 7px;
      display: grid; grid-template: repeat(3,6px) / repeat(3,6px); gap: 2px; padding: 5px;
    }

    .footer-logo-icon span { display: block; background: rgba(255,255,255,.9); border-radius: 1px; }
    .footer-logo-icon span:nth-child(5) { background: rgba(255,255,255,.25); }

    .footer-logo-name { font-family: var(--font-h); font-size: 16px; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
    .footer-logo-name span { color: var(--blue); }
    .footer-desc { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 240px; }
    .footer-col-h { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 18px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { font-size: 14px; color: rgba(255,255,255,.55); text-decoration: none; transition: color .15s; }
    .footer-links a:hover { color: rgba(255,255,255,.9); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,.06); }
    .footer-bottom-inner {
      max-width: var(--max); margin: 0 auto; padding: 20px 32px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px; font-size: 13px; color: rgba(255,255,255,.3);
    }
    .footer-bottom-inner a { color: rgba(255,255,255,.3); text-decoration: none; transition: color .15s; }
    .footer-bottom-inner a:hover { color: rgba(255,255,255,.7); }

    /* ─── REVEAL ─── */
    .reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
    .reveal.in { opacity: 1; transform: none; }
    .d1 { transition-delay: .07s; }
    .d2 { transition-delay: .14s; }
    .d3 { transition-delay: .21s; }
    .d4 { transition-delay: .28s; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(14px); }
      to   { opacity: 1; transform: none; }
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .contact-inner { grid-template-columns: 1fr; }
      .contact-aside { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
      .quick-card { grid-column: span 2; }
      .faq-grid { grid-template-columns: 1fr; }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
    }

    @media (max-width: 768px) {
      .nav-inner { padding: 0 20px; gap: 16px; }
      .nav-links, .nav-ghost { display: none; }
      .ph-inner { padding: 0 20px; }
      .ph-content { flex-direction: column; align-items: flex-start; gap: 20px; }
      .contact-inner { padding: 0 20px; }
      .faq-inner { padding: 0 20px; }
      .contact-aside { grid-template-columns: 1fr; }
      .quick-card { grid-column: span 1; }
      .subject-types { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .form-card { padding: 24px 20px; }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 20px; }
      .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
    }

/* ─────────────────────────────────────────────────────────
   THEME PRODUCT — Sticky Bar, Screenshots, Demo Grid, Specs, Changelog
───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --white:     #FFFFFF;
      --off:       #F7F8FC;
      --gray-50:   #F0F2F8;
      --gray-100:  #E4E7F0;
      --gray-200:  #C9CEDC;
      --gray-400:  #8892A4;
      --gray-600:  #4E5870;
      --ink:       #0F1523;
      --blue:      #3D5AFE;
      --blue-d:    #2645FD;
      --blue-l:    #EEF1FF;
      --blue-m:    #C7D0FF;
      --green:     #16A34A;
      --green-l:   #DCFCE7;
      --amber:     #D97706;
      --amber-l:   #FEF3C7;
      --shadow-s:  0 1px 3px rgba(15,21,35,.06), 0 1px 2px rgba(15,21,35,.04);
      --shadow-m:  0 4px 16px rgba(15,21,35,.08), 0 1px 4px rgba(15,21,35,.04);
      --shadow-l:  0 12px 40px rgba(15,21,35,.10), 0 2px 8px rgba(15,21,35,.05);
      --shadow-xl: 0 24px 64px rgba(15,21,35,.12), 0 4px 16px rgba(15,21,35,.06);
      --radius:    10px;
      --radius-l:  16px;
      --font-h:    'Bricolage Grotesque', sans-serif;
      --font-b:    'DM Sans', sans-serif;
      --max:       1200px;

      /* ── Change this to switch between free / premium ── */
      --is-premium: 1; /* 1 = premium, 0 = free */
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--white);
      color: var(--ink);
      font-family: var(--font-b);
      font-size: 15px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--off); }
    ::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 4px; }

    .container {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 32px;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 200;
      background: rgba(255,255,255,.9);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--gray-100);
      height: 64px;
    }

    .nav-inner {
      max-width: var(--max); margin: 0 auto; padding: 0 32px;
      height: 100%; display: flex; align-items: center; gap: 32px;
    }

    .nav-logo {
      display: flex; align-items: center; gap: 9px;
      text-decoration: none; flex-shrink: 0;
    }

    .logo-icon {
      width: 32px; height: 32px; background: var(--blue); border-radius: 7px;
      display: grid; grid-template: repeat(3,7px) / repeat(3,7px);
      gap: 2px; padding: 5.5px;
    }

    .logo-icon span { background: rgba(255,255,255,.9); border-radius: 1px; display: block; }
    .logo-icon span:nth-child(5) { background: rgba(255,255,255,.3); }

    .logo-name {
      font-family: var(--font-h); font-size: 17px; font-weight: 700;
      color: var(--ink); letter-spacing: -0.03em;
    }
    .logo-name span { color: var(--blue); }

    .nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
    .nav-links a {
      display: block; padding: 6px 12px; font-size: 14px;
      color: var(--gray-600); text-decoration: none; border-radius: 7px;
      transition: color .15s, background .15s;
    }
    .nav-links a:hover { color: var(--ink); background: var(--off); }

    .nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }

    .nav-btn {
      background: var(--blue); color: #fff; font-family: var(--font-b);
      font-size: 14px; font-weight: 500; padding: 8px 18px; border-radius: 8px;
      text-decoration: none; transition: background .15s, transform .1s;
      box-shadow: 0 2px 8px rgba(61,90,254,.25);
    }
    .nav-btn:hover { background: var(--blue-d); transform: translateY(-1px); }

    /* ─── STICKY BUY BAR ─── */
    /* ─── BREADCRUMB ─── */
    .breadcrumb {
      padding-top: 88px; padding-bottom: 0;
    }

    .breadcrumb-inner {
      max-width: var(--max); margin: 0 auto; padding: 20px 32px;
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; color: var(--gray-400);
    }

    .breadcrumb-inner a {
      color: var(--gray-400); text-decoration: none; transition: color .15s;
    }
    .breadcrumb-inner a:hover { color: var(--blue); }

    .bc-sep {
      color: var(--gray-200);
    }

    .bc-current { color: var(--ink); font-weight: 500; }

    /* ─── HERO ─── */
    .theme-hero {
      padding: 24px 0 80px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 64px;
      align-items: start;
    }

    .hero-grid > div:last-child {
      align-self: stretch;
    }

    /* left */
    .hero-badges {
      display: flex; align-items: center; gap: 8px; margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .hbadge {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 12px; font-weight: 600; padding: 4px 11px;
      border-radius: 100px;
    }

    .hbadge.premium { background: var(--blue-l); color: var(--blue); }
    .hbadge.free    { background: var(--green-l); color: var(--green); }
    .hbadge.new     { background: var(--amber-l); color: var(--amber); }
    .hbadge.version {
      background: var(--gray-50); color: var(--gray-600);
      border: 1px solid var(--gray-100);
    }

    .hero-title {
      font-family: var(--font-h);
      font-size: clamp(40px, 5vw, 64px);
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1.0;
      color: var(--ink);
      margin-bottom: 16px;
    }

    .hero-tagline {
      font-size: 17px; color: var(--gray-600);
      line-height: 1.7; margin-bottom: 24px; max-width: 520px;
    }

    /* rating */
    .hero-rating {
      display: flex; align-items: center; gap: 10px; margin-bottom: 28px;
    }

    .rating-stars { display: flex; gap: 3px; }
    .rating-star  { color: #F59E0B; font-size: 16px; line-height: 1; }

    .rating-score {
      font-family: var(--font-h); font-weight: 700; font-size: 15px;
    }

    .rating-count { font-size: 13px; color: var(--gray-400); }

    .hero-tags {
      display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px;
    }

    .htag {
      font-size: 12px; color: var(--gray-600); background: var(--gray-50);
      border: 1px solid var(--gray-100); padding: 5px 12px; border-radius: 7px;
    }

    /* hero actions (mobile / inline) */
    .hero-actions-inline {
      display: none; /* hidden on desktop, shown on mobile */
    }

    /* right: purchase card */
    .purchase-card {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius-l);
      box-shadow: var(--shadow-l);
      overflow: hidden;
      position: sticky;
      top: 136px;
    }

    /* main screenshot in card */
    .pc-preview {
      max-height: 280px;
      background: linear-gradient(145deg, #0D1B2E 0%, #1A3358 100%);
      position: relative;
      overflow: hidden;
    }

    .pc-thumb-img {
      display: block;
      width: 100%;
      height: auto;
      position: relative;
      top: 0;
      left: 0;
    }

    .pc-browser {
      position: absolute; top: 0; left: 0; right: 0;
      background: rgba(0,0,0,.2);
      padding: 9px 12px;
      display: flex; align-items: center; gap: 6px;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .pc-dots { display: flex; gap: 4px; }
    .pc-dot { width: 8px; height: 8px; border-radius: 50%; }
    .pc-dot-r { background: #FF5F57; }
    .pc-dot-y { background: #FFBD2E; }
    .pc-dot-g { background: #27C840; }
    .pc-url {
      flex: 1; height: 18px; background: rgba(255,255,255,.07);
      border-radius: 4px; max-width: 160px; margin: 0 auto;
    }

    .pc-screen {
      position: absolute; inset: 40px 16px 16px;
      display: flex; flex-direction: column; gap: 8px;
    }

    .pc-bar { height: 5px; border-radius: 3px; background: rgba(255,255,255,.55); }
    .pc-bar.accent { background: var(--blue); width: 45%; }
    .pc-bar.w-full { width: 100%; }
    .pc-bar.w-3q   { width: 75%; }
    .pc-bar.w-half { width: 50%; opacity: .5; }
    .pc-btn { width: 70px; height: 18px; border-radius: 4px; background: var(--blue); }
    .pc-img-row { display: flex; gap: 8px; flex: 1; margin-top: 4px; }
    .pc-img { flex: 1; background: rgba(255,255,255,.07); border-radius: 4px; }

    /* purchase card body */
    .pc-body { padding: 24px; }

    .pc-price-row {
      display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px;
    }

    .pc-price {
      font-family: var(--font-h); font-size: 36px; font-weight: 800;
      letter-spacing: -0.04em; color: var(--ink);
    }

    .pc-price.free { color: var(--green); font-size: 28px; }

    .pc-price-note {
      font-size: 13px; color: var(--gray-400);
    }

    .pc-license-note {
      font-size: 12px; color: var(--gray-400); margin-bottom: 20px;
      display: flex; align-items: center; gap: 5px;
    }

    .pc-actions { display: flex; flex-direction: column; gap: 10px; }

    .btn-buy {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      padding: 13px 24px; border-radius: 10px; font-family: var(--font-b);
      font-size: 15px; font-weight: 600; text-decoration: none;
      background: var(--blue); color: #fff;
      box-shadow: 0 4px 16px rgba(61,90,254,.3);
      transition: background .15s, transform .1s, box-shadow .15s;
    }

    .btn-buy:hover {
      background: var(--blue-d); transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(61,90,254,.4);
    }

    .btn-buy.free {
      background: var(--green);
      box-shadow: 0 4px 16px rgba(22,163,74,.25);
    }

    .btn-buy.free:hover {
      background: #15803D;
      box-shadow: 0 8px 24px rgba(22,163,74,.35);
    }

    .btn-preview {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      padding: 12px 24px; border-radius: 10px; font-family: var(--font-b);
      font-size: 15px; font-weight: 500; text-decoration: none;
      background: var(--off); color: var(--ink);
      border: 1px solid var(--gray-100);
      transition: border-color .15s, background .15s;
    }

    .btn-preview:hover { background: var(--gray-50); border-color: var(--gray-200); }

    .pc-meta {
      margin-top: 20px; padding-top: 20px;
      border-top: 1px solid var(--gray-100);
      display: flex; flex-direction: column; gap: 10px;
    }

    .pc-meta-row {
      display: flex; align-items: center; justify-content: space-between;
      font-size: 13px;
    }

    .pc-meta-label { color: var(--gray-400); }
    .pc-meta-val   { font-weight: 500; color: var(--ink); }
    .pc-meta-val.green { color: var(--green); }

    /* ─── SCREENSHOTS ─── */
    .screenshots-section {
      padding: 80px 0;
      background: var(--off);
      border-top: 1px solid var(--gray-100);
      border-bottom: 1px solid var(--gray-100);
    }

    .section-head {
      margin-bottom: 36px;
    }

    .section-kicker {
      font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--blue); margin-bottom: 8px;
      display: block;
    }

    .section-title {
      font-family: var(--font-h); font-size: clamp(24px, 3vw, 36px);
      font-weight: 800; letter-spacing: -0.03em; line-height: 1.1;
    }

    .screenshots-scroll {
      display: flex; gap: 16px;
      overflow-x: auto; padding-bottom: 12px;
      scrollbar-width: thin;
      scrollbar-color: var(--gray-200) transparent;
      -webkit-overflow-scrolling: touch;
    }

    .screenshots-scroll::-webkit-scrollbar { height: 4px; }
    .screenshots-scroll::-webkit-scrollbar-track { background: transparent; }
    .screenshots-scroll::-webkit-scrollbar-thumb {
      background: var(--gray-200); border-radius: 4px;
    }

    .screenshot-item {
      flex-shrink: 0; width: 340px; border-radius: var(--radius-l);
      overflow: hidden; border: 1px solid var(--gray-100);
      box-shadow: var(--shadow-s); cursor: pointer;
      transition: transform .25s, box-shadow .25s;
    }

    .screenshot-item:hover {
      transform: translateY(-4px); box-shadow: var(--shadow-m);
    }

    .screenshot-preview {
      height: 200px; position: relative; overflow: hidden;
    }

    .sc-bg { position: absolute; inset: 0; }

    /* different page previews */
    .sc-home    { background: linear-gradient(145deg, #0D1B2E 0%, #1A3358 100%); }
    .sc-about   { background: linear-gradient(145deg, #0F2017 0%, #1A3A25 100%); }
    .sc-blog    { background: linear-gradient(145deg, #1E1535 0%, #2D2550 100%); }
    .sc-shop    { background: linear-gradient(145deg, #1A1010 0%, #2D1A1A 100%); }
    .sc-contact { background: linear-gradient(145deg, #0F1A2E 0%, #152540 100%); }

    .sc-content {
      position: absolute; inset: 14px 18px 14px;
      display: flex; flex-direction: column; gap: 7px;
    }

    .sc-nav {
      display: flex; align-items: center; justify-content: space-between;
      padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .sc-logo-bar { width: 48px; height: 5px; background: rgba(255,255,255,.6); border-radius: 3px; }
    .sc-nav-links { display: flex; gap: 5px; }
    .sc-nav-link  { width: 22px; height: 4px; background: rgba(255,255,255,.25); border-radius: 2px; }

    .sc-h { height: 5px; border-radius: 3px; background: rgba(255,255,255,.55); }
    .sc-h.accent { background: var(--blue); width: 40%; }
    .sc-h.w-full { width: 100%; }
    .sc-h.w-3q   { width: 70%; }
    .sc-h.w-half { width: 50%; opacity: .55; }
    .sc-h.thin   { height: 3px; opacity: .35; }

    .sc-row { display: flex; gap: 7px; }
    .sc-card { flex: 1; background: rgba(255,255,255,.06); border-radius: 4px; min-height: 30px; }

    .screenshot-label {
      padding: 12px 16px;
      background: var(--white);
      font-size: 13px; font-weight: 600; color: var(--ink);
      border-top: 1px solid var(--gray-100);
      display: flex; align-items: center; justify-content: space-between;
    }

    .sc-label-tag {
      font-size: 11px; color: var(--gray-400); font-weight: 400;
    }

    /* ─── FEATURES ─── */
    .features-section {
      padding: 80px 0;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 40px;
    }

    .feat-card {
      padding: 28px 24px;
      border: 1px solid var(--gray-100);
      border-radius: var(--radius-l);
      background: var(--white);
      box-shadow: var(--shadow-s);
      transition: transform .2s, box-shadow .2s;
    }

    .feat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); }

    .feat-icon {
      width: 44px; height: 44px; background: var(--blue-l); border-radius: 11px;
      display: flex; align-items: center; justify-content: center;
      color: var(--blue); margin-bottom: 16px;
    }

    .feat-title {
      font-family: var(--font-h); font-size: 16px; font-weight: 700;
      letter-spacing: -0.02em; margin-bottom: 8px;
    }

    .feat-body { font-size: 13px; color: var(--gray-600); line-height: 1.7; }

    /* ─── DEMO PAGES ─── */
    .demos-section {
      padding: 80px 0;
      background: var(--off);
      border-top: 1px solid var(--gray-100);
      border-bottom: 1px solid var(--gray-100);
    }

    .demos-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 36px;
    }

    .demo-item {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--gray-100);
      background: var(--white);
      box-shadow: var(--shadow-s);
      cursor: pointer;
      text-decoration: none;
      display: block;
      transition: transform .2s, box-shadow .2s;
    }

    .demo-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }

    .demo-thumb {
      height: 120px; position: relative; overflow: hidden;
    }

    .dt-bg {
      position: absolute; inset: 0;
      transition: transform .4s;
    }

    .demo-item:hover .dt-bg { transform: scale(1.05); }

    .dt-1 { background: linear-gradient(145deg, #0D1B2E, #1A3358); }
    .dt-2 { background: linear-gradient(145deg, #0F2017, #193D28); }
    .dt-3 { background: linear-gradient(145deg, #1A1535, #2D2550); }
    .dt-4 { background: linear-gradient(145deg, #1A1010, #2D1A1A); }
    .dt-5 { background: linear-gradient(145deg, #0F1A2E, #152540); }
    .dt-6 { background: linear-gradient(145deg, #1A1208, #2D2010); }

    .dt-content {
      position: absolute; inset: 10px 12px 10px;
      display: flex; flex-direction: column; gap: 5px;
    }

    .dt-bar { height: 4px; border-radius: 2px; background: rgba(255,255,255,.5); }
    .dt-bar.accent { background: var(--blue); width: 35%; }
    .dt-bar.w-full { width: 100%; }
    .dt-bar.w-3q   { width: 70%; }
    .dt-bar.w-half { width: 50%; opacity: .5; }
    .dt-row { display: flex; gap: 5px; flex: 1; margin-top: 2px; }
    .dt-card { flex: 1; background: rgba(255,255,255,.06); border-radius: 3px; }

    .demo-meta {
      padding: 11px 14px;
      border-top: 1px solid var(--gray-100);
      display: flex; align-items: center; justify-content: space-between;
    }

    .demo-name {
      font-size: 13px; font-weight: 600; color: var(--ink);
      font-family: var(--font-h); letter-spacing: -0.01em;
    }

    .demo-arrow {
      width: 24px; height: 24px; border-radius: 6px;
      background: var(--gray-50); color: var(--gray-400);
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; transition: background .15s, color .15s;
    }

    .demo-item:hover .demo-arrow { background: var(--blue); color: #fff; }

    /* ─── THEME DETAILS ─── */
    .details-section {
      padding: 80px 0;
    }

    .details-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      margin-top: 40px;
    }

    .details-table {
      border: 1px solid var(--gray-100);
      border-radius: var(--radius-l);
      overflow: hidden;
    }

    .dt-row-item {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 20px; border-bottom: 1px solid var(--gray-100);
      font-size: 14px;
    }

    .dt-row-item:last-child { border-bottom: none; }

    .dt-label { color: var(--gray-600); }

    .dt-value {
      font-weight: 500; color: var(--ink); text-align: right;
      display: flex; align-items: center; gap: 6px;
    }

    .dt-value .pill {
      font-size: 11px; font-weight: 600; padding: 2px 8px;
      border-radius: 100px;
    }

    .pill-green { background: var(--green-l); color: var(--green); }
    .pill-blue  { background: var(--blue-l);  color: var(--blue); }

    /* hero inline content */
    .hero-theme-content {
      margin-top: 24px;
    }

    /* theme post content */
    .theme-content {
      font-size: 15px;
      line-height: 1.75;
      color: var(--gray-700);
    }

    .theme-content h2, .theme-content h3, .theme-content h4 {
      font-family: var(--font-h);
      font-weight: 700;
      color: var(--ink);
      letter-spacing: -0.02em;
      margin: 1.6em 0 0.5em;
    }

    .theme-content h2 { font-size: 22px; }
    .theme-content h3 { font-size: 18px; }
    .theme-content h4 { font-size: 15px; }

    .theme-content p { margin: 0 0 1em; }

    .theme-content ul, .theme-content ol {
      padding-left: 22px;
      margin: 0 0 1em;
      display: flex; flex-direction: column; gap: 5px;
    }

    .theme-content ul { list-style: disc; }
    .theme-content ol { list-style: decimal; }

    .theme-content li { font-size: 14.5px; color: var(--gray-600); }

    .theme-content strong { font-weight: 600; color: var(--ink); }

    .theme-content a { color: var(--blue); text-decoration: underline; }

    .theme-content code {
      font-family: 'Menlo', monospace;
      font-size: 13px;
      background: var(--gray-50);
      border: 1px solid var(--gray-100);
      padding: 1px 6px;
      border-radius: 4px;
    }

    .theme-content hr {
      border: none;
      border-top: 1px solid var(--gray-100);
      margin: 2em 0;
    }

    /* changelog */
    .changelog-list {
      display: flex; flex-direction: column; gap: 0;
      border: 1px solid var(--gray-100); border-radius: var(--radius-l);
      overflow: hidden;
    }

    .cl-item {
      border-bottom: 1px solid var(--gray-100);
    }

    .cl-item:last-child { border-bottom: none; }

    .cl-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 20px; cursor: pointer;
      transition: background .15s;
      user-select: none;
    }

    .cl-header:hover { background: var(--off); }

    .cl-version-row { display: flex; align-items: center; gap: 10px; }

    .cl-ver {
      font-family: var(--font-h); font-size: 15px; font-weight: 700;
      letter-spacing: -0.02em;
    }

    .cl-date { font-size: 12px; color: var(--gray-400); }

    .cl-latest {
      font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
      text-transform: uppercase; background: var(--blue-l); color: var(--blue);
      padding: 2px 8px; border-radius: 100px;
    }

    .cl-toggle {
      width: 28px; height: 28px; border-radius: 7px;
      background: var(--gray-50); color: var(--gray-400);
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; transition: transform .2s, background .15s;
      flex-shrink: 0;
    }

    .cl-item.open .cl-toggle {
      transform: rotate(180deg); background: var(--blue-l); color: var(--blue);
    }

    .cl-body {
      max-height: 0; overflow: hidden;
      transition: max-height .3s cubic-bezier(.4,0,.2,1);
    }

    .cl-item.open .cl-body { max-height: 400px; }

    .cl-changes {
      padding: 0 20px 18px;
      display: flex; flex-direction: column; gap: 7px;
    }

    .cl-change {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 13px; color: var(--gray-600);
    }

    .cl-type {
      font-size: 10px; font-weight: 700; letter-spacing: 0.07em;
      text-transform: uppercase; padding: 2px 7px; border-radius: 4px;
      flex-shrink: 0; margin-top: 1px;
    }

    .cl-type.added   { background: var(--green-l); color: var(--green); }
    .cl-type.fixed   { background: #FEE2E2; color: #DC2626; }
    .cl-type.updated { background: var(--blue-l); color: var(--blue); }

    /* ─── FAQ ─── */
    .faq-section {
      padding: 80px 0;
      background: var(--off);
      border-top: 1px solid var(--gray-100);
    }

    /* accordion variant — tek kolon, card yok */
    .faq-section--accordion .faq-grid {
      display: block;
      max-width: 760px;
      margin: 40px auto 0;
    }

    .faq-section--accordion .faq-item {
      background: none;
      border: none;
      border-bottom: 1px solid var(--gray-100);
      border-radius: 0;
      overflow: visible;
      box-shadow: none;
    }

    .faq-section--accordion .faq-q {
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px; padding: 20px 0; cursor: pointer;
      font-family: var(--font-h); font-size: 16px; font-weight: 600;
      letter-spacing: -0.02em; user-select: none;
      transition: color .15s;
    }

    .faq-section--accordion .faq-q:hover { background: none; color: var(--blue); }

    .faq-section--accordion .faq-icon {
      width: 28px; height: 28px; border-radius: 7px;
      background: var(--gray-100); color: var(--gray-600);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; flex-shrink: 0;
      transition: transform .25s, background .15s, color .15s;
    }

    .faq-section--accordion .faq-item.open .faq-icon {
      transform: rotate(45deg); background: var(--blue-l); color: var(--blue);
    }

    .faq-section--accordion .faq-a {
      padding: 0;
      transition: max-height .3s cubic-bezier(.4,0,.2,1);
    }

    .faq-section--accordion .faq-item.open .faq-a { max-height: 300px; padding: 0; }

    .faq-section--accordion .faq-a-inner {
      padding-bottom: 20px;
      font-size: 14px; color: var(--gray-600); line-height: 1.8;
    }

    /* ─── BOTTOM CTA ─── */
    .bottom-cta {
      padding: 80px 0;
    }

    .bottom-cta-box {
      background: linear-gradient(135deg, var(--blue) 0%, #5C6EFF 100%);
      border-radius: 24px; padding: 64px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 40px; position: relative; overflow: hidden;
      box-shadow: 0 16px 60px rgba(61,90,254,.3);
    }

    .bottom-cta-box::before {
      content: ''; position: absolute; top: -60px; right: -60px;
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-left h2 {
      font-family: var(--font-h); font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1.1;
      margin-bottom: 10px;
    }

    .cta-left p {
      font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.65;
    }

    .cta-right-btns {
      display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap;
    }

    .btn-cta-white {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 28px; border-radius: 10px; background: #fff;
      color: var(--blue); font-family: var(--font-b); font-size: 15px;
      font-weight: 600; text-decoration: none;
      transition: background .15s, transform .1s;
    }

    .btn-cta-white:hover { background: var(--blue-l); transform: translateY(-1px); }

    .btn-cta-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 28px; border-radius: 10px;
      border: 1px solid rgba(255,255,255,.35); color: #fff;
      font-family: var(--font-b); font-size: 15px; font-weight: 500;
      text-decoration: none; transition: background .15s;
    }

    .btn-cta-ghost:hover { background: rgba(255,255,255,.1); }

    /* ─── FOOTER ─── */
    footer { background: var(--ink); color: rgba(255,255,255,.85); }

    .footer-main {
      max-width: var(--max); margin: 0 auto; padding: 56px 32px 44px;
      display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 56px;
    }

    .footer-logo-row { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }

    .f-logo-icon {
      width: 30px; height: 30px; background: var(--blue); border-radius: 7px;
      display: grid; grid-template: repeat(3,6px) / repeat(3,6px);
      gap: 2px; padding: 5px;
    }

    .f-logo-icon span { display: block; background: rgba(255,255,255,.9); border-radius: 1px; }
    .f-logo-icon span:nth-child(5) { background: rgba(255,255,255,.25); }

    .f-logo-name {
      font-family: var(--font-h); font-size: 16px; font-weight: 700;
      color: #fff; letter-spacing: -0.02em;
    }
    .f-logo-name span { color: var(--blue); }

    .footer-desc { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.75; max-width: 220px; }

    .footer-col-h {
      font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px;
    }

    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .footer-links a { font-size: 14px; color: rgba(255,255,255,.5); text-decoration: none; transition: color .15s; }
    .footer-links a:hover { color: rgba(255,255,255,.9); }

    .footer-bottom { border-top: 1px solid rgba(255,255,255,.06); }
    .footer-bottom-inner {
      max-width: var(--max); margin: 0 auto; padding: 18px 32px;
      display: flex; align-items: center; justify-content: space-between;
      font-size: 13px; color: rgba(255,255,255,.3);
    }
    .footer-bottom-inner a { color: rgba(255,255,255,.3); text-decoration: none; transition: color .15s; }
    .footer-bottom-inner a:hover { color: rgba(255,255,255,.7); }

    /* ─── REVEAL ─── */
    .reveal {
      opacity: 0; transform: translateY(18px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.in { opacity: 1; transform: none; }
    .d1 { transition-delay: .08s; }
    .d2 { transition-delay: .16s; }
    .d3 { transition-delay: .24s; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; gap: 40px; }
      .purchase-card { position: static; }
      .hero-actions-inline { display: flex; gap: 12px; flex-wrap: wrap; }
      .demos-grid { grid-template-columns: repeat(3, 1fr); }
      .details-grid { grid-template-columns: 1fr; }
      .bottom-cta-box { flex-direction: column; gap: 28px; }
    }

    @media (max-width: 768px) {
      .container { padding: 0 20px; }
      .nav-inner { padding: 0 20px; }
      .nav-links { display: none; }
      .features-grid { grid-template-columns: 1fr 1fr; }
      .demos-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 44px 20px; }
      .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; padding: 16px 20px; }
      .bottom-cta-box { padding: 40px 28px; }
    }

    @media (max-width: 480px) {
      .features-grid { grid-template-columns: 1fr; }
      .demos-grid { grid-template-columns: 1fr; }
    }

/* ─────────────────────────────────────────────────────────
   THEMES LISTING — Filter Toolbar, Theme Cards, Featured Banner
───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --white:    #FFFFFF;
      --off:      #F7F8FC;
      --gray-50:  #F0F2F8;
      --gray-100: #E4E7F0;
      --gray-200: #C9CEDC;
      --gray-400: #8892A4;
      --gray-600: #4E5870;
      --ink:      #0F1523;
      --blue:     #3D5AFE;
      --blue-d:   #2645FD;
      --blue-l:   #EEF1FF;
      --blue-m:   #C7D0FF;
      --green:    #16A34A;
      --green-l:  #DCFCE7;
      --amber:    #D97706;
      --amber-l:  #FEF3C7;
      --rose:     #E11D48;
      --rose-l:   #FFE4E6;
      --violet:   #7C3AED;
      --violet-l: #EDE9FE;
      --teal:     #0D9488;
      --teal-l:   #CCFBF1;
      --shadow-s: 0 1px 3px rgba(15,21,35,.06), 0 1px 2px rgba(15,21,35,.04);
      --shadow-m: 0 4px 16px rgba(15,21,35,.08), 0 1px 4px rgba(15,21,35,.04);
      --shadow-l: 0 12px 40px rgba(15,21,35,.10), 0 2px 8px rgba(15,21,35,.05);
      --shadow-xl:0 24px 64px rgba(15,21,35,.12), 0 4px 16px rgba(15,21,35,.06);
      --radius:   10px;
      --radius-l: 16px;
      --font-h:   'Bricolage Grotesque', sans-serif;
      --font-b:   'DM Sans', sans-serif;
      --max:      1200px;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--white);
      color: var(--ink);
      font-family: var(--font-b);
      font-size: 15px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--off); }
    ::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 4px; }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(255,255,255,.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--gray-100);
      height: 68px;
    }

    .nav-inner {
      max-width: var(--max); margin: 0 auto;
      padding: 0 32px; height: 100%;
      display: flex; align-items: center; gap: 40px;
    }

    .nav-logo {
      display: flex; align-items: center; gap: 9px;
      text-decoration: none; flex-shrink: 0;
    }

    .logo-icon {
      width: 34px; height: 34px;
      background: var(--blue); border-radius: 8px;
      display: grid;
      grid-template: repeat(3,8px) / repeat(3,8px);
      gap: 2.5px; padding: 6px;
    }

    .logo-icon span {
      background: rgba(255,255,255,.9);
      border-radius: 1.5px; display: block;
    }

    .logo-icon span:nth-child(5) { background: rgba(255,255,255,.35); }

    .logo-name {
      font-family: var(--font-h);
      font-size: 18px; font-weight: 700;
      color: var(--ink); letter-spacing: -0.03em;
    }

    .logo-name span { color: var(--blue); }

    .nav-links {
      display: flex; align-items: center;
      gap: 4px; list-style: none;
    }

    .nav-links a {
      display: block; padding: 7px 14px;
      font-size: 14px; font-weight: 400;
      color: var(--gray-600); text-decoration: none;
      border-radius: 7px;
      transition: color .15s, background .15s;
    }

    .nav-links a:hover { color: var(--ink); background: var(--off); }
    .nav-links a.active { color: var(--ink); background: var(--off); font-weight: 500; }

    .nav-right {
      margin-left: auto;
      display: flex; align-items: center; gap: 12px;
    }

    .nav-ghost {
      font-size: 14px; font-weight: 500;
      color: var(--gray-600); text-decoration: none;
      padding: 8px 16px; border-radius: 8px;
      transition: color .15s, background .15s;
    }

    .nav-ghost:hover { color: var(--ink); background: var(--off); }

    .nav-btn {
      background: var(--blue); color: #fff;
      font-family: var(--font-b);
      font-size: 14px; font-weight: 500;
      padding: 9px 20px; border-radius: 8px;
      text-decoration: none;
      box-shadow: 0 2px 8px rgba(61,90,254,.25);
      transition: background .15s, transform .1s, box-shadow .15s;
    }

    .nav-btn:hover {
      background: var(--blue-d); transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(61,90,254,.35);
    }

    /* ─── PAGE HEADER ─── */
    .page-header--centered {
      padding: 108px 0 52px;
      text-align: center;
      position: relative; overflow: hidden;
    }

    .page-header--centered::before {
      content: '';
      position: absolute; top: 0; left: 50%;
      transform: translateX(-50%);
      width: 900px; height: 600px;
      background: radial-gradient(ellipse at 50% 10%, rgba(61,90,254,.06) 0%, transparent 65%);
      pointer-events: none;
    }

    .page-header--centered .breadcrumb {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 13px; color: var(--gray-400);
      margin-bottom: 20px;
    }

    .page-header--centered .breadcrumb a {
      color: var(--gray-400); text-decoration: none;
      transition: color .15s;
    }

    .page-header--centered .breadcrumb a:hover { color: var(--blue); }

    .page-header--centered h1 {
      font-family: var(--font-h);
      font-size: clamp(38px, 4.5vw, 58px);
      font-weight: 800; letter-spacing: -0.03em;
      color: var(--ink); line-height: 1.06;
      margin-bottom: 14px;
    }

    .page-header--centered h1 span { color: var(--blue); }

    .page-header--centered p {
      font-size: 17px; color: var(--gray-600);
      max-width: 500px; margin: 0 auto 40px;
      line-height: 1.7;
    }

    /* search */
    .ph-search-wrap {
      display: flex; justify-content: center;
      margin-bottom: 0;
    }

    .ph-search {
      display: flex; align-items: center;
      border: 1.5px solid var(--gray-100);
      border-radius: var(--radius);
      background: var(--white);
      width: 400px;
      box-shadow: var(--shadow-m);
      overflow: hidden;
      transition: border-color .15s, box-shadow .15s;
    }

    .ph-search:focus-within {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(61,90,254,.1), var(--shadow-m);
    }

    .ph-search-icon {
      padding: 0 14px; color: var(--gray-400);
      display: flex; align-items: center; flex-shrink: 0;
    }

    .ph-search-input {
      flex: 1; border: none; outline: none;
      font-family: var(--font-b);
      font-size: 14.5px; color: var(--ink);
      padding: 13px 0; background: none;
    }

    .ph-search-input::placeholder { color: var(--gray-400); }

    .ph-search-btn {
      background: var(--blue); border: none;
      padding: 13px 18px; color: #fff;
      cursor: pointer; display: flex; align-items: center;
      flex-shrink: 0; align-self: stretch;
      transition: background .15s;
    }

    .ph-search-btn:hover { background: var(--blue-d); }

    /* ─── FILTER TOOLBAR ─── */
    .toolbar-wrap {
      border-top: 1px solid var(--gray-100);
      border-bottom: 1px solid var(--gray-100);
      background: var(--white);
      position: sticky; top: 68px; z-index: 50;
    }

    .toolbar {
      max-width: var(--max); margin: 0 auto;
      padding: 0 32px;
      display: flex; align-items: center;
    }

    /* category tabs */
    .cat-tabs {
      display: flex; align-items: center;
      gap: 2px; overflow-x: auto; scrollbar-width: none;
      flex: 1;
    }

    .cat-tabs::-webkit-scrollbar { display: none; }

    .cat-tab {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 11px 15px;
      font-family: var(--font-b);
      font-size: 13.5px; font-weight: 500;
      color: var(--gray-600);
      background: none; border: none; cursor: pointer;
      border-bottom: 2px solid transparent;
      white-space: nowrap;
      transition: color .15s, border-color .15s;
      margin-bottom: -1px;
    }

    .cat-tab:hover { color: var(--ink); }

    .cat-tab.active {
      color: var(--blue);
      border-bottom-color: var(--blue);
    }

    .cat-tab-count {
      background: var(--gray-50); color: var(--gray-400);
      font-size: 11px; font-weight: 600;
      padding: 1px 6px; border-radius: 10px; line-height: 1.6;
    }

    .cat-tab.active .cat-tab-count {
      background: var(--blue-l); color: var(--blue);
    }

    /* toolbar right */
    .toolbar-right {
      display: flex; align-items: center; gap: 10px;
      flex-shrink: 0; padding: 8px 0 8px 16px;
      border-left: 1px solid var(--gray-100);
      margin-left: 8px;
    }

    .sort-select {
      font-family: var(--font-b);
      font-size: 13px; color: var(--ink);
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: 8px;
      padding: 7px 30px 7px 11px;
      appearance: none; -webkit-appearance: none;
      cursor: pointer; outline: none;
      background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' fill='none' stroke='%238892A4' stroke-width='1.5' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 10px center;
      transition: border-color .15s;
    }

    .sort-select:focus { border-color: var(--blue); }

    /* Free/Premium toggle */
    .type-toggle {
      display: flex; gap: 3px;
      background: var(--gray-50);
      border-radius: 9px; padding: 3px;
    }

    .type-btn {
      padding: 5px 13px; border-radius: 6px;
      font-size: 13px; font-weight: 500;
      font-family: var(--font-b);
      border: none; cursor: pointer;
      color: var(--gray-600); background: none;
      transition: background .15s, color .15s, box-shadow .15s;
      white-space: nowrap;
    }

    .type-btn.active {
      background: var(--white);
      color: var(--ink);
      box-shadow: var(--shadow-s);
    }

    /* result count */
    .result-count {
      font-size: 13px; color: var(--gray-400);
      white-space: nowrap;
    }

    .result-count strong { color: var(--ink); font-weight: 600; }

    /* ─── MAIN CONTENT ─── */
    .themes-content {
      max-width: var(--max); margin: 0 auto;
      padding: 40px 32px 100px;
    }

    /* ─── FEATURED BANNER ─── */
    .featured-banner {
      display: grid;
      grid-template-columns: 360px 1fr;
      border-radius: var(--radius-l);
      overflow: hidden;
      border: 1px solid var(--gray-100);
      box-shadow: var(--shadow-l);
      margin: 0 auto 40px;
      background: var(--white);
      max-width: 860px;
    }

    .fb-cover {
      background: linear-gradient(145deg, #1e1b4b 0%, #3730a3 40%, #4f46e5 70%, #818cf8 100%);
      position: relative;
      overflow: hidden;
      display: flex; align-items: flex-end;
      padding: 28px;
      max-height: 340px;
      text-decoration: none;
      cursor: pointer;
    }

    .fb-cover:hover img { transform: scale(1.03); transition: transform .4s ease; }

    .fb-cover img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: auto;
    }

    .fb-cover::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at 20% 85%, rgba(99,102,241,.6) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 15%, rgba(167,139,250,.4) 0%, transparent 50%);
    }

    /* deco grid lines */
    .fb-cover::after {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
      background-size: 40px 40px;
    }

    /* css mockup inside cover */
    .fb-mockup {
      position: relative; z-index: 1; width: 100%;
      background: rgba(10,12,24,.65);
      backdrop-filter: blur(4px);
      border-radius: 10px 10px 0 0;
      overflow: hidden;
      box-shadow: 0 -16px 48px rgba(0,0,0,.4);
      transform: translateY(14px);
    }

    .fbm-bar {
      background: rgba(255,255,255,.06);
      padding: 9px 14px;
      display: flex; align-items: center; gap: 8px;
      border-bottom: 1px solid rgba(255,255,255,.05);
    }

    .fbm-dots { display: flex; gap: 5px; }
    .fbm-dot  { width: 8px; height: 8px; border-radius: 50%; }
    .fd-r { background: #FF5F57; }
    .fd-y { background: #FFBD2E; }
    .fd-g { background: #27C840; }

    .fbm-url {
      flex: 1; height: 16px; max-width: 160px; margin: 0 auto;
      background: rgba(255,255,255,.06); border-radius: 4px;
    }

    .fbm-body { padding: 12px; display: flex; flex-direction: column; gap: 7px; }
    .fbm-nav  { height: 6px; background: rgba(255,255,255,.07); border-radius: 3px; }

    .fbm-hero {
      height: 56px;
      background: linear-gradient(90deg, rgba(129,140,248,.25), rgba(167,139,250,.15));
      border-radius: 6px;
      display: flex; align-items: center; padding: 0 12px; gap: 8px;
    }

    .fbm-hero-lines { flex: 1; display: flex; flex-direction: column; gap: 5px; }
    .fbm-hero-line  { height: 5px; background: rgba(255,255,255,.25); border-radius: 2px; }
    .fbm-hero-line:last-child { width: 60%; background: rgba(255,255,255,.13); }

    .fbm-hero-btn {
      width: 44px; height: 20px;
      background: rgba(129,140,248,.6); border-radius: 4px; flex-shrink: 0;
    }

    .fbm-cards {
      display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px;
    }

    .fbm-card {
      height: 34px;
      background: rgba(255,255,255,.05);
      border-radius: 5px; border: 1px solid rgba(255,255,255,.04);
    }

    .fb-body {
      padding: 36px 40px;
      display: flex; flex-direction: column; justify-content: center;
    }

    .fb-top-badges {
      display: flex; align-items: center; gap: 7px;
      margin-bottom: 16px;
    }

    .badge {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 10.5px; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase;
      padding: 3px 9px; border-radius: 5px;
    }

    .badge-featured { background: var(--amber-l); color: var(--amber); }
    .badge-premium  { background: var(--blue-l);  color: var(--blue); }
    .badge-free     { background: var(--green-l); color: var(--green); }
    .badge-new      { background: var(--green-l); color: var(--green); }
    .badge-popular  { background: var(--violet-l); color: var(--violet); }
    .badge-sale     { background: var(--rose-l);  color: var(--rose); }

    .fb-name {
      font-family: var(--font-h);
      font-size: 34px; font-weight: 800;
      color: var(--ink); letter-spacing: -0.03em;
      line-height: 1.05; margin-bottom: 12px;
      text-decoration: none; display: block;
    }

    .fb-name:hover { color: var(--blue); }

    .fb-desc {
      font-size: 15px; color: var(--gray-600);
      line-height: 1.7; margin-bottom: 18px;
      max-width: 360px;
    }

    .fb-tags {
      display: flex; align-items: center; flex-wrap: wrap;
      gap: 6px; margin-bottom: 20px;
    }

    .theme-tag {
      display: inline-block;
      background: var(--gray-50);
      border: 1px solid var(--gray-100);
      color: var(--gray-600);
      font-size: 12px; font-weight: 500;
      padding: 3px 10px; border-radius: 5px;
    }

    .fb-meta {
      display: flex; align-items: center; gap: 18px;
      margin-bottom: 24px;
    }

    .fb-meta-item {
      display: flex; align-items: center; gap: 6px;
      font-size: 13.5px; color: var(--gray-600);
    }

    .stars { display: flex; gap: 2px; }
    .star-f { color: #F59E0B; font-size: 13px; }
    .star-e { color: var(--gray-200); font-size: 13px; }
    .star-val { font-weight: 600; color: var(--ink); }

    .fb-actions {
      display: flex; align-items: center; gap: 12px;
    }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--blue); color: #fff;
      font-family: var(--font-b);
      font-size: 14.5px; font-weight: 500;
      padding: 12px 24px; border-radius: 10px;
      text-decoration: none; border: none; cursor: pointer;
      box-shadow: 0 3px 12px rgba(61,90,254,.3);
      transition: background .15s, transform .1s, box-shadow .15s;
    }

    .btn-primary:hover {
      background: var(--blue-d); transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(61,90,254,.4);
    }

    .btn-ghost {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--white); color: var(--gray-600);
      font-family: var(--font-b);
      font-size: 14.5px; font-weight: 500;
      padding: 12px 24px; border-radius: 10px;
      text-decoration: none; border: 1px solid var(--gray-100);
      box-shadow: var(--shadow-s);
      transition: border-color .15s, color .15s, transform .1s;
    }

    .fb-actions .btn-ghost-sm {
      padding: 12px 24px;
      font-size: 14.5px;
      border-radius: 10px;
      font-family: var(--font-b);
    }

    .btn-ghost:hover {
      border-color: var(--gray-200); color: var(--ink);
      transform: translateY(-1px);
    }

    .fb-price {
      font-family: var(--font-h);
      font-size: 24px; font-weight: 700;
      color: var(--ink); letter-spacing: -0.02em;
    }

    /* ─── THEMES GRID ─── */
    .themes-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .theme-card {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: var(--radius-l);
      overflow: hidden;
      box-shadow: var(--shadow-s);
      transition: box-shadow .25s, transform .25s, border-color .25s;
      display: flex; flex-direction: column;
      position: relative;
    }

    .theme-card:hover {
      box-shadow: var(--shadow-l);
      transform: translateY(-4px);
      border-color: var(--gray-200);
    }

    /* hover quick-action overlay */
    .card-overlay {
      position: absolute; inset: 0;
      background: rgba(15,21,35,.5);
      backdrop-filter: blur(3px);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 8px;
      opacity: 0; pointer-events: none;
      transition: opacity .2s;
      z-index: 5;
      border-radius: calc(var(--radius-l) - 1px);
    }

    .theme-card:hover .card-overlay {
      opacity: 1; pointer-events: all;
    }

    .ov-btn {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 9px 16px; border-radius: 8px;
      font-size: 13px; font-weight: 600;
      font-family: var(--font-b);
      text-decoration: none; border: none; cursor: pointer;
      transition: transform .1s;
    }

    .ov-btn:hover { transform: scale(1.04); }

    .ov-btn-white { background: rgba(255,255,255,.95); color: var(--ink); }
    .ov-btn-blue  { background: var(--blue); color: #fff; box-shadow: 0 4px 16px rgba(61,90,254,.4); }
    .ov-btn-green { background: var(--green); color: #fff; box-shadow: 0 4px 16px rgba(22,163,74,.35); }
    .ov-btn-ghost { background: var(--amber); color: #fff; box-shadow: 0 4px 16px rgba(217,119,6,.35); }
    .ov-btn-ghost:hover { background: #b45309; color: #fff; }

    .card-overlay .ov-btn { width: 140px; justify-content: center; }

    /* preview mockup */
    .card-preview {
      height: 155px;
      position: relative; overflow: hidden;
      flex-shrink: 0;
    }

    .card-preview img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: auto;
      display: block;
    }

    /* unique color per theme */
    .tp-luminos  { background: linear-gradient(145deg, #1e1b4b 0%, #3730a3 55%, #818cf8 100%); }
    .tp-nocturne { background: linear-gradient(145deg, #0C1A1A 0%, #134E4A 55%, #2DD4BF 100%); }
    .tp-meridian { background: linear-gradient(145deg, #0C1F3A 0%, #1E3A5F 55%, #3B82F6 100%); }
    .tp-solace   { background: linear-gradient(145deg, #0F1F14 0%, #14532D 55%, #4ADE80 100%); }
    .tp-forte    { background: linear-gradient(145deg, #431407 0%, #9A3412 55%, #FB923C 100%); }
    .tp-dusk     { background: linear-gradient(145deg, #2D1B00 0%, #78350F 55%, #F59E0B 100%); }
    .tp-prism    { background: linear-gradient(145deg, #4A044E 0%, #86198F 55%, #E879F9 100%); }
    .tp-vela     { background: linear-gradient(145deg, #1E1B33 0%, #4338CA 55%, #A78BFA 100%); }
    .tp-axiom    { background: linear-gradient(145deg, #1c1917 0%, #57534e 55%, #d6d3d1 100%); }

    /* mini browser chrome */
    .card-chrome {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
    }

    .cc-bar {
      background: rgba(0,0,0,.28);
      padding: 8px 10px;
      display: flex; align-items: center; gap: 6px;
      border-bottom: 1px solid rgba(255,255,255,.05);
      flex-shrink: 0;
    }

    .cc-dots { display: flex; gap: 4px; }
    .cc-dot  { width: 7px; height: 7px; border-radius: 50%; }
    .cc-r { background: #FF5F57; }
    .cc-y { background: #FFBD2E; }
    .cc-g { background: #27C840; }

    .cc-url {
      flex: 1; height: 14px; max-width: 110px; margin: 0 auto;
      background: rgba(255,255,255,.07); border-radius: 3px;
    }

    .cc-body {
      flex: 1; padding: 8px;
      display: flex; flex-direction: column; gap: 6px;
    }

    .cc-nav { height: 5px; background: rgba(255,255,255,.07); border-radius: 3px; }

    .cc-hero {
      flex: 1; border-radius: 5px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 5px; padding: 8px;
    }

    .cc-hero-t { height: 7px; width: 65%; background: rgba(255,255,255,.38); border-radius: 3px; }
    .cc-hero-s { height: 5px; width: 45%; background: rgba(255,255,255,.18); border-radius: 3px; }
    .cc-hero-b { height: 16px; width: 56px; background: rgba(255,255,255,.28); border-radius: 4px; margin-top: 3px; }

    .cc-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px; }
    .cc-card { height: 20px; background: rgba(255,255,255,.06); border-radius: 3px; border: 1px solid rgba(255,255,255,.04); }

    /* badges on preview */
    .card-badges {
      position: absolute; top: 10px; left: 10px;
      display: flex; gap: 5px; z-index: 2;
    }

    .cb { font-size: 9.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 2px 7px; border-radius: 4px; }
    .cb-new     { background: rgba(217,119,6,.85);  color: #fff; }
    .cb-popular { background: rgba(124,58,237,.85); color: #fff; }
    .cb-sale    { background: rgba(225,29,72,.85);  color: #fff; }

    /* price tag on preview */
    .card-price-tag {
      position: absolute; top: 10px; right: 10px; z-index: 2;
      font-family: var(--font-h);
      font-size: 13px; font-weight: 700;
      padding: 3px 10px; border-radius: 6px;
    }

    .cpt-free { background: var(--green); color: #fff; }
    .cpt-paid { background: rgba(15,21,35,.55); backdrop-filter: blur(8px); color: #fff; border: 1px solid rgba(255,255,255,.15); }

    /* card info */
    .card-info {
      padding: 12px 14px 0;
      flex: 1; display: flex; flex-direction: column;
    }

    .card-top {
      display: flex; align-items: center;
      justify-content: space-between; gap: 8px;
      margin-bottom: 6px;
    }

    .card-name {
      font-family: var(--font-h);
      font-size: 15px; font-weight: 700;
      color: var(--ink); letter-spacing: -0.02em;
    }

    .card-ver {
      font-size: 11px; color: var(--gray-400);
      background: var(--gray-50); border: 1px solid var(--gray-100);
      padding: 2px 7px; border-radius: 4px;
      font-family: 'Menlo', monospace; flex-shrink: 0;
    }

    .card-desc {
      font-size: 12.5px; color: var(--gray-600);
      line-height: 1.55; margin-bottom: 8px; flex: 1;
    }

    .card-tags {
      display: flex; flex-wrap: wrap; gap: 5px;
      margin-bottom: 14px;
    }

    .card-tag {
      font-size: 11.5px; font-weight: 500;
      padding: 2px 9px; border-radius: 4px;
      background: var(--gray-50); border: 1px solid var(--gray-100);
      color: var(--gray-600);
    }

    /* card footer */
    .card-footer {
      padding: 10px 14px 12px;
      border-top: 1px solid var(--gray-50);
      display: flex; align-items: center;
      justify-content: space-between; gap: 8px;
    }

    .card-rating {
      display: flex; align-items: center; gap: 5px;
    }

    .card-stars { display: flex; gap: 1.5px; }
    .cs  { color: #F59E0B; font-size: 11px; }
    .cse { color: var(--gray-200); font-size: 11px; }

    .card-rv { font-size: 13px; font-weight: 600; color: var(--ink); }
    .card-rc { font-size: 12px; color: var(--gray-400); }

    .card-action {
      display: flex; align-items: center; gap: 8px;
    }

    .card-price {
      font-family: var(--font-h);
      font-size: 16px; font-weight: 700;
      color: var(--ink); letter-spacing: -0.02em;
    }

    .card-price-free {
      font-family: var(--font-h);
      font-size: 14px; font-weight: 700;
      color: var(--green);
    }

    .card-price-old {
      font-size: 13px; color: var(--gray-400);
      text-decoration: line-through;
    }

    .card-btn {
      display: inline-flex; align-items: center; gap: 5px;
      padding: 7px 14px; border-radius: 7px;
      font-size: 13px; font-weight: 600;
      font-family: var(--font-b);
      text-decoration: none; border: none; cursor: pointer;
      transition: background .15s, transform .1s;
    }

    .cbb-blue  { background: var(--blue); color: #fff; box-shadow: 0 2px 8px rgba(61,90,254,.25); }
    .cbb-blue:hover  { background: var(--blue-d); transform: translateY(-1px); }
    .cbb-green { background: var(--green); color: #fff; box-shadow: 0 2px 8px rgba(22,163,74,.2); }
    .cbb-green:hover { background: #15803d; transform: translateY(-1px); }

    /* ─── PAGINATION ─── */
    .pagination {
      display: flex; align-items: center;
      justify-content: space-between;
      margin-top: 48px; gap: 12px;
    }

    .page-info {
      font-size: 13.5px; color: var(--gray-400);
    }

    .page-info strong { color: var(--ink); font-weight: 600; }

    .page-btns {
      display: flex; align-items: center; gap: 5px;
    }

    .pg {
      min-width: 38px; height: 38px;
      border-radius: 9px;
      border: 1px solid var(--gray-100);
      background: var(--white);
      font-family: var(--font-b);
      font-size: 14px; font-weight: 500;
      color: var(--gray-600);
      cursor: pointer;
      display: inline-flex; align-items: center; justify-content: center;
      text-decoration: none; padding: 0 6px;
      transition: border-color .15s, color .15s, background .15s, box-shadow .15s;
      user-select: none;
    }

    .pg:hover { border-color: var(--blue); color: var(--blue); }

    .pg.active {
      background: var(--blue); border-color: var(--blue);
      color: #fff;
      box-shadow: 0 2px 10px rgba(61,90,254,.3);
      pointer-events: none;
    }

    .pg.arrow { color: var(--gray-400); }
    .pg.arrow:hover { border-color: var(--blue); color: var(--blue); }
    .pg.disabled { opacity: .35; pointer-events: none; }

    .pg-dots {
      min-width: 38px; height: 38px;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 13px; color: var(--gray-400);
      user-select: none;
    }

    /* ─── FOOTER ─── */
    footer { background: var(--ink); color: rgba(255,255,255,.85); }

    .footer-main {
      max-width: var(--max); margin: 0 auto;
      padding: 64px 32px 48px;
      display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 60px;
    }

    .footer-logo-row { display: flex; align-items: center; gap: 9px; margin-bottom: 16px; }

    .footer-logo-icon {
      width: 30px; height: 30px; background: var(--blue); border-radius: 7px;
      display: grid; grid-template: repeat(3,6px) / repeat(3,6px); gap: 2px; padding: 5px;
    }

    .footer-logo-icon span { display: block; background: rgba(255,255,255,.9); border-radius: 1px; }
    .footer-logo-icon span:nth-child(5) { background: rgba(255,255,255,.25); }

    .footer-logo-name { font-family: var(--font-h); font-size: 16px; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
    .footer-logo-name span { color: var(--blue); }

    .footer-desc { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 240px; }

    .footer-col-h { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 18px; }

    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { font-size: 14px; color: rgba(255,255,255,.55); text-decoration: none; transition: color .15s; }
    .footer-links a:hover { color: rgba(255,255,255,.9); }

    .footer-bottom { border-top: 1px solid rgba(255,255,255,.06); }
    .footer-bottom-inner {
      max-width: var(--max); margin: 0 auto; padding: 20px 32px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px; font-size: 13px; color: rgba(255,255,255,.3);
    }

    .footer-bottom-inner a { color: rgba(255,255,255,.3); text-decoration: none; transition: color .15s; }
    .footer-bottom-inner a:hover { color: rgba(255,255,255,.7); }

    /* ─── REVEAL ─── */
    .reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
    .reveal.in { opacity: 1; transform: none; }
    .d1 { transition-delay: .06s; }
    .d2 { transition-delay: .12s; }
    .d3 { transition-delay: .18s; }
    .d4 { transition-delay: .24s; }
    .d5 { transition-delay: .30s; }

    /* ============================================================
       WORDPRESS DEVELOPMENT PAGE  (.wpdev)
       ============================================================ */

    /* ─── HERO OVERRIDES (scoped to avoid index page conflicts) ─── */
    .wpdev .hero { padding: 140px 0 100px; text-align: left; }
    .wpdev .hero::before { width: 1100px; height: 900px; }
    .wpdev .hero-badge { margin-bottom: 24px; }
    .wpdev .hero h1 { font-size: clamp(38px, 4.5vw, 62px); max-width: none; margin: 0 0 20px; }
    .wpdev .hero-sub { font-size: 16px; margin: 0 0 36px; max-width: 440px; }
    .wpdev .hero-actions { justify-content: flex-start; margin-bottom: 0; }

    /* ─── HERO — NEW COMPONENTS ─── */
    .hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .hero-trust { display: flex; align-items: center; gap: 12px; margin-top: 32px; opacity: 0; animation: fadeUp .5s .5s ease forwards; }
    .hero-trust-avatars { display: flex; }
    .ta { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--white); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: #fff; margin-left: -9px; flex-shrink: 0; }
    .ta:first-child { margin-left: 0; }
    .ta-1 { background: linear-gradient(135deg, #3D5AFE, #6D8EFF); }
    .ta-2 { background: linear-gradient(135deg, #16A34A, #4ADE80); }
    .ta-3 { background: linear-gradient(135deg, #D97706, #FBBF24); }
    .ta-4 { background: linear-gradient(135deg, #7C3AED, #C084FC); }
    .hero-trust-text { font-size: 13px; color: var(--gray-400); }
    .hero-trust-text strong { color: var(--ink); font-weight: 600; }

    /* ─── BROWSER MOCKUP ─── */
    .hero-visual { position: relative; opacity: 0; animation: fadeUp .7s .35s ease forwards; }
    .hero-browser { background: linear-gradient(145deg, #0D1B2E 0%, #162844 100%); border-radius: var(--radius-l); border: 1px solid rgba(255,255,255,.07); box-shadow: var(--shadow-xl), 0 0 0 1px rgba(61,90,254,.1); overflow: hidden; }
    .hb-bar { background: rgba(0,0,0,.25); padding: 12px 16px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(255,255,255,.05); }
    .hb-dots { display: flex; gap: 5px; }
    .hb-dot { width: 9px; height: 9px; border-radius: 50%; }
    .hb-dot-r { background: #FF5F57; }
    .hb-dot-y { background: #FFBD2E; }
    .hb-dot-g { background: #27C840; }
    .hb-url { flex: 1; max-width: 180px; height: 20px; margin: 0 auto; background: rgba(255,255,255,.07); border-radius: 4px; }
    .hb-body { padding: 22px; display: flex; flex-direction: column; gap: 12px; }
    .hb-hero-block { background: linear-gradient(135deg, rgba(61,90,254,.3) 0%, rgba(61,90,254,.12) 100%); border-radius: 8px; padding: 20px; display: flex; flex-direction: column; gap: 8px; }
    .hb-h { height: 8px; background: rgba(255,255,255,.7); border-radius: 4px; width: 58%; }
    .hb-p { height: 5px; background: rgba(255,255,255,.28); border-radius: 3px; }
    .hb-p.w-full { width: 100%; }
    .hb-p.w-3q  { width: 75%; }
    .hb-btn-row { display: flex; gap: 8px; margin-top: 4px; }
    .hb-btn { height: 24px; border-radius: 6px; }
    .hb-btn.primary { background: var(--blue); width: 80px; }
    .hb-btn.ghost   { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); width: 60px; }
    .hb-cols { display: flex; gap: 10px; }
    .hb-card { flex: 1; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 7px; padding: 10px; display: flex; flex-direction: column; gap: 6px; }
    .hb-icon { width: 20px; height: 20px; background: rgba(61,90,254,.35); border-radius: 4px; }
    .hb-t { height: 5px; background: rgba(255,255,255,.45); border-radius: 3px; width: 65%; }
    .hb-s { height: 4px; background: rgba(255,255,255,.18); border-radius: 3px; }
    .hb-s.w-full { width: 100%; }
    .hb-s.w-3q  { width: 75%; }
    .hb-badge { position: absolute; background: var(--white); border-radius: 12px; padding: 10px 14px; box-shadow: var(--shadow-l); display: flex; align-items: center; gap: 10px; white-space: nowrap; }
    .hb-badge-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .hb-b1 { bottom: -18px; left: -28px; animation: float1 3.5s ease-in-out infinite; }
    .hb-b2 { top: 32px; right: -28px; animation: float2 4s ease-in-out infinite; }
    @keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
    @keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }

    /* ─── PROCESS ─── */
    .process-section { padding: 100px 0; background: var(--off); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
    .process-head { text-align: center; margin-bottom: 64px; }
    .process-head .section-sub { max-width: 500px; margin: 14px auto 0; }
    .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
    .process-steps::before { content: ''; position: absolute; top: 29px; left: calc(12.5% + 16px); right: calc(12.5% + 16px); height: 1px; background: linear-gradient(90deg, var(--blue-m) 0%, var(--blue) 50%, var(--blue-m) 100%); pointer-events: none; }
    .process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 20px; }
    .step-num { width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-size: 22px; font-weight: 800; color: #fff; background: var(--blue); box-shadow: 0 4px 16px rgba(61,90,254,.3); margin-bottom: 22px; flex-shrink: 0; position: relative; z-index: 1; }
    .step-title { font-family: var(--font-h); font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 10px; }
    .step-desc { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

    /* ─── INCLUDED ─── */
    .included-section { padding: 100px 0; border-bottom: 1px solid var(--gray-100); }
    .included-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .check-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
    .check-item { display: flex; align-items: flex-start; gap: 13px; }
    .check-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--green-l); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; color: var(--green); }
    .check-text { font-size: 14px; color: var(--gray-600); line-height: 1.65; }
    .check-text strong { color: var(--ink); font-weight: 600; }
    .included-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-l); box-shadow: var(--shadow-xl); padding: 32px; }
    .ic-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-100); }
    .ic-logo { width: 40px; height: 40px; background: var(--blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .ic-title { font-family: var(--font-h); font-size: 16px; font-weight: 700; color: var(--ink); }
    .ic-sub { font-size: 12px; color: var(--gray-400); }
    .ic-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--gray-50); }
    .ic-row:last-child { border-bottom: none; }
    .ic-label { font-size: 13px; color: var(--gray-600); display: flex; align-items: center; gap: 8px; }
    .ic-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
    .ic-dot.blue { background: var(--blue); }
    .ic-badge { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; }
    .ic-badge.green { background: var(--green-l); color: var(--green); }
    .ic-badge.blue  { background: var(--blue-l);  color: var(--blue);  }

    /* ─── PRICING ─── */
    .pricing-section { padding: 100px 0; background: var(--off); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
    .pricing-head { text-align: center; margin-bottom: 60px; }
    .pricing-head .section-sub { max-width: 500px; margin: 14px auto 0; }
    .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
    .price-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: 20px; padding: 36px 32px; box-shadow: var(--shadow-s); position: relative; transition: transform .25s, box-shadow .25s; }
    .price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-l); }
    .price-card.featured { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue), var(--shadow-l); transform: translateY(-10px); }
    .price-card.featured:hover { transform: translateY(-16px); box-shadow: 0 0 0 1px var(--blue), var(--shadow-xl); }
    .price-card.enterprise { background: var(--ink); border-color: rgba(255,255,255,.07); }
    .price-card.enterprise:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(15,21,35,.3); }
    .price-popular { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; padding: 5px 16px; border-radius: 100px; white-space: nowrap; box-shadow: 0 4px 12px rgba(61,90,254,.35); }
    .price-tier { font-family: var(--font-h); font-size: 12px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
    .price-card.enterprise .price-tier { color: rgba(255,255,255,.4); }
    .price-name { font-family: var(--font-h); font-size: 24px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 8px; }
    .price-card.enterprise .price-name { color: #fff; }
    .price-desc { font-size: 13px; color: var(--gray-400); line-height: 1.65; margin-bottom: 28px; min-height: 52px; }
    .price-card.enterprise .price-desc { color: rgba(255,255,255,.38); }
    .price-amount { display: flex; align-items: baseline; gap: 3px; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--gray-100); }
    .price-card.enterprise .price-amount { border-bottom-color: rgba(255,255,255,.08); }
    .price-currency { font-family: var(--font-h); font-size: 22px; font-weight: 700; color: var(--ink); }
    .price-card.enterprise .price-currency { color: #fff; }
    .price-num { font-family: var(--font-h); font-size: 54px; font-weight: 800; letter-spacing: -0.04em; color: var(--ink); line-height: 1; }
    .price-card.enterprise .price-num { color: #fff; }
    .price-custom { font-family: var(--font-h); font-size: 32px; font-weight: 800; letter-spacing: -0.03em; color: #fff; line-height: 1.15; }
    .price-custom-sub { font-size: 12px; color: rgba(255,255,255,.38); margin-top: 6px; }
    .price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
    .pf-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--gray-600); }
    .pf-check { width: 18px; height: 18px; border-radius: 50%; background: var(--green-l); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
    .pf-check svg { color: var(--green); }
    .price-card.enterprise .pf-check { background: rgba(255,255,255,.08); }
    .price-card.enterprise .pf-item { color: rgba(255,255,255,.55); }
    .price-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-b); font-size: 15px; font-weight: 600; padding: 14px 24px; border-radius: 10px; text-decoration: none; cursor: pointer; border: none; transition: all .2s; }
    .price-btn.plain { background: var(--off); color: var(--ink); border: 1px solid var(--gray-100); }
    .price-btn.plain:hover { background: var(--gray-50); border-color: var(--gray-200); }
    .price-btn.primary-btn { background: var(--blue); color: #fff; box-shadow: 0 4px 16px rgba(61,90,254,.3); }
    .price-btn.primary-btn:hover { background: var(--blue-d); box-shadow: 0 8px 24px rgba(61,90,254,.4); transform: translateY(-1px); }
    .price-btn.dark-btn { background: rgba(255,255,255,.09); color: #fff; border: 1px solid rgba(255,255,255,.14); }
    .price-btn.dark-btn:hover { background: rgba(255,255,255,.15); }

    /* ─── TECH STACK ─── */
    .tech-section { padding: 100px 0; border-bottom: 1px solid var(--gray-100); }
    .tech-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .tech-item { background: var(--off); border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 20px 16px; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; transition: transform .2s, box-shadow .2s, border-color .2s; }
    .tech-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); border-color: var(--blue-m); }
    .tech-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
    .tech-name { font-family: var(--font-h); font-size: 13px; font-weight: 700; color: var(--ink); }
    .tech-tag { font-size: 11px; color: var(--gray-400); }

    /* ─── FAQ OVERRIDES (scoped to .wpdev) ─── */
    .wpdev .faq-section { padding: 100px 0; background: var(--white); border-top: none; border-bottom: 1px solid var(--gray-100); }
    .wpdev .faq-inner { display: grid; grid-template-columns: 1fr 1.8fr; gap: 80px; align-items: start; max-width: none; padding: 0; margin: 0; }

    /* ─── FAQ NEW COMPONENTS ─── */
    .faq-list { display: flex; flex-direction: column; gap: 4px; }
    .faq-item.open { box-shadow: var(--shadow-m); }
    .faq-a { font-size: 14px; color: var(--gray-600); line-height: 1.75; }
    .wpdev .faq-q { width: 100%; background: none; border: none; text-align: left; font-family: var(--font-b); font-size: 15px; font-weight: 600; color: var(--ink); }
    .faq-arrow { width: 20px; height: 20px; border-radius: 50%; background: var(--gray-50); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .25s, background .2s; color: var(--gray-400); }
    .faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--blue-l); color: var(--blue); }

    /* ─── CTA BUTTON VARIANTS ─── */
    .cta-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
    .cta-btn-white { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--blue); font-family: var(--font-b); font-size: 15px; font-weight: 600; padding: 13px 28px; border-radius: 10px; text-decoration: none; transition: all .2s; box-shadow: 0 4px 16px rgba(0,0,0,.15); }
    .cta-btn-white:hover { background: var(--blue-l); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
    .cta-btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); color: #fff; font-family: var(--font-b); font-size: 15px; font-weight: 500; padding: 13px 28px; border-radius: 10px; text-decoration: none; border: 1px solid rgba(255,255,255,.25); transition: all .2s; }
    .cta-btn-ghost:hover { background: rgba(255,255,255,.2); }

    /* ─── WPDEV RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
      .price-card.featured { transform: none; }
      .price-card.featured:hover { transform: translateY(-6px); }
      .tech-inner { grid-template-columns: 1fr; gap: 48px; }
    }
    @media (max-width: 900px) {
      .wpdev .hero-inner { grid-template-columns: 1fr; gap: 48px; }
      .wpdev .hero h1 { font-size: 40px; }
      .included-inner { grid-template-columns: 1fr; gap: 48px; }
      .wpdev .faq-inner { grid-template-columns: 1fr; gap: 40px; }
      .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
      .process-steps::before { display: none; }
    }
    @media (max-width: 768px) {
      .wpdev .hero { padding: 100px 0 70px; }
      .wpdev .hero h1 { font-size: 34px; }
      .process-section, .included-section, .pricing-section, .tech-section { padding: 70px 0; }
      .process-steps { grid-template-columns: 1fr; }
      .tech-grid { grid-template-columns: repeat(2, 1fr); }
      .hb-b1, .hb-b2 { display: none; }
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .themes-grid { grid-template-columns: repeat(3, 1fr); }
      .featured-banner { grid-template-columns: 1fr; }
      .fb-cover { min-height: 220px; }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
    }

    @media (max-width: 768px) {
      .nav-inner { padding: 0 20px; gap: 16px; }
      .nav-links, .nav-ghost { display: none; }
      .page-header { padding: 88px 0 40px; }
      .ph-search { width: 100%; max-width: 100%; }
      .ph-search-wrap { padding: 0 20px; }
      .toolbar { padding: 0 20px; }
      .themes-content { padding: 28px 20px 72px; }
      .themes-grid { grid-template-columns: 1fr; }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 20px; }
      .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
    }
