/* ── NAV ── */
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    

    /* ── HERO ── */
    .ta-page-hero {
      background: var(--navy);
      background-image: radial-gradient(ellipse at 70% 50%, var(--navy-deep) 0%, var(--navy) 60%);
      color: var(--white); padding: 72px 40px 80px;
      position: relative; overflow: hidden; text-align: center;
    }
    .ta-page-hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 15% 85%, rgba(201,170,102,0.12) 0%, transparent 45%), radial-gradient(circle at 85% 15%, rgba(105,153,152,0.1) 0%, transparent 40%); pointer-events: none; }
    .ta-page-hero-inner { max-width: 700px; margin: 0 auto; position: relative; }
    .ta-page-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
    .ta-page-hero h1 { font-family: "Playfair Display", serif; font-size: clamp(28px, 4vw, 46px); font-weight: 600; line-height: 1.2; margin-bottom: 20px; color: var(--white); }
    .ta-page-hero h1 em { font-style: italic; color: var(--gold); }
    .ta-page-hero-sub { font-size: 16px; color: rgba(255,255,255,0.8); font-weight: 300; line-height: 1.75; max-width: 580px; margin: 0 auto 2.5rem; }
    .hero-stats { display: flex; justify-content: center; flex-wrap: wrap; }
    .hero-stat { padding: 0 2.5rem; border-right: 1px solid rgba(255,255,255,0.15); }
    .hero-stat:last-child { border-right: none; }
    .hero-stat-num { font-family: "Playfair Display", serif; font-size: 2.2rem; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 0.3rem; }
    .hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

    /* ── INTRO ── */
    .intro-strip { background: var(--off-white); border-bottom: 1px solid var(--border); }
    .intro-strip-inner { max-width: 860px; margin: 0 auto; padding: 48px 40px; text-align: center; font-size: 1.05rem; color: var(--text); line-height: 1.85; }
    .intro-strip-inner strong { color: var(--navy); }

    /* ── LIBRARY SECTION ── */
    .lib-section { padding: 64px 40px 0; }
    .lib-section-head { max-width: 1100px; margin: 0 auto 2.5rem; }
    .lib-section-head h2 { font-family: "Playfair Display", serif; font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
    .lib-section-head p { font-size: 0.97rem; color: var(--text-muted); }

    /* ── 4-CARD GRID ── */
    .lib-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
    .lib-card { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); background: var(--white); box-shadow: 0 2px 12px rgba(11,72,103,0.06); transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
    .lib-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(11,72,103,0.13); }
    .lib-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
    .lib-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
    .lib-card:hover .lib-card-img img { transform: scale(1.04); }
    .lib-card-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(8,54,80,0.55) 100%); }
    .lib-card-label {
      position: absolute; bottom: 12px; left: 14px;
      color: var(--white); font-size: 0.85rem; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      padding: 0.3rem 0.9rem; border-radius: 4px;
    }
    .lib-card-body { padding: 1.1rem 1.25rem 1.4rem; flex: 1; }
    .lib-card-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

    /* ── INSIGHT GUIDES ── */
    .guides-section { max-width: 1100px; margin: 0 auto; padding: 56px 40px 0; }
    .guides-inner { background: var(--charcoal); border-radius: 14px; padding: 2.5rem 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
    .guides-label { font-size: 1.35rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: block; font-family: "DM Sans", sans-serif; }
    .guides-left h2 { font-family: "Playfair Display", serif; font-size: 1.4rem; font-weight: 600; color: var(--white); margin-bottom: 0.75rem; }
    .guides-left p { font-size: 0.92rem; color: rgba(255,255,255,0.65); line-height: 1.75; }
    .guides-right { display: flex; flex-direction: column; gap: 0.9rem; }
    .guide-item { display: flex; align-items: flex-start; gap: 0.9rem; background: rgba(255,255,255,0.05); border-radius: 8px; padding: 0.9rem 1rem; border: 1px solid rgba(255,255,255,0.06); transition: background 0.15s; }
    .guide-item:hover { background: rgba(255,255,255,0.09); }
    .guide-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
    .guide-title { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 0.2rem; line-height: 1.4; }
    .guide-desc { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

    /* ── CTA ── */
    .cta-section { max-width: 1100px; margin: 0 auto; padding: 56px 40px 80px; }
    .cta-inner { background: var(--teal); border-radius: 14px; padding: 3rem; text-align: center; }
    .cta-inner h2 { font-family: "Playfair Display", serif; font-size: 1.7rem; font-weight: 600; color: var(--white); margin-bottom: 0.75rem; }
    .cta-inner p { font-size: 1rem; color: rgba(255,255,255,0.88); line-height: 1.7; margin-bottom: 0.5rem; }
    .cta-price { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
    .cta-price strong { color: var(--white); }
    .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .cta-btn { display: inline-block; padding: 0.9rem 2.2rem; border-radius: 6px; font-weight: 700; font-size: 0.97rem; text-decoration: none; transition: all 0.15s; }
    .cta-btn.primary { background: var(--white); color: var(--navy); }
    .cta-btn.primary:hover { background: var(--navy-pale); }
    .cta-btn.secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
    .cta-btn.secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

    /* ── FOOTER ── */
    
    
    
    
    
    
    
    
    
    
    
    
    

    @media (max-width: 900px) { .lib-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) {
      .lib-grid { grid-template-columns: 1fr; }
      .guides-inner { grid-template-columns: 1fr; padding: 1.75rem; }
      .cta-inner { padding: 2rem; }
      .lib-section, .guides-section, .cta-section { padding-left: 20px; padding-right: 20px; }
      
    }
