:root {
    --bg-primary: #1e1610;
    --bg-secondary: #251d15;
    --bg-card: #2e241a;
    --bg-card-hover: #362a1f;
    --brown-warm: #3d2f22;
    --brown-light: #4a3a2c;
    --teal: #8dd4d4;
    --teal-bright: #a8e6e6;
    --teal-dim: #5da8a8;
    --teal-dark: #3a7a7a;
    --purple-accent: #4a3f6a;
    --white: #f0ece8;
    --white-muted: #c4b8aa;
    --white-dim: #7a6e62;
    --gold: #d4a855;
    --gradient-teal: linear-gradient(135deg, #8dd4d4, #6bc0c0);
    --gradient-hero: linear-gradient(160deg, #1e1610 0%, #251d15 35%, #2a2018 65%, #1e1610 100%);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    padding-top: 76px;
    background: var(--bg-primary); color: var(--white);
    font-family: 'Outfit', sans-serif; line-height: 1.6; overflow-x: hidden;
  }

  /* ═══════════════ NAV ═══════════════ */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1rem 3rem;
    padding-top: max(1rem, env(safe-area-inset-top));
    display: flex; align-items: center;
    justify-content: space-between;
    background: #1e1610;
    border-bottom: 1px solid rgba(141, 212, 212, 0.12);
  }

  .nav-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
  .nav-logo .logo-icon { width: 36px; height: 36px; border-radius: 6px; }
  .nav-logo span { font-weight: 700; font-size: 1.05rem; color: var(--teal); letter-spacing: 1.5px; text-transform: uppercase; }

  .nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
  .nav-links a { color: var(--white-muted); text-decoration: none; font-size: 0.88rem; font-weight: 500; letter-spacing: 0.3px; transition: color 0.3s; cursor: pointer; }
  .nav-links a:hover, .nav-links a.active { color: var(--teal); }

  .nav-cta {
    padding: 0.55rem 1.4rem; background: var(--gradient-teal);
    color: var(--bg-primary) !important; border-radius: 6px;
    font-weight: 600 !important; transition: transform 0.2s, box-shadow 0.3s !important;
  }
  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(141, 212, 212, 0.3); }

  .nav-phone {
    display: flex; align-items: center; gap: 0.3rem;
    color: var(--teal); text-decoration: none; font-size: 0.85rem;
    font-weight: 500; letter-spacing: 0.3px; transition: color 0.3s;
    margin-left: 0.5rem; white-space: nowrap;
  }
  .nav-phone:hover { color: var(--teal-bright); }
  .nav-phone svg { opacity: 0.85; }

  /* Free Assessment nav button — has a floating "2 MIN" badge in top-right corner */
  .nav-cta-with-badge {
    position: relative;
    display: inline-block !important;
    overflow: visible !important;
  }
  .nav-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--gold);
    color: var(--bg-primary);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    padding: 0.22rem 0.5rem;
    border-radius: 12px;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(212, 168, 85, 0.35);
    pointer-events: none;
  }

  /* Floating "100% FREE" badge for the score reveal card */
  .free-badge-floating {
    position: absolute;
    top: -14px;
    right: -10px;
    background: var(--gold);
    color: var(--bg-primary);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    padding: 0.45rem 0.9rem;
    border-radius: 24px;
    line-height: 1;
    text-transform: uppercase;
    transform: rotate(6deg);
    box-shadow: 0 6px 20px rgba(212, 168, 85, 0.3);
    z-index: 5;
  }
  .assess-card.has-free-badge { position: relative; overflow: visible; }

  /* ═══════════════ PAGE SYSTEM ═══════════════ */
  
  

  /* ═══════════════ SHARED ═══════════════ */
  .section-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px; color: var(--teal); font-weight: 600; margin-bottom: 1rem; }
  .section-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
  .section-header h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.5px; }
  .section-header p { color: var(--white-muted); font-size: 1.05rem; font-weight: 300; }
  .teal { color: var(--teal); }
  
  /* ═══════════════ START KEN ═══════════════ */
   .text-white-muted { color: var(--white-muted); }
  /* ═══════════════ End KEN ═══════════════ */
  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 2rem; background: var(--gradient-teal);
    color: var(--bg-primary); text-decoration: none; font-weight: 700;
    font-size: 1rem; border-radius: 8px; transition: transform 0.2s, box-shadow 0.3s;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(141, 212, 212, 0.25); }

  .btn-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 2rem; background: transparent; color: var(--white);
    text-decoration: none; font-weight: 500; font-size: 1rem; border-radius: 8px;
    border: 1px solid rgba(240, 236, 232, 0.15); transition: all 0.3s;
  }
  .btn-secondary:hover { border-color: var(--teal); color: var(--teal); background: rgba(141, 212, 212, 0.05); }

  .page-top { padding: 4rem 3rem 5rem; background: var(--gradient-hero); position: relative; }
  .page-top .grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(141,212,212,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(141,212,212,0.02) 1px, transparent 1px); background-size: 80px 80px; pointer-events: none; }
  .page-top-content { position: relative; z-index: 2; max-width: 800px; }
  .page-top h1 { font-size: clamp(2.4rem, 4.5vw, 3.4rem); font-weight: 800; line-height: 1.15; margin-bottom: 1rem; letter-spacing: -1px; }
  .page-top p { font-size: 1.15rem; color: var(--white-muted); max-width: 560px; line-height: 1.7; font-weight: 300; }

  .divider-line { height: 1px; background: linear-gradient(90deg, transparent, rgba(141,212,212,0.15), transparent); }

  /* ═══════════════ HOME PAGE ═══════════════ */
  .hero { display: flex; align-items: flex-start; background: var(--gradient-hero); position: relative; overflow: hidden; padding: 4rem 3rem 4rem; }
  .hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(141,212,212,0.05) 0%, transparent 70%); pointer-events: none; }
  .hero::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(74,63,106,0.06) 0%, transparent 70%); pointer-events: none; }

  .hero-content { max-width: 720px; position: relative; z-index: 2; animation: fadeUp 1s ease-out; }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

  .hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.45rem 1rem; background: rgba(141,212,212,0.07); border: 1px solid rgba(141,212,212,0.12); border-radius: 100px; font-size: 0.8rem; color: var(--teal); font-weight: 500; letter-spacing: 0.5px; margin-bottom: 2rem; text-transform: uppercase; }
  .hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

  .hero h1 { font-size: clamp(2.8rem, 5.5vw, 4.2rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -1px; }
  .hero-subtitle { font-family: 'DM Serif Display', serif; font-size: 1.35rem; color: var(--teal-dim); font-style: italic; margin-bottom: 1.25rem; }
  .hero p { font-size: 1.15rem; color: var(--white-muted); max-width: 560px; line-height: 1.7; margin-bottom: 2.5rem; font-weight: 300; }
  .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

  .hero-stats { display: flex; gap: 3rem; margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid rgba(240,236,232,0.06); animation: fadeUp 1s ease-out 0.3s both; }
  .stat h3 { font-family: 'JetBrains Mono', monospace; font-size: 2rem; font-weight: 500; color: var(--teal); }
  .stat p { font-size: 0.8rem; color: var(--white-dim); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.25rem; font-weight: 500; }

  .tagline-band { padding: 3rem; background: var(--brown-warm); text-align: center; position: relative; }
  .tagline-band::before, .tagline-band::after { content: ''; position: absolute; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(141,212,212,0.2), transparent); }
  .tagline-band::before { top: 0; } .tagline-band::after { bottom: 0; }
  .tagline-band h2 { font-family: 'DM Serif Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400; color: var(--teal); }
  .tagline-band h2 em { color: var(--white); font-style: normal; font-family: 'Outfit', sans-serif; font-weight: 300; }
  
  .tagline-band-clear { padding: 3rem; background: var(--bg-secondary); text-align: center; position: relative; }
  .tagline-band-clear::before, .tagline-band::after { content: ''; position: absolute; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(240,236,232,0.06), transparent); }
  .tagline-band-clear::before { top: 0; } .tagline-band::after { bottom: 0; }
  .tagline-band-clear h2 { font-family: 'DM Serif Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400; color: var(--teal); }
  .tagline-band-clear h2 em { color: var(--white); font-style: normal; font-family: 'Outfit', sans-serif; font-weight: 300; }

  .services { padding: 5rem 3rem; background: var(--bg-secondary); }
  .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }

  .service-card { background: var(--bg-card); border: 1px solid rgba(240,236,232,0.04); border-radius: 16px; padding: 2.5rem; transition: all 0.4s; position: relative; overflow: hidden; }
  .service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-teal); opacity: 0; transition: opacity 0.4s; }
  .service-card:hover { transform: translateY(-4px); border-color: rgba(141,212,212,0.12); box-shadow: 0 20px 60px rgba(0,0,0,0.3); background: var(--bg-card-hover); }
  .service-card:hover::before { opacity: 1; }

  .service-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
  .service-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem; }
  .service-card p { color: var(--white-muted); font-size: 0.95rem; line-height: 1.7; font-weight: 300; }
  .service-card .learn-more { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.25rem; font-size: 0.9rem; color: var(--teal); text-decoration: none; font-weight: 500; transition: gap 0.3s; cursor: pointer; }
  .service-card:hover .learn-more { gap: 0.7rem; }

  .credibility { padding: 7rem 3rem; background: var(--bg-primary); }
  .cred-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1100px; margin: 0 auto; align-items: center; }
  .cred-content h2 { font-size: clamp(2rem, 3.5vw, 2.6rem); font-weight: 700; margin-bottom: 1.5rem; letter-spacing: -0.5px; line-height: 1.2; }
  .cred-content > p { color: var(--white-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 2rem; font-weight: 300; }
  .cred-items { display: flex; flex-direction: column; gap: 1.25rem; }
  .cred-item { display: flex; align-items: flex-start; gap: 1rem; }
  .cred-check { flex-shrink: 0; width: 28px; height: 28px; background: rgba(141,212,212,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 0.85rem; margin-top: 2px; }
  .cred-item-text h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.15rem; }
  .cred-item-text p { font-size: 0.9rem; color: var(--white-dim); font-weight: 300; }

  .cred-visual { display: flex; flex-direction: column; gap: 1.25rem; }
  .cred-stat-card { background: var(--bg-card); border: 1px solid rgba(240,236,232,0.04); border-radius: 14px; padding: 1.75rem 2rem; display: flex; align-items: center; gap: 1.25rem; transition: all 0.3s; }
  .cred-stat-card:hover { border-color: rgba(141,212,212,0.1); background: var(--bg-card-hover); }
  .cred-stat-num { font-family: 'JetBrains Mono', monospace; font-size: 2.2rem; font-weight: 500; color: var(--teal); line-height: 1; flex-shrink: 0; }
  .cred-stat-label { font-size: 0.9rem; color: var(--white-muted); font-weight: 400; line-height: 1.4; }

  .cta-section { padding: 7rem 3rem; background: var(--bg-secondary); text-align: center; position: relative; }
  .cta-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(141,212,212,0.15), transparent); }
  .cta-inner { max-width: 700px; margin: 0 auto; }
  .cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
  .cta-inner p { font-size: 1.15rem; color: var(--white-muted); font-weight: 300; margin-bottom: 2.5rem; line-height: 1.7; }
  .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }

  .cta-contact { display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap; padding-top: 2.5rem; border-top: 1px solid rgba(240,236,232,0.06); }
  .cta-contact-item { text-align: center; }
  .cta-contact-item span { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--white-dim); margin-bottom: 0.35rem; font-weight: 500; }
  .cta-contact-item a { color: var(--teal); text-decoration: none; font-size: 1rem; font-weight: 500; transition: color 0.3s; }

  /* ═══════════════ CREDENTIALS PAGE ═══════════════ */
  .creds-section { padding: 5rem 3rem; }
  .creds-section:nth-child(even) { background: var(--bg-secondary); }
  .creds-section:nth-child(odd) { background: var(--bg-primary); }

  .competency-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
  .competency-card { background: var(--bg-card); border: 1px solid rgba(240,236,232,0.04); border-radius: 14px; padding: 2rem; transition: all 0.3s; }
  .competency-card:hover { border-color: rgba(141,212,212,0.1); background: var(--bg-card-hover); transform: translateY(-2px); }
  .competency-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--teal); }
  .competency-card p { color: var(--white-muted); font-size: 0.9rem; line-height: 1.6; font-weight: 300; }

  .cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
  .cert-card { background: var(--bg-card); border: 1px solid rgba(240,236,232,0.04); border-radius: 14px; padding: 2rem; display: flex; gap: 1.25rem; align-items: flex-start; transition: all 0.3s; }
  .cert-card:hover { border-color: rgba(141,212,212,0.1); background: var(--bg-card-hover); }
  .cert-badge { flex-shrink: 0; width: 52px; height: 52px; background: rgba(141,212,212,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; overflow: hidden; }
  .cert-badge img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
  .cert-badge svg { width: 36px; height: 36px; }
  .cert-badge.outskill { background: #0a1a0a; }
  .cert-badge.databricks { background: #fff; }
  .cert-badge.firstmovers { background: #f0f0f0; }
  .cert-badge.microsoft { background: rgba(0,120,215,0.1); }
  .cert-badge.pmi { background: rgba(0,98,152,0.1); }
  .cert-info h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
  .cert-info .cert-issuer { font-size: 0.8rem; color: var(--teal-dim); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.35rem; }
  .cert-info p { font-size: 0.85rem; color: var(--white-dim); font-weight: 300; line-height: 1.5; }
  .cert-status { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.2rem 0.6rem; border-radius: 100px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 0.5rem; }
  .cert-status.earned { background: rgba(141,212,212,0.1); color: var(--teal); }
  .cert-status.pursuing { background: rgba(212,168,85,0.1); color: var(--gold); }
  .cert-status.planned { background: rgba(240,236,232,0.06); color: var(--white-dim); }

  .training-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; max-width: 1100px; margin: 0 auto; }
  .training-badge { background: var(--bg-card); border: 1px solid rgba(240,236,232,0.04); border-radius: 12px; padding: 1.5rem 1rem; text-align: center; transition: all 0.3s; }
  .training-badge:hover { border-color: rgba(141,212,212,0.1); background: var(--bg-card-hover); }
  .training-badge .badge-icon { margin-bottom: 0.75rem; display: flex; justify-content: center; }
  .training-badge h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.2rem; line-height: 1.3; }
  .training-badge p { font-size: 0.72rem; color: var(--white-dim); font-weight: 400; }

  /* ═══════════════ LEADERSHIP ═══════════════ */
  .leadership-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto; }
  .leader-card { background: var(--bg-card); border: 1px solid rgba(240,236,232,0.04); border-radius: 16px; padding: 2.5rem; transition: all 0.3s; text-align: center; }
  .leader-card:hover { border-color: rgba(141,212,212,0.12); background: var(--bg-card-hover); }
  .leader-photo { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; margin: 0 auto 1.5rem; border: 3px solid rgba(141,212,212,0.2); display: block; }
  .leader-placeholder { width: 140px; height: 140px; border-radius: 50%; background: var(--brown-warm); border: 3px dashed rgba(141,212,212,0.25); margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; font-family: 'JetBrains Mono', monospace; font-size: 2rem; color: var(--teal); font-weight: 500; }
  .leader-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.35rem; }
  .leader-role { color: var(--teal); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.25rem; }
  .leader-bio { color: var(--white-muted); font-size: 0.95rem; line-height: 1.7; font-weight: 300; text-align: left; }
  .leader-links { display: flex; gap: 1rem; justify-content: center; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(240,236,232,0.06); }
  .leader-links a { color: var(--white-dim); text-decoration: none; font-size: 0.8rem; transition: color 0.3s; }
  .leader-links a:hover { color: var(--teal); }

  /* ═══════════════ FAQs ═══════════════ */
  .faq-item { background: var(--bg-card); border: 1px solid rgba(240,236,232,0.04); border-radius: 12px; padding: 1.25rem 1.5rem; transition: all 0.3s; }
  .faq-item:hover { border-color: rgba(141,212,212,0.1); }
  .faq-item[open] { background: var(--bg-card-hover); border-color: rgba(141,212,212,0.15); }
  .faq-item summary { font-size: 1rem; font-weight: 600; color: var(--white); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after { content: '+'; color: var(--teal); font-size: 1.5rem; font-weight: 300; transition: transform 0.3s; flex-shrink: 0; }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-item p { color: var(--white-muted); font-size: 0.95rem; line-height: 1.7; font-weight: 300; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(240,236,232,0.06); }

  /* ═══════════════ BOOKING PAGE ═══════════════ */
  .booking-section { padding: 5rem 3rem; background: var(--bg-secondary); }
  .booking-layout { max-width: 1100px; margin: 0 auto; }
  .booking-info h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; }
  .booking-info p { color: var(--white-muted); font-size: 0.95rem; line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem; }

  .booking-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
  .booking-option { background: var(--bg-card); border: 2px solid rgba(240,236,232,0.04); border-radius: 12px; padding: 1.25rem 1.5rem; transition: all 0.3s; cursor: pointer; }
  .booking-option:hover { border-color: rgba(141,212,212,0.2); }
  .booking-option.active { border-color: var(--teal); background: rgba(141,212,212,0.06); }
  .booking-option h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.15rem; }
  .booking-option .duration { font-size: 0.8rem; color: var(--teal); font-weight: 500; }
  .booking-option p { font-size: 0.85rem; color: var(--white-dim); margin-top: 0.35rem; font-weight: 300; }
  .booking-option .select-indicator { font-size: 0.7rem; color: var(--white-dim); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 0.75rem; font-weight: 600; transition: color 0.2s; }
  .booking-option.active .select-indicator { color: var(--teal); }
  .booking-calendly-wrap { display: none; /* removed — using popup widget */ }

  /* Calendly — using popup widget, no inline styles needed */

  /* ═══════════════ TESTIMONIALS PAGE ═══════════════ */
  .testimonials-section { padding: 5rem 3rem; background: var(--bg-secondary); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
  .testimonial-card { background: var(--bg-card); border: 1px solid rgba(240,236,232,0.04); border-radius: 16px; padding: 2.5rem; transition: all 0.3s; }
  .testimonial-card:hover { border-color: rgba(141,212,212,0.08); }
  .testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1.25rem; }
  .testimonial-card blockquote { font-size: 1rem; color: var(--white-muted); line-height: 1.7; font-weight: 300; font-style: italic; margin-bottom: 1.5rem; }
  .testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
  .testimonial-avatar { width: 40px; height: 40px; background: var(--brown-warm); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; color: var(--teal); }
  .testimonial-name h4 { font-size: 0.9rem; font-weight: 600; }
  .testimonial-name p { font-size: 0.78rem; color: var(--white-dim); }

  .testimonial-cta { text-align: center; padding: 4rem 3rem; background: var(--bg-primary); }
  .testimonial-cta p { color: var(--white-muted); margin-bottom: 1.5rem; font-size: 1.05rem; font-weight: 300; }

  /* ═══════════════ ARTICLE LIBRARY ═══════════════ */
  .article-list { max-width: 1100px; margin: 0 auto; }
  .article-sort-bar {
    max-width: 1100px; margin: 0 auto 1.25rem;
    display: flex; align-items: center; gap: 0.75rem;
  }
  .article-sort-label {
    font-size: 0.72rem; font-weight: 600;
    color: var(--white-dim); letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  .article-sort-btn {
    background: var(--bg-card); color: var(--white-dim);
    border: 1px solid rgba(240,236,232,0.08);
    border-radius: 100px; padding: 0.4rem 1rem;
    font-family: 'Outfit', sans-serif; font-size: 0.78rem;
    font-weight: 600; cursor: pointer; transition: all 0.2s;
  }
  .article-sort-btn:hover { border-color: rgba(141,212,212,0.2); color: var(--white-muted); }
  .article-sort-btn.active {
    background: rgba(141,212,212,0.1); color: var(--teal);
    border-color: rgba(141,212,212,0.3);
  }
  .article-item {
    display: flex; align-items: flex-start; gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(240,236,232,0.04);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: all 0.3s;
    cursor: default;
  }
  .article-item:hover {
    border-color: rgba(141,212,212,0.1);
    background: var(--bg-card-hover);
    transform: translateY(-1px);
  }
  .article-item.is-live { cursor: pointer; }
  .article-item.is-live:hover { border-color: rgba(141,212,212,0.2); }
  .article-date {
    flex-shrink: 0; width: 56px; text-align: center;
    padding-top: 2px;
  }
  .article-date .day {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--teal); line-height: 1;
  }
  .article-date .month {
    font-size: 0.7rem; font-weight: 600;
    color: var(--white-dim); letter-spacing: 1px;
    text-transform: uppercase; margin-top: 2px;
  }
  .article-body { flex: 1; }
  .article-body h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem; font-weight: 600;
    color: var(--white); margin-bottom: 0.35rem;
    line-height: 1.35;
  }
  .article-body p {
    color: var(--white-muted); font-size: 0.85rem;
    line-height: 1.55; font-weight: 300;
  }
  .article-meta {
    flex-shrink: 0; display: flex; flex-direction: column;
    align-items: flex-end; gap: 0.4rem; align-self: center;
  }
  .article-tag {
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 0.3rem 0.7rem; border-radius: 100px;
  }
  .article-tag.published {
    background: rgba(141,212,212,0.1);
    color: var(--teal);
    border: 1px solid rgba(141,212,212,0.25);
  }
  .article-tag.coming {
    background: rgba(240,236,232,0.06);
    color: var(--white-muted);
    border: 1px solid rgba(240,236,232,0.15);
  }
  .article-tag.featured {
    background: rgba(255,138,28,0.1);
    color: #FF8A1C;
    border: 1px solid rgba(255,138,28,0.25);
  }
  .article-downloads {
    font-size: 0.7rem; font-weight: 500;
    color: var(--white-dim); white-space: nowrap;
  }
  .article-downloads .count { color: var(--teal); font-weight: 700; }
  .most-requested-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem; font-weight: 300;
    color: var(--teal-dark); line-height: 1;
    font-style: italic; margin-bottom: 0.75rem;
  }

  /* ═══════════════ BOOK PAGE ═══════════════ */
  .book-section { padding: 5rem 3rem; background: var(--bg-secondary); }
  .book-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1000px; margin: 0 auto; align-items: center; }
  .book-cover { background: var(--bg-card); border: 1px solid rgba(240,236,232,0.06); border-radius: 6px; aspect-ratio: 2/3; overflow: hidden; position: relative; box-shadow: 0 24px 48px rgba(0,0,0,0.45), 0 6px 16px rgba(0,0,0,0.3); }
  .book-cover img { width: 100%; height: 100%; object-fit: contain; display: block; }
  /* Toggle: holds both cover images stacked, only one visible at a time */
  .book-cover-wrap { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
  .book-cover img.is-hidden { display: none; }
  .book-cover-toggle {
    background: rgba(141, 212, 212, 0.08);
    color: var(--teal);
    border: 1px solid rgba(141, 212, 212, 0.3);
    border-radius: 100px;
    padding: 0.55rem 1.4rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
  }
  .book-cover-toggle:hover {
    background: rgba(141, 212, 212, 0.15);
    border-color: var(--teal);
    transform: translateY(-1px);
  }
  .book-cover.placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; padding: 3rem; text-align: center; }
  .book-cover .coming { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); font-weight: 600; }
  .book-cover h3 { font-family: 'DM Serif Display', serif; font-size: 1.6rem; line-height: 1.3; }
  .book-cover .author { font-size: 0.9rem; color: var(--white-dim); font-weight: 400; }
  .book-details h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.2; }
  .book-details > p { color: var(--white-muted); font-size: 1rem; line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem; }
  .book-notify { display: flex; gap: 0.75rem; flex-wrap: wrap; }
  .book-notify input { flex: 1; min-width: 200px; padding: 0.8rem 1.25rem; background: var(--bg-card); border: 1px solid rgba(240,236,232,0.1); border-radius: 8px; color: var(--white); font-family: 'Outfit', sans-serif; font-size: 0.95rem; outline: none; }
  .book-notify input:focus { border-color: var(--teal); }
  .book-notify button { padding: 0.8rem 1.75rem; background: var(--gradient-teal); color: var(--bg-primary); border: none; border-radius: 8px; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: transform 0.2s; }
  .book-notify button:hover { transform: translateY(-1px); }

  /* ═══════════════ FOOTER ═══════════════ */
  footer {
    padding: 3rem; background: var(--bg-primary);
    border-top: 1px solid rgba(240,236,232,0.04);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  }
  .footer-left span { color: var(--teal); font-weight: 700; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; }
  footer p { color: var(--white-muted); font-size: 0.82rem; }
  .footer-links { display: flex; gap: 2rem; align-items: center; }
  .footer-links a { color: var(--white-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; display: inline-flex; align-items: center; gap: 0.4rem; }
  .footer-links a:hover { color: var(--teal); }
  .footer-links a svg { flex-shrink: 0; }
  .footer-note { width: 100%; text-align: center; margin-top: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(240,236,232,0.06); font-size: 0.78rem; color: var(--white-muted); letter-spacing: 0.3px; }

  /* ═══════════════ RESPONSIVE ═══════════════ */
  /* ═══════════════ AI READINESS ASSESSMENT ═══════════════ */
  .assess-container { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
  .assess-card { background: var(--bg-card); border: 1px solid rgba(141,212,212,0.12); border-radius: 16px; padding: 3rem; }
  .assess-progress-wrap { margin-bottom: 2.5rem; }
  .assess-progress-text { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--white-dim); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.75rem; font-weight: 500; }
  .assess-progress-bar { height: 6px; background: rgba(141,212,212,0.08); border-radius: 3px; overflow: hidden; }
  .assess-progress-fill { height: 100%; background: var(--teal); border-radius: 3px; transition: width 0.4s ease; }
  .assess-pillar-label { color: var(--teal); font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; }
  .assess-question { font-size: 1.4rem; font-weight: 600; line-height: 1.4; margin-bottom: 2rem; color: var(--white); }
  .assess-answers { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
  .assess-answer { padding: 1.1rem 1.5rem; background: var(--bg-secondary); border: 1px solid rgba(240,236,232,0.06); border-radius: 10px; cursor: pointer; transition: all 0.2s; color: var(--white-muted); font-size: 0.98rem; line-height: 1.5; text-align: left; font-family: inherit; }
  .assess-answer:hover { border-color: rgba(141,212,212,0.3); background: var(--bg-card-hover); color: var(--white); }
  .assess-answer.selected { border-color: var(--teal); background: rgba(141,212,212,0.08); color: var(--white); }
  .assess-nav-buttons { display: flex; justify-content: space-between; gap: 1rem; }
  .assess-btn { padding: 0.85rem 2rem; border-radius: 8px; font-family: inherit; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all 0.2s; border: none; }
  .assess-btn-back { background: transparent; color: var(--white-dim); border: 1px solid rgba(240,236,232,0.1); }
  .assess-btn-back:hover { color: var(--white); border-color: rgba(240,236,232,0.3); }
  .assess-btn-back:disabled { opacity: 0.3; cursor: not-allowed; }
  .assess-btn-next { background: var(--teal); color: var(--bg-primary); margin-left: auto; }
  .assess-btn-next:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(141,212,212,0.3); }
  .assess-btn-next:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }

  /* Score display */
  .assess-score-circle { width: 200px; height: 200px; border-radius: 50%; margin: 0 auto 2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; background: radial-gradient(circle, rgba(141,212,212,0.12) 0%, var(--bg-card) 70%); border: 3px solid var(--teal); position: relative; }
  .assess-score-num { font-family: 'JetBrains Mono', monospace; font-size: 3.5rem; font-weight: 700; color: var(--teal); line-height: 1; }
  .assess-score-max { font-size: 1rem; color: var(--white-dim); margin-top: 0.4rem; letter-spacing: 1px; }
  .assess-tier-badge { display: inline-block; padding: 0.45rem 1.25rem; background: var(--teal); color: var(--bg-primary); border-radius: 30px; font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1.25rem; }
  .assess-tier-message { color: var(--white-muted); font-size: 1.05rem; line-height: 1.7; font-weight: 300; max-width: 600px; margin: 0 auto 2.5rem; }

  /* Unlock prompt */
  .assess-unlock-card { background: linear-gradient(135deg, rgba(141,212,212,0.08) 0%, var(--bg-card) 100%); border: 1px solid rgba(141,212,212,0.25); border-radius: 12px; padding: 2rem 2.5rem; margin-top: 2rem; text-align: left; }
  .assess-unlock-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
  .assess-unlock-card ul { list-style: none; padding: 0; margin: 1rem 0 1.5rem; }
  .assess-unlock-card ul li { color: var(--white-muted); font-size: 0.95rem; line-height: 1.6; padding-left: 1.5rem; position: relative; margin-bottom: 0.5rem; font-weight: 300; }
  .assess-unlock-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

  /* Form fields */
  .assess-field { margin-bottom: 1.25rem; }
  .assess-field label { display: block; color: var(--white-dim); font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.5rem; }
  .assess-field input { width: 100%; padding: 0.85rem 1.1rem; background: var(--bg-primary); border: 1px solid rgba(240,236,232,0.1); border-radius: 8px; color: var(--white); font-family: inherit; font-size: 1rem; outline: none; transition: border-color 0.2s; }
  .assess-field input:focus { border-color: var(--teal); }
  .assess-field input.error { border-color: #d97757; }
  .assess-field-error { color: #d97757; font-size: 0.8rem; margin-top: 0.4rem; display: none; }
  .assess-field-error.visible { display: block; }
  .assess-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Pillar bars */
  .assess-pillar-bars { display: flex; flex-direction: column; gap: 1.25rem; margin: 2rem 0; }
  .assess-pillar-row { }
  .assess-pillar-header { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.9rem; }
  .assess-pillar-name { color: var(--white); font-weight: 500; }
  .assess-pillar-score { color: var(--teal); font-family: 'JetBrains Mono', monospace; font-weight: 600; font-size: 0.85rem; }
  .assess-pillar-track { height: 8px; background: rgba(240,236,232,0.05); border-radius: 4px; overflow: hidden; }
  .assess-pillar-fill { height: 100%; border-radius: 4px; transition: width 0.6s ease; }
  .assess-pillar-fill.low { background: #d97757; }
  .assess-pillar-fill.med { background: #e8b340; }
  .assess-pillar-fill.high { background: var(--teal); }

  /* Recommendations */
  .assess-rec-list { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0 2.5rem; }
  .assess-rec { padding: 1.25rem 1.5rem; background: var(--bg-secondary); border-left: 3px solid var(--teal); border-radius: 8px; }
  .assess-rec-header { color: var(--teal); font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.5rem; }
  .assess-rec-text { color: var(--white-muted); font-size: 0.95rem; line-height: 1.65; font-weight: 300; }

  /* Whitepaper / resource download buttons inside each recommendation card */
  .assess-rec-resources {
    display: flex; flex-wrap: wrap; gap: 0.55rem;
    margin-top: 1.1rem; padding-top: 1rem;
    border-top: 1px solid rgba(141, 212, 212, 0.1);
  }
  .assess-rec-resources-label {
    width: 100%;
    color: var(--white-dim); font-size: 0.68rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 0.35rem;
  }
  .assess-wp-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    background: var(--brown-warm);
    color: var(--white);
    border: 1px solid rgba(141, 212, 212, 0.15);
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem; font-weight: 500;
    text-decoration: none; cursor: pointer;
    transition: all 0.2s;
  }
  .assess-wp-btn:hover {
    background: var(--brown-light);
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-1px);
  }
  .assess-wp-btn .wp-icon {
    color: var(--teal); font-size: 0.95rem; line-height: 1;
  }
  .assess-wp-btn .wp-tag {
    color: var(--teal); font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.5px;
    background: rgba(141, 212, 212, 0.08);
    padding: 0.18rem 0.4rem; border-radius: 3px;
    margin-left: 0.25rem;
    text-transform: uppercase;
  }

  /* Verification code input */
  .assess-code-input { letter-spacing: 0.5em; font-family: 'JetBrains Mono', monospace; font-size: 1.4rem; text-align: center; }

  /* Two-column intro */
  .assess-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 2rem 0; }
  .assess-intro-col { padding: 1.5rem; background: var(--bg-secondary); border-radius: 10px; }
  .assess-intro-col h4 { color: var(--teal); font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.85rem; }

  @media (max-width: 768px) {
    .assess-card { padding: 2rem 1.5rem; }
    .assess-question { font-size: 1.15rem; }
    .assess-form-row, .assess-intro-grid { grid-template-columns: 1fr; }
    .assess-score-circle { width: 160px; height: 160px; }
    .assess-score-num { font-size: 2.75rem; }
  }

  /* ═══════════════ HAMBURGER MENU ═══════════════ */
  .nav-hamburger {
    display: none; cursor: pointer; background: none; border: none;
    padding: 0.5rem; flex-direction: column; gap: 5px; z-index: 110;
  }
  .nav-hamburger span {
    display: block; width: 24px; height: 2px; background: var(--teal);
    border-radius: 2px; transition: all 0.3s ease;
  }
  .nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  @media (max-width: 768px) {
    nav { padding: 0.85rem 1.5rem; padding-top: max(0.85rem, env(safe-area-inset-top)); background: #1e1610; border-bottom: 1px solid rgba(141, 212, 212, 0.2); }
    .nav-hamburger { display: flex; }
    .nav-phone span { display: none; }
    .nav-phone { margin-left: 0; margin-right: 0.75rem; }
    .nav-phone svg { width: 20px; height: 20px; }
    .nav-links {
      display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
      background: #1e1610;
      flex-direction: column; align-items: center; justify-content: center;
      gap: 1rem; z-index: 105;
      padding: 5rem 2rem 3rem;
      padding-top: max(5rem, calc(env(safe-area-inset-top) + 4rem));
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }
    .nav-links.mobile-open { display: flex; }
    .nav-links li { list-style: none; }
    .nav-links a { font-size: 1.1rem !important; padding: 0.4rem 1rem; }
    .nav-cta { margin-top: 0.25rem; font-size: 1rem !important; }
    .hero { padding: 3rem 1.5rem 3rem; overflow: visible; }
    .hero-buttons { flex-direction: column; gap: 0.75rem; }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary { width: 100%; justify-content: center; box-sizing: border-box; font-size: 0.95rem; padding: 0.85rem 1.25rem; white-space: normal; text-align: center; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
    .tagline-band { padding: 2rem 1.5rem; }
    .services, .creds-section, .booking-section, .testimonials-section, .book-section { padding: 3rem 1.5rem; }
    .services-grid, .competency-grid, .cert-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .cred-grid, .booking-layout, .book-layout { grid-template-columns: 1fr; gap: 2rem; }
    .booking-options { grid-template-columns: 1fr; }
    .cta-section { padding: 4rem 1.5rem; }
    .page-top { padding: 3rem 1.5rem 3rem; }
    footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
    .training-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
    .article-item { flex-wrap: wrap; }
    .article-tag { align-self: flex-start; }
  }

  /* ════════════════════════════════════════════════════════════ */
  /* ASSESSMENT PAGE — v2 design adapted to existing site palette */
  /* All new classes are prefixed with .aspg- to avoid collisions  */
  /* ════════════════════════════════════════════════════════════ */
  .aspg-hero {
    padding: 5rem 3rem 4rem;
    text-align: center;
    background: var(--gradient-hero);
    border-bottom: 1px solid rgba(141, 212, 212, 0.08);
    position: relative;
    overflow: hidden;
  }
  .aspg-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(141,212,212,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(141,212,212,0.02) 1px, transparent 1px);
    background-size: 80px 80px; pointer-events: none;
  }
  .aspg-hero-inner { position: relative; max-width: 800px; margin: 0 auto; }
  .aspg-hero .eyebrow {
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--teal); margin-bottom: 1.25rem;
  }
  .aspg-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -1px;
    color: var(--white); margin-bottom: 1.25rem;
  }
  .aspg-hero h1 em {
    color: var(--teal); font-style: italic; font-weight: 700;
  }
  .aspg-hero p.aspg-lead {
    font-size: 1.15rem; color: var(--white-muted);
    max-width: 620px; margin: 0 auto;
    line-height: 1.7; font-weight: 300;
  }
  .aspg-progress-pill {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: var(--bg-card); border: 1px solid var(--brown-warm);
    padding: 0.5rem 1.1rem; border-radius: 100px;
    font-size: 0.78rem; color: var(--white-muted);
    margin-top: 2rem;
  }
  .aspg-progress-pill .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--teal);
    animation: aspg-pulse 2s ease-in-out infinite;
  }
  @keyframes aspg-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  /* Sample no-email section */
  .aspg-sample-section {
    padding: 5rem 3rem;
    background: var(--bg-secondary);
  }
  .aspg-intro-section {
    padding: 4rem 3rem;
    background: var(--bg-primary);
  }

  /* "Sample Results" watermark overlay for the preview sections */
  .aspg-sample-section,
  .aspg-fullresults-section {
    position: relative;
    overflow: hidden;
  }
  .aspg-sample-section::after,
  .aspg-fullresults-section::after {
    content: 'SAMPLE RESULTS';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(-22deg);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(4rem, 11vw, 9rem);
    font-weight: 800;
    letter-spacing: 0.4rem;
    color: var(--white);
    opacity: 0.06;
    pointer-events: none;
    white-space: nowrap;
    z-index: 1;
    text-transform: uppercase;
    user-select: none;
  }
  /* Make sure the watermark sits BELOW the actual content */
  .aspg-sample-section > *,
  .aspg-fullresults-section > * {
    position: relative;
    z-index: 2;
  }
  /* Subtle "Sample" label badge in the corner of each sample card */
  .aspg-sample-label {
    position: absolute;
    top: 1rem; left: 1rem;
    background: rgba(212, 168, 85, 0.15);
    color: var(--gold);
    border: 1px solid rgba(212, 168, 85, 0.4);
    font-size: 0.65rem; font-weight: 800;
    letter-spacing: 1.5px;
    padding: 0.3rem 0.65rem;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 6;
    pointer-events: none;
  }
  .aspg-section-hdr {
    text-align: center; max-width: 780px;
    margin: 0 auto 3rem;
  }
  .aspg-section-hdr .mini {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--teal); margin-bottom: 0.75rem;
  }
  .aspg-section-hdr h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700; color: var(--white);
    letter-spacing: -0.5px; margin-bottom: 0.75rem;
  }
  .aspg-section-hdr p {
    color: var(--white-muted); font-size: 1rem;
    font-weight: 300; line-height: 1.65;
  }

  .aspg-noemail-card {
    max-width: 540px; margin: 0 auto;
    background: var(--bg-primary);
    border: 1px solid var(--brown-warm);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
  }
  .aspg-noemail-card .eyebrow-text {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 2.5px; color: var(--teal);
    margin-bottom: 1.5rem;
  }
  .aspg-ring {
    width: 200px; height: 200px;
    border: 4px solid var(--teal);
    border-radius: 50%;
    margin: 0 auto 1.75rem;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
  }
  .aspg-ring .num {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem; font-weight: 700;
    color: var(--teal); line-height: 1;
  }
  .aspg-ring .of {
    font-size: 0.85rem; color: var(--white-muted);
    margin-top: 0.4rem; letter-spacing: 1px;
  }
  .aspg-tier-chip {
    display: inline-block;
    background: var(--teal); color: var(--bg-primary);
    padding: 0.55rem 1.4rem; border-radius: 100px;
    font-size: 0.72rem; font-weight: 800;
    letter-spacing: 2.5px;
    margin-bottom: 1.5rem;
  }
  .aspg-noemail-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--white); margin-bottom: 1rem;
    line-height: 1.25;
  }
  .aspg-noemail-card > p {
    font-size: 0.95rem; color: var(--white-muted);
    line-height: 1.65; font-weight: 300;
    margin-bottom: 2rem;
  }
  .aspg-unlock-nudge {
    background: var(--bg-card);
    border: 1px dashed var(--teal-dark);
    border-radius: 10px;
    padding: 1.25rem; text-align: left;
  }
  .aspg-unlock-nudge h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem; font-weight: 600;
    color: var(--teal); margin-bottom: 0.5rem;
  }
  .aspg-unlock-nudge p {
    font-size: 0.85rem; color: var(--white-muted);
    margin-bottom: 0.85rem; font-weight: 300;
  }
  .aspg-email-form { display: flex; gap: 0.5rem; }
  .aspg-email-form input {
    flex: 1; background: var(--bg-primary);
    border: 1px solid var(--brown-warm);
    border-radius: 6px; padding: 0.7rem 0.9rem;
    color: var(--white); font-family: 'Outfit', sans-serif;
    font-size: 0.85rem; outline: none;
  }
  .aspg-email-form input:focus { border-color: var(--teal); }
  .aspg-email-form button {
    background: var(--gradient-teal);
    color: var(--bg-primary); border: none;
    padding: 0.7rem 1.1rem; border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700; font-size: 0.85rem;
    cursor: pointer; white-space: nowrap;
    transition: transform 0.2s;
  }
  .aspg-email-form button:hover { transform: translateY(-1px); }

  /* Floating "100% Free" badge */
  .aspg-free-badge {
    position: absolute; top: -16px; right: -12px;
    background: var(--gold); color: var(--bg-primary);
    font-size: 0.72rem; font-weight: 800;
    letter-spacing: 1.2px; padding: 0.5rem 0.95rem;
    border-radius: 24px; line-height: 1;
    text-transform: uppercase;
    transform: rotate(6deg);
    box-shadow: 0 6px 20px rgba(212, 168, 85, 0.3);
    z-index: 5;
  }

  /* Full results — 2-column section */
  .aspg-fullresults-section {
    padding: 5rem 3rem;
    background: var(--bg-primary);
  }
  .aspg-full-results {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem; align-items: start;
  }
  .aspg-col-summary {
    position: sticky; top: 100px;
    background: var(--bg-secondary);
    border: 1px solid var(--brown-warm);
    border-radius: 16px;
    padding: 2.25rem 2rem;
  }
  .aspg-col-summary .mini-hdr {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 2.5px; color: var(--teal);
    text-align: center; margin-bottom: 1.4rem;
  }
  .aspg-col-summary .ring-lg {
    width: 170px; height: 170px;
    border: 4px solid var(--teal);
    border-radius: 50%;
    margin: 0 auto 1.4rem;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
  }
  .aspg-col-summary .ring-lg .n {
    font-family: 'Outfit', sans-serif;
    font-size: 3.25rem; font-weight: 700;
    color: var(--teal); line-height: 1;
  }
  .aspg-col-summary .ring-lg .o {
    font-size: 0.75rem; color: var(--white-muted);
    letter-spacing: 1.2px; margin-top: 0.3rem;
  }
  .aspg-col-summary .chip {
    display: block; text-align: center;
    background: var(--teal); color: var(--bg-primary);
    padding: 0.5rem 1rem; border-radius: 100px;
    font-size: 0.65rem; font-weight: 800;
    letter-spacing: 2px; width: fit-content;
    margin: 0 auto 1.4rem;
  }
  .aspg-col-summary h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem; font-weight: 700;
    text-align: center; color: var(--white);
    margin-bottom: 0.85rem; line-height: 1.25;
  }
  .aspg-col-summary p.summary-p {
    font-size: 0.88rem; color: var(--white-muted);
    line-height: 1.6; text-align: center;
    margin-bottom: 1.5rem; font-weight: 300;
  }
  .aspg-cat-bars {
    border-top: 1px solid var(--brown-warm);
    padding-top: 1.4rem; margin-top: 1.25rem;
  }
  .aspg-cat-bars .cat-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem; font-weight: 600;
    color: var(--white); text-align: center;
    margin-bottom: 1rem;
  }
  .aspg-cat-row { margin-bottom: 0.85rem; }
  .aspg-cat-row .top-row {
    display: flex; justify-content: space-between;
    margin-bottom: 0.3rem; font-size: 0.78rem;
  }
  .aspg-cat-row .top-row .lbl { color: var(--white-muted); }
  .aspg-cat-row .top-row .val {
    color: var(--teal); font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
  }
  .aspg-cat-bar {
    height: 6px; background: var(--brown-warm);
    border-radius: 3px; overflow: hidden;
  }
  .aspg-cat-bar .fill {
    height: 100%;
    background: linear-gradient(90deg, var(--teal-dark), var(--teal));
    border-radius: 3px;
  }

  .aspg-col-recs h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 700; color: var(--white);
    letter-spacing: -0.5px; margin-bottom: 0.5rem;
  }
  .aspg-col-recs > p.intro {
    color: var(--white-muted); font-size: 0.95rem;
    margin-bottom: 2rem; line-height: 1.65;
    font-weight: 300;
  }
  .aspg-focus-card {
    background: var(--bg-secondary);
    border: 1px solid var(--brown-warm);
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 1.1rem;
    transition: all 0.2s;
  }
  .aspg-focus-card:hover {
    border-color: var(--teal-dark);
    transform: translateY(-2px);
  }
  .aspg-focus-card .fc-header {
    display: flex; align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem; margin-bottom: 0.85rem;
  }
  .aspg-focus-card .fc-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem; font-weight: 300;
    color: var(--teal-dark); line-height: 1;
    font-style: italic;
  }
  .aspg-focus-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem; font-weight: 700;
    color: var(--white); letter-spacing: -0.3px;
    margin-bottom: 0.5rem;
  }
  .aspg-focus-card .why {
    display: inline-block;
    background: var(--brown-warm); color: var(--teal);
    padding: 0.18rem 0.6rem; border-radius: 6px;
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 1px;
  }
  .aspg-focus-card p.fc-desc {
    color: var(--white-muted); font-size: 0.88rem;
    line-height: 1.65; font-weight: 300;
    margin-bottom: 1.1rem;
  }
  .aspg-focus-card .fc-bullets {
    list-style: none; padding: 0;
    margin-bottom: 1.4rem;
  }
  .aspg-focus-card .fc-bullets li {
    font-size: 0.85rem; color: var(--white-muted);
    padding: 0.3rem 0 0.3rem 1.4rem;
    position: relative; font-weight: 300;
  }
  .aspg-focus-card .fc-bullets li::before {
    content: ''; position: absolute;
    left: 0; top: 0.7rem; width: 0.7rem;
    height: 1px; background: var(--teal);
  }
  .aspg-fc-actions {
    display: flex; gap: 0.6rem; flex-wrap: wrap;
    padding-top: 1.1rem;
    border-top: 1px solid var(--brown-warm);
  }
  .aspg-wp-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--brown-warm); color: var(--white);
    border: 1px solid rgba(141, 212, 212, 0.15);
    padding: 0.6rem 0.9rem; border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500; font-size: 0.82rem;
    text-decoration: none; cursor: pointer;
    transition: all 0.15s;
  }
  .aspg-wp-btn:hover {
    background: var(--brown-light);
    border-color: var(--teal); color: var(--teal);
    transform: translateY(-1px);
  }
  .aspg-wp-btn .icon {
    color: var(--teal); font-size: 0.95rem;
  }
  .aspg-wp-btn .tag {
    margin-left: 0.25rem; font-size: 0.62rem;
    color: var(--teal);
    background: rgba(141, 212, 212, 0.1);
    padding: 0.18rem 0.4rem; border-radius: 4px;
    font-weight: 700; letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .aspg-primary-consult {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: var(--gradient-teal);
    color: var(--bg-primary); border: none;
    padding: 0.6rem 1rem; border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700; font-size: 0.82rem;
    text-decoration: none; cursor: pointer;
    transition: transform 0.2s;
  }
  .aspg-primary-consult:hover { transform: translateY(-1px); }

  .aspg-bottom-cta {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(141,212,212,0.1), var(--bg-card));
    border: 1px solid var(--teal-dark);
    border-radius: 16px;
    padding: 2.5rem; margin-top: 1.5rem;
    text-align: center;
  }
  .aspg-bottom-cta h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--white); margin-bottom: 0.6rem;
  }
  .aspg-bottom-cta p {
    color: var(--white-muted); font-size: 0.9rem;
    margin: 0 auto 1.4rem; max-width: 540px;
    font-weight: 300; line-height: 1.65;
  }

  @media (max-width: 900px) {
    .aspg-full-results { grid-template-columns: 1fr; }
    .aspg-col-summary { position: static; }
    .aspg-hero, .aspg-sample-section, .aspg-fullresults-section { padding: 3rem 1.5rem; }
  }

  /* ════════════════════════════════════════════════════════════ */
  /* DETAIL PAGES — Readiness Audit, Workflow Automation, Training */
  /* All new classes prefixed .dp- to avoid collisions             */
  /* ════════════════════════════════════════════════════════════ */
  .dp-section { padding: 5rem 3rem; }
  .dp-section.alt { background: var(--bg-secondary); }
  .dp-container { max-width: 1100px; margin: 0 auto; }
  .dp-narrow { max-width: 800px; margin: 0 auto; }

  .dp-h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700; color: var(--white);
    letter-spacing: -0.5px; margin-bottom: 0.75rem;
  }
  .dp-h2-center { text-align: center; }
  .dp-section-intro {
    color: var(--white-muted); font-size: 1.05rem;
    line-height: 1.65; font-weight: 300;
    max-width: 720px; margin: 0 auto 3rem;
    text-align: center;
  }

  /* Comparison block (Free Assessment vs Paid Audit) */
  .dp-compare {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.5rem; margin: 2rem 0;
  }
  .dp-compare-card {
    background: var(--bg-card);
    border: 1px solid var(--brown-warm);
    border-radius: 16px; padding: 2rem;
    position: relative;
  }
  .dp-compare-card.featured {
    border-color: var(--teal-dark);
    background: linear-gradient(135deg, rgba(141,212,212,0.06), var(--bg-card));
  }
  .dp-compare-tag {
    display: inline-block;
    background: var(--brown-warm); color: var(--white-muted);
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 0.35rem 0.7rem; border-radius: 4px;
    margin-bottom: 1rem;
  }
  .dp-compare-card.featured .dp-compare-tag {
    background: var(--teal); color: var(--bg-primary);
  }
  .dp-compare-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem; font-weight: 700;
    color: var(--white); margin-bottom: 0.5rem;
  }
  .dp-compare-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem; font-weight: 700;
    color: var(--teal); margin-bottom: 1rem;
  }
  .dp-compare-price .dim {
    font-size: 0.85rem; font-weight: 400;
    color: var(--white-dim);
  }
  .dp-compare-card ul {
    list-style: none; padding: 0;
    margin-top: 1rem;
  }
  .dp-compare-card ul li {
    color: var(--white-muted); font-size: 0.9rem;
    padding: 0.4rem 0 0.4rem 1.4rem;
    position: relative; font-weight: 300;
    line-height: 1.55;
  }
  .dp-compare-card ul li::before {
    content: '✓'; position: absolute;
    left: 0; top: 0.4rem;
    color: var(--teal); font-weight: 700;
  }

  /* Pricing tier cards */
  .dp-pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin: 2.5rem 0 0;
  }
  .dp-tier {
    background: var(--bg-card);
    border: 1px solid var(--brown-warm);
    border-radius: 16px; padding: 2rem;
    display: flex; flex-direction: column;
    transition: all 0.2s;
    position: relative;
  }
  .dp-tier:hover {
    border-color: var(--teal-dark);
    transform: translateY(-3px);
  }
  .dp-tier.featured {
    border-color: var(--teal);
    box-shadow: 0 8px 32px rgba(141, 212, 212, 0.12);
  }
  .dp-tier-badge {
    position: absolute; top: -10px; left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-teal);
    color: var(--bg-primary);
    font-size: 0.62rem; font-weight: 800;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 0.3rem 0.85rem; border-radius: 100px;
  }
  .dp-tier-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem; font-weight: 700;
    color: var(--teal); letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 0.6rem;
  }
  .dp-tier-price {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem; font-weight: 700;
    color: var(--white); line-height: 1;
    margin-bottom: 0.4rem;
  }
  .dp-tier-price-note {
    color: var(--white-dim); font-size: 0.78rem;
    margin-bottom: 1.5rem;
  }
  .dp-tier-fit {
    color: var(--white-muted); font-size: 0.88rem;
    line-height: 1.55; font-weight: 300;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--brown-warm);
  }
  .dp-tier-includes-label {
    color: var(--white-dim); font-size: 0.7rem;
    font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; margin-bottom: 0.75rem;
  }
  .dp-tier-includes {
    list-style: none; padding: 0; margin-bottom: 1.5rem;
    flex: 1;
  }
  .dp-tier-includes li {
    color: var(--white-muted); font-size: 0.85rem;
    padding: 0.35rem 0 0.35rem 1.3rem;
    position: relative; font-weight: 300;
    line-height: 1.55;
  }
  .dp-tier-includes li::before {
    content: ''; position: absolute;
    left: 0; top: 0.7rem; width: 0.7rem;
    height: 1px; background: var(--teal);
  }
  .dp-tier .btn-primary {
    width: 100%; justify-content: center;
    margin-top: auto;
  }

  /* Guarantee callout */
  .dp-guarantee {
    background: linear-gradient(135deg, rgba(141, 212, 212, 0.06) 0%, var(--bg-card) 100%);
    border: 1px solid rgba(141, 212, 212, 0.15);
    border-left: 4px solid var(--teal);
    border-radius: 4px 16px 16px 4px;
    padding: 2rem 2rem 2rem 1.75rem;
    margin: 1.5rem 0;
    display: flex;
    gap: 1.5rem; align-items: flex-start;
    transition: all 0.3s;
  }
  .dp-guarantee:hover {
    border-color: rgba(141, 212, 212, 0.3);
    border-left-color: var(--teal);
    box-shadow: 0 8px 32px rgba(141, 212, 212, 0.08);
    transform: translateY(-2px);
  }
  .dp-guarantee-icon {
    width: 64px; height: 64px; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(141, 212, 212, 0.15), rgba(141, 212, 212, 0.05));
    border: 1px solid rgba(141, 212, 212, 0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .dp-guarantee-eyebrow {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.35rem;
    opacity: 0.8;
  }
  .dp-guarantee h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem; font-weight: 700;
    color: var(--white); margin-bottom: 0.5rem;
  }
  .dp-guarantee p {
    color: var(--white-muted); font-size: 0.92rem;
    line-height: 1.65; font-weight: 300; margin: 0;
  }
  .dp-guarantee p strong { color: var(--teal); font-weight: 600; }

  /* Process / timeline (5 phases) */
  .dp-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem; margin: 2.5rem 0;
    position: relative;
  }
  .dp-timeline::before {
    content: ''; position: absolute;
    top: 28px; left: 10%; right: 10%;
    height: 1px; background: var(--brown-light);
    z-index: 0;
  }
  .dp-phase {
    text-align: center; position: relative; z-index: 1;
  }
  .dp-phase-num {
    width: 56px; height: 56px;
    background: var(--bg-card);
    border: 2px solid var(--teal);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem; font-weight: 700;
    color: var(--teal); margin: 0 auto 0.85rem;
  }
  .dp-phase h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem; font-weight: 600;
    color: var(--white); margin-bottom: 0.3rem;
  }
  .dp-phase p {
    color: var(--white-muted); font-size: 0.78rem;
    line-height: 1.5; font-weight: 300;
  }

  /* Use case / pattern grid */
  .dp-pattern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem; margin-top: 2.5rem;
  }
  .dp-pattern {
    background: var(--bg-card);
    border: 1px solid var(--brown-warm);
    border-radius: 12px; padding: 1.5rem;
    transition: all 0.2s;
  }
  .dp-pattern:hover {
    border-color: var(--teal-dark);
    transform: translateY(-2px);
  }
  .dp-pattern-icon {
    font-size: 1.6rem; margin-bottom: 0.85rem;
    display: block;
  }
  .dp-pattern h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem; font-weight: 600;
    color: var(--white); margin-bottom: 0.5rem;
  }
  .dp-pattern p {
    color: var(--white-muted); font-size: 0.85rem;
    line-height: 1.55; font-weight: 300;
  }

  /* Format cards (training) */
  .dp-formats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-top: 2.5rem;
  }
  .dp-format {
    background: var(--bg-card);
    border: 1px solid var(--brown-warm);
    border-radius: 16px; padding: 2rem;
    display: flex; flex-direction: column;
    transition: all 0.2s;
  }
  .dp-format:hover {
    border-color: var(--teal-dark);
    transform: translateY(-2px);
  }
  .dp-format-icon {
    font-size: 2rem; margin-bottom: 1rem;
    display: block;
  }
  .dp-format h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem; font-weight: 700;
    color: var(--white); margin-bottom: 0.4rem;
  }
  .dp-format-price {
    color: var(--teal); font-size: 1rem;
    font-weight: 600; margin-bottom: 1rem;
  }
  .dp-format p {
    color: var(--white-muted); font-size: 0.9rem;
    line-height: 1.6; font-weight: 300;
    margin-bottom: 1.25rem; flex: 1;
  }
  .dp-format-bullets {
    list-style: none; padding: 0;
  }
  .dp-format-bullets li {
    color: var(--white-muted); font-size: 0.82rem;
    padding: 0.3rem 0 0.3rem 1.2rem;
    position: relative; font-weight: 300;
    line-height: 1.5;
  }
  .dp-format-bullets li::before {
    content: ''; position: absolute;
    left: 0; top: 0.65rem; width: 0.6rem;
    height: 1px; background: var(--teal);
  }

  /* Curriculum tracks */
  .dp-tracks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem; margin-top: 2rem;
  }
  .dp-track {
    background: var(--bg-secondary);
    border-left: 3px solid var(--teal);
    padding: 1.25rem 1.4rem;
    border-radius: 0 8px 8px 0;
  }
  .dp-track h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem; font-weight: 600;
    color: var(--white); margin-bottom: 0.4rem;
  }
  .dp-track p {
    color: var(--white-muted); font-size: 0.82rem;
    line-height: 1.55; font-weight: 300;
  }

  /* Final CTA */
  .dp-final-cta {
    background: linear-gradient(135deg, rgba(141,212,212,0.1), var(--bg-card));
    border: 1px solid var(--teal-dark);
    border-radius: 16px; padding: 3rem 2.5rem;
    margin-top: 3rem; text-align: center;
  }
  .dp-final-cta h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 1.9rem);
    font-weight: 700; color: var(--white);
    margin-bottom: 0.85rem; letter-spacing: -0.3px;
  }
  .dp-final-cta p {
    color: var(--white-muted); font-size: 1rem;
    max-width: 580px; margin: 0 auto 1.75rem;
    line-height: 1.65; font-weight: 300;
  }
  .dp-final-cta .cta-buttons {
    display: flex; gap: 1rem; justify-content: center;
    flex-wrap: wrap;
  }

  @media (max-width: 900px) {
    .dp-section { padding: 3rem 1.5rem; }
    .dp-compare,
    .dp-pricing-grid,
    .dp-formats { grid-template-columns: 1fr; }
    .dp-timeline {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .dp-timeline::before { display: none; }
    .dp-guarantee { flex-direction: column; text-align: center; }
  }
  
/* ═══════ Rate Strip — booking page reference ═══════ */
.rate-strip {
  max-width: 1100px;
  margin: 3.5rem auto 0;
  padding: 2.25rem 2rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--brown-warm);
  border-radius: 16px;
}

