/* --- Design Tokens Extension --- */
    :root {
      --text-body: #374151;
      --text-muted: #4b5563;
      --text-subtle: #6b7280;
      --color-border: #e5e7eb;
      --color-border-dark: #d1d5db;
      --color-gray-400: #9ca3af;
      --color-gray-50: #f3f4f6;
      --color-green: #047857;
      --color-green-bg: #ecfdf5;
      --color-navy-dark: #0d2a52;
      --color-hero-subtitle: #c5d5e8;
      --header-height: 57px;
    }

    /* --- Focus Styles (page-specific) --- */
    .examples-hero *:focus-visible,
    .examples-cta *:focus-visible {
      outline-color: var(--color-light-blue);
    }

    /* --- Scroll Animations --- */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* --- Hero --- */
    .examples-hero {
      background: var(--color-navy);
      color: var(--color-white);
      padding: 56px 0 48px;
      text-align: center;
    }
    .examples-hero h1 {
      font-size: 2.8rem;
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .examples-hero-subtitle {
      font-size: 1.2rem;
      color: var(--color-hero-subtitle);
      max-width: 600px;
      margin: 0 auto 12px;
      line-height: 1.65;
    }
    .examples-hero-hook {
      font-size: 1.05rem;
      color: var(--color-light-blue);
      margin-bottom: 0;
      font-style: italic;
    }
    .examples-hero-hook a {
      color: var(--color-white);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    /* --- Examples Gallery --- */
    .examples-gallery {
      padding: 72px 0 80px;
      background: var(--color-white);
    }
    .examples-gallery .container {
      max-width: 1060px;
    }
    .examples-gallery-heading {
      text-align: center;
      margin-bottom: 48px;
    }
    .examples-gallery-heading h2 {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .examples-gallery-heading p {
      color: var(--text-muted);
      font-size: 1.125rem;
    }
    .examples-grid-v2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }

    /* --- Example Card V2 --- */
    .example-card-v2 {
      border: 1px solid var(--color-border);
      border-radius: 20px;
      overflow: hidden;
      background: var(--color-white);
      box-shadow: 0 4px 20px rgba(17, 51, 98, 0.06);
      transition: box-shadow 0.25s ease, transform 0.25s ease;
    }
    .example-card-clickable {
      cursor: pointer;
    }
    .example-card-v2:hover {
      box-shadow: 0 8px 32px rgba(17, 51, 98, 0.12);
      transform: translateY(-2px);
    }
    .example-card-cover {
      position: relative;
      height: 260px;
      background: var(--color-pale-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .example-card-cover img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .example-card-cover-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: var(--color-navy);
      opacity: 0.5;
    }
    .example-card-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      background: var(--color-navy);
      color: var(--color-white);
      font-size: 0.75rem;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 999px;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }
    .example-card-body-v2 {
      padding: 28px 28px 24px;
    }
    .example-card-body-v2 h3 {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 4px;
      color: var(--color-black);
    }
    .example-card-mission {
      font-size: 0.88rem;
      color: var(--text-subtle);
      margin-bottom: 12px;
    }
    .example-card-body-v2 p.example-card-desc {
      font-size: 1.05rem;
      color: var(--text-body);
      line-height: 1.6;
      margin-bottom: 20px;
    }
    .example-card-stats {
      display: flex;
      gap: 20px;
      margin-bottom: 20px;
      padding-top: 16px;
      border-top: 1px solid var(--color-border);
    }
    .example-stat {
      display: flex;
      flex-direction: column;
    }
    .example-stat-value {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--color-navy);
    }
    .example-stat-label {
      font-size: 0.78rem;
      color: var(--text-subtle);
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }
    .example-card-actions {
      display: flex;
      gap: 12px;
    }
    .btn-flip-through {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 20px;
      border-radius: 999px;
      background: var(--color-navy);
      color: var(--color-white);
      font-family: var(--font-family);
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.15s, transform 0.15s;
    }
    .btn-flip-through:hover {
      background: var(--color-navy-dark);
      transform: translateY(-1px);
    }
    .btn-flip-through:active {
      transform: translateY(0);
    }
    .btn-flip-through[disabled] {
      opacity: 0.5;
      cursor: not-allowed;
    }
    .btn-flip-through[disabled]:hover {
      transform: none;
      background: var(--color-navy);
    }

    /* --- Testimonial --- */
    .examples-testimonial {
      background: var(--color-navy);
      color: var(--color-white);
      padding: 72px 0;
      text-align: center;
    }
    .examples-testimonial .container {
      max-width: 640px;
    }
    .examples-testimonial blockquote {
      font-size: 1.3rem;
      font-style: italic;
      line-height: 1.55;
      margin-bottom: 20px;
      color: rgba(255,255,255,0.92);
    }
    .examples-testimonial cite {
      font-style: normal;
      font-size: 0.9rem;
      color: var(--color-light-blue);
      display: block;
    }

    /* --- Final CTA --- */
    .examples-cta {
      background: var(--color-black);
      color: var(--color-white);
      padding: 96px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .examples-cta::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -20%;
      width: 60%;
      height: 200%;
      background: radial-gradient(ellipse at center, rgba(17,51,98,0.2) 0%, transparent 70%);
      pointer-events: none;
    }
    .examples-cta .container {
      position: relative;
      z-index: 1;
    }
    .examples-cta h2 {
      font-size: 2.4rem;
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 16px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .examples-cta p {
      font-size: 1.15rem;
      color: var(--color-gray-400);
      max-width: 520px;
      margin: 0 auto 36px;
      line-height: 1.65;
    }
    .examples-cta-buttons {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .examples-cta-trust {
      margin-top: 20px;
      font-size: 0.85rem;
      color: var(--color-gray-400);
    }

    /* ===== Book Viewer Modal ===== */
    .book-viewer-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.85);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 24px;
    }
    .book-viewer-overlay.open {
      display: flex;
    }
    .book-viewer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      max-width: 900px;
      margin-bottom: 16px;
    }
    .book-viewer-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--color-white);
    }
    .book-viewer-close {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      border: none;
      cursor: pointer;
      color: var(--color-white);
      transition: background 0.15s;
    }
    .book-viewer-close:hover {
      background: rgba(255,255,255,0.25);
    }
    .book-viewer-container {
      position: relative;
      width: 100%;
      max-width: 900px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    #flipbook-container {
      /* StPageFlip will inject canvas here */
    }
    .book-viewer-controls {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 20px;
    }
    .book-viewer-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      border: none;
      cursor: pointer;
      color: var(--color-white);
      transition: background 0.15s;
    }
    .book-viewer-btn:hover {
      background: rgba(255,255,255,0.25);
    }
    .book-viewer-btn:disabled {
      opacity: 0.3;
      cursor: not-allowed;
    }
    .book-viewer-page-info {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.7);
      min-width: 100px;
      text-align: center;
    }
    .book-viewer-loading {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      color: var(--color-white);
    }
    .book-viewer-spinner {
      width: 40px;
      height: 40px;
      border: 3px solid rgba(255,255,255,0.2);
      border-top-color: var(--color-white);
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }
    @keyframes spin {
      to { transform: rotate(360deg); }
    }
    .book-viewer-loading p {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.7);
    }

    /* --- Reduced Motion --- */
    @media (prefers-reduced-motion: reduce) {
      .fade-in { opacity: 1; transform: none; transition: none; }
      .example-card-v2 { transition: none; }
      .btn-flip-through { transition: none; }
      .book-viewer-close { transition: none; }
      .book-viewer-btn { transition: none; }
      .book-viewer-spinner { animation: none; }
    }

    /* --- Print styles --- */
    @media print {
      .examples-hero, .examples-testimonial, .examples-cta, .site-footer-full {
        background: white !important;
        color: black !important;
      }
      .site-header, .breadcrumb, .book-viewer-overlay { display: none; }
      .fade-in { opacity: 1 !important; transform: none !important; }
    }

    /* ===== Responsive ===== */

    @media (max-width: 1024px) {
      .examples-hero h1 { font-size: 2.4rem; }
      .examples-cta h2 { font-size: 2.2rem; }
    }

    @media (max-width: 834px) {
      .examples-hero h1 { font-size: 2.2rem; }

    }

    @media (max-width: 640px) {
      .examples-hero { padding: 40px 0 36px; }
      .examples-hero h1 { font-size: 1.8rem; }
      .examples-gallery { padding: 48px 0 64px; }
      .examples-grid-v2 { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
      .example-card-cover { height: 220px; }
      .examples-cta { padding: 80px 0; }
      .examples-cta h2 { font-size: 2rem; }
      .examples-cta-buttons { flex-direction: column; align-items: center; }
      .book-viewer-header { flex-direction: row; }
      .book-viewer-overlay { padding: 16px; }
    }

    @media (max-width: 480px) {
      .examples-hero h1 { font-size: 1.6rem; }
      .example-card-stats { flex-wrap: wrap; gap: 12px; }
      .example-card-body-v2 { padding: 20px 20px 18px; }
    }