.rate-strip-header { text-align: center; margin-bottom: 2rem; }
.rate-strip-header h3 { font-size: 1.4rem; margin: 0.5rem 0 0.4rem; color: var(--white); }
.rate-strip-header p { color: var(--white-muted); font-size: 0.9rem; margin: 0; font-weight: 300; }

.rate-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.4fr;
  gap: 1.75rem;
  align-items: start;
}

.rate-strip-col {
  padding: 1.25rem 1.25rem 1.5rem;
  border: 1px solid var(--brown-warm);
  border-radius: 12px;
  background: rgba(0,0,0,0.15);
}

.rate-strip-eyebrow {
  color: var(--teal);
  font-size: 0.72rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.rate-strip-price-big {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.rate-strip-detail {
  color: var(--white-muted);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.5;
}

.rate-strip-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.rate-strip-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--brown-warm);
}
.rate-strip-list li:last-child { border-bottom: none; }

.rate-strip-list .rs-name {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
}
.rate-strip-list .rs-price {
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}
.rate-strip-list .rs-note {
  grid-column: 1 / -1;
  color: var(--white-dim);
  font-size: 0.75rem;
  font-weight: 300;
  margin-top: 0.15rem;
}

.rate-strip-link {
  display: inline-block;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.25rem;
}
.rate-strip-link:hover { text-decoration: underline; }

.rate-strip-footnote {
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  background: rgba(141, 212, 212, 0.06);
  border-left: 3px solid var(--teal);
  border-radius: 6px;
  color: var(--white-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  font-weight: 300;
}
.rate-strip-footnote strong { color: var(--white); font-weight: 600; }
.rate-strip-footnote em { color: var(--teal); font-style: normal; }

@media (max-width: 900px) {
  .rate-strip-grid { grid-template-columns: 1fr; }
  .rate-strip { padding: 1.75rem 1.25rem 1.5rem; }
}
