.elementor-8 .elementor-element.elementor-element-98f264a{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-8 .elementor-element.elementor-element-1ae7882{padding:0px 0px 0px 0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-1ae7882 *//* ============================================
   Jazz James — Digital CV Stylesheet
   Premium dark theme with gold accents
   ============================================ */

@font-face {
    font-family: 'Amsterdam';
    src: url('https://cv.jazzjconsulting.com/wp-content/uploads/2026/03/AmsterdamOne-eZ12l.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg: #050505;
    --surface: #0a0a0a;
    --surface-hover: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(212, 175, 55, 0.3);
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dim: rgba(212, 175, 55, 0.15);
    --gold-glow: rgba(212, 175, 55, 0.25);
    --text: #ededed;
    --text-muted: #9CA3AF;
    --text-dim: #6B7280;
    --white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-script: 'Amsterdam', cursive;
    --font-mono: 'JetBrains Mono', monospace;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---- Background ---- */
.cv-bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
    opacity: 0.5;
}

.cv-bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 10%, var(--gold-glow), transparent 40%),
        radial-gradient(circle at 80% 90%, rgba(212, 175, 55, 0.08), transparent 40%);
    filter: blur(80px);
    opacity: 0.6;
}

/* ---- Layout ---- */
.cv-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 24px 0;
}

/* ---- Navigation ---- */
.cv-nav {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 960px;
    padding: 12px 28px;
    box-sizing: border-box;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(0, 0, 0, 0.6));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-logo-link {
    display: flex;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s var(--ease);
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.nav-cta {
    background: linear-gradient(
        135deg,
        #AA8C2C 0%,
        var(--gold) 35%,
        var(--gold-light) 50%,
        var(--gold) 65%,
        #AA8C2C 100%
    );
    background-size: 200% 200%;
    color: #000;
    text-decoration: none;
    padding: 7px 15px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-family: var(--font-mono);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 2px 16px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255,255,255,0.25);
    animation: cvGoldShine 3s ease-in-out infinite;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

@keyframes cvGoldShine {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.55), inset 0 1px 0 rgba(255,255,255,0.3);
}

/* Hamburger & Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s var(--ease);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Centered content group — sits in true optical center */
.mobile-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform: translateY(-5vh);
}

/* Force nav-cta visible inside the overlay (overrides media query hide) */
.mobile-nav-overlay .nav-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #AA8C2C 0%,
        var(--gold) 40%,
        var(--gold-light) 55%,
        var(--gold) 70%,
        #AA8C2C 100%
    );
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.9rem;
    box-shadow: 0 2px 14px rgba(212, 175, 55, 0.45), inset 0 1px 0 rgba(255,255,255,0.3);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.close-menu:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 22px rgba(212, 175, 55, 0.65);
}

.mobile-menu-logo-cv {
    margin-bottom: 1.5rem;
}

.mobile-menu-logo-cv img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.35));
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 2.5rem;
}

.mobile-nav-links a {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.mobile-nav-links a:hover {
    color: var(--gold);
}

.mobile-nav-links .mobile-cta {
    margin-top: 20px;
    color: var(--gold);
    font-size: 1rem;
    border: 1px solid var(--gold);
    padding: 12px 30px;
    border-radius: 50px;
}

@media (max-width: 1024px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .cv-nav {
        padding: 10px 20px;
        justify-content: space-between;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }
}

section {
    position: relative;
    z-index: 1;
}

/* ---- Glass Panel ---- */
.glass-panel {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-xl);
    transition: border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.glass-panel:hover {
    border-color: var(--border-hover);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--gold-dim);
}

/* ---- Hero / Header ---- */
.cv-hero {
    padding: 80px 0 60px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: stretch;
    min-height: 85vh;
}

.cv-hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.cv-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-badge-inline {
    display: none;
    width: 60px;
    height: auto;
    object-fit: contain;
}

.cv-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--gold-dim);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    width: fit-content;
}

.cv-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.cv-name {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--white);
    letter-spacing: -2px;
    text-transform: uppercase;
}

.cv-name .script {
    font-family: var(--font-script);
    font-weight: 400;
    font-size: 4rem;
    text-transform: none;
    letter-spacing: 0;
    color: var(--gold);
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

.cv-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
}

.cv-tagline {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1.7;
    padding: 16px 20px;
    border-left: 3px solid var(--gold);
    background: rgba(212, 175, 55, 0.05);
    border-radius: 0 12px 12px 0;
}

.cv-contact-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.cv-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

.cv-contact-item:hover {
    color: var(--gold-light);
}

.cv-contact-item i {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Hero Photo */
.cv-hero-photo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.cv-hero-photo .photo-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--gold-dim);
    width: 100%;
    max-width: 450px;
    flex: 1;
}

.cv-hero-photo .photo-frame>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: contrast(1.05) saturate(0.95);
}

.cv-hero-photo .photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cv-hero-photo .hrd-badge-img {
    height: auto;
    width: 120px;
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
    flex-shrink: 0;
}

.cv-hero-photo .photo-overlay span {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

/* ---- Section Headers ---- */
.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2.5rem;
    padding-top: 60px;
}

.section-header h2 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white);
    white-space: nowrap;
}

.section-header .line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.section-header .tag {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---- Profile Section ---- */
.cv-profile {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cv-profile-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 900px;
}

.cv-profile-text strong {
    color: var(--gold);
    font-weight: 600;
}

/* ---- Expertise Grid ---- */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 60px;
}

.expertise-pill {
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.4s var(--ease);
}

.expertise-pill:hover {
    border-color: var(--border-hover);
    background: var(--surface-hover);
    transform: translateY(-3px);
}

.expertise-pill .icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gold-dim);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.expertise-pill .icon-box i {
    font-size: 1rem;
    color: var(--gold);
}

.expertise-pill span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}

.expertise-pill.highlight {
    border-color: rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), var(--surface));
}

.expertise-pill.highlight span {
    color: var(--gold);
    font-weight: 600;
}

/* ---- Training Pillars (Bento Grid) ---- */
.training-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

.pillar-card {
    padding: 40px;
    border-radius: var(--radius-xl);
    background: var(--surface);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease);
}

.pillar-card:hover {
    border-color: var(--border-hover);
}

.pillar-card .pillar-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 4rem;
    font-weight: 300;
    font-family: var(--font-mono);
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.pillar-card .pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gold-dim);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.pillar-card .pillar-icon i {
    font-size: 1.3rem;
    color: var(--gold);
}

.pillar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.pillar-card .pillar-sub {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 20px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pillar-card ul {
    list-style: none;
    padding: 0;
}

.pillar-card ul li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pillar-card ul li:last-child {
    border-bottom: none;
}

.pillar-card ul li .check {
    color: var(--gold);
    font-size: 0.75rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Gold Gradient Pillar Card */
.pillar-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 50%, #8B6914 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.25), 0 0 60px rgba(212, 175, 55, 0.1);
}

.pillar-gold:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 50px rgba(212, 175, 55, 0.35), 0 0 80px rgba(212, 175, 55, 0.15);
}

.pillar-gold .pillar-number {
    color: rgba(0, 0, 0, 0.08);
    font-size: 5rem;
}

.pillar-gold h3 {
    color: #0a0a0a;
    font-size: 1.6rem;
}

.pillar-gold .pillar-sub {
    color: rgba(0, 0, 0, 0.55);
}

.pillar-gold ul li {
    color: #1a1a1a;
    font-weight: 400;
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.pillar-gold ul li strong {
    color: #0a0a0a;
    font-weight: 700;
}

.pillar-gold ul li .check {
    color: #0a0a0a;
}

.pillar-gold .pillar-icon {
    background: rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.1);
}

.pillar-gold .pillar-icon i {
    color: #0a0a0a;
}

/* ---- Delivery Approach (Stat Cards) ---- */
.delivery-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 60px;
}

.stat-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s var(--ease);
}

.stat-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.stat-card .stat-number {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: -2px;
}

.stat-card .stat-number span {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 400;
}

.stat-card .stat-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-mono);
}

/* ---- Value Proposition ---- */
.value-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.value-card {
    padding: 50px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), var(--surface));
    border: 1px solid rgba(212, 175, 55, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 60%);
    pointer-events: none;
}

.value-card blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.value-card blockquote .highlight {
    color: var(--gold);
}

/* Value Split Layout (Quote + Bass Photo) */
.value-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.value-photo {
    display: flex;
    justify-content: center;
}

.value-photo .photo-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 30px var(--gold-dim);
    width: 100%;
}

.value-photo .photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) saturate(0.9);
}

/* ---- Video Section ---- */
.video-section {
    padding: 60px 0;
}

.video-container {
    display: block;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    position: relative;
    aspect-ratio: 16/9;
    text-decoration: none;
    transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.video-container:hover {
    border-color: var(--border-hover);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--gold-dim);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
    filter: brightness(0.85);
}

.video-container:hover .video-thumbnail {
    transform: scale(1.03);
    filter: brightness(1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold);
    font-size: 2rem;
    transition: all 0.4s var(--ease);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.play-button i {
    margin-left: 6px;
}

.video-container:hover .play-button {
    background: var(--gold);
    color: var(--bg);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-label {
    margin-top: 16px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
}

/* ---- Brand Statement ---- */
.brand-statement {
    padding: 80px 0;
    text-align: center;
}

.brand-statement h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.brand-statement h2 .gold {
    color: var(--gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.brand-statement p {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ---- Detailed Curriculum ---- */
.curriculum-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.curriculum-block {
    margin-bottom: 40px;
}

.curriculum-block h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.curriculum-block .module-tag {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    display: block;
}

.curriculum-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.curriculum-item {
    padding: 16px 20px;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.3s var(--ease);
}

.curriculum-item:hover {
    border-color: var(--border-hover);
}

.curriculum-item .num {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--gold);
    background: var(--gold-dim);
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.curriculum-item .item-content h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.curriculum-item .item-content p {
    font-size: 0.78rem;
    color: var(--text-dim);
    font-weight: 300;
    line-height: 1.5;
}

/* ---- AI Add-On Banner ---- */
.ai-addon-banner {
    padding: 40px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.06), var(--surface));
    border: 1px solid rgba(99, 102, 241, 0.15);
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    z-index: 1;
}

.us-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    border-radius: inherit;
    opacity: 0.8;
}

.ai-addon-header.content-top {
    position: relative;
    z-index: 2;
}

.curriculum-items {
    position: relative;
    z-index: 2;
}

.ai-addon-banner::before {
    content: 'FUTURE-READY';
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(99, 102, 241, 0.4);
    text-transform: uppercase;
}

.ai-addon-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ai-addon-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-addon-icon i {
    font-size: 1.4rem;
    color: #818CF8;
}

.ai-addon-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.ai-addon-sub {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 400;
}

/* ---- Delivery Method ---- */
.delivery-method {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 40px;
}

.method-chip {
    padding: 8px 16px;
    border-radius: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
}

.method-chip i {
    color: var(--gold);
    font-size: 0.7rem;
}

/* ---- Timeline Layout ---- */
.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

.timeline-rail {
    display: none;
}

@media (min-width: 768px) {
    .timeline-rail {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        position: absolute;
        left: 50%;
        top: 20px;
        bottom: 20px;
        width: 16px;
        transform: translateX(-50%);
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--border);
        border-radius: 50px;
        z-index: 0;
        box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .timeline-rail-line {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 4px;
        transform: translateX(-50%);
        background: var(--surface);
        border-radius: 4px;
        overflow: hidden;
        z-index: 0;
    }

    .timeline-glow {
        position: absolute;
        top: -150px;
        left: 0;
        width: 100%;
        height: 150px;
        background: linear-gradient(to bottom, transparent, var(--gold), transparent);
        box-shadow: 0 0 15px var(--gold-glow);
        animation: text-slide 4s linear infinite;
    }
}

@keyframes text-slide {
    0% {
        top: -150px;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.timeline-node {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    z-index: 10;
    transition: transform 0.3s var(--ease);
}

.timeline-node:hover {
    transform: scale(1.15);
}

.timeline-node:first-child {
    margin-top: -21px;
}

.timeline-node:last-child {
    margin-bottom: -21px;
}

.timeline-node .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
    border: 1px solid var(--gold-light);
}

.timeline-row {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .timeline-row {
        flex-direction: row;
        align-items: center;
        gap: 100px;
        margin-bottom: 80px;
    }

    .timeline-row.row-right {
        flex-direction: row-reverse;
    }
}

.timeline-row:last-child {
    margin-bottom: 0;
}

.timeline-text {
    flex: 1;
}

@media (min-width: 768px) {
    .timeline-row.row-left .timeline-text {
        text-align: right;
    }

    .timeline-row.row-right .timeline-text {
        text-align: left;
    }

    .desktop-hide {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .mobile-hide {
        display: none !important;
    }
}

.step-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--gold-dim);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.timeline-text h4 {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.timeline-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
}

.timeline-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: inset 0 1px 10px rgba(0, 0, 0, 0.8);
    transition: all 0.4s var(--ease);
}

.timeline-row:hover .timeline-card {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

@media (min-width: 768px) {
    .timeline-row.row-right .timeline-card {
        flex-direction: row-reverse;
    }
}

.timeline-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.timeline-icon i {
    font-size: 1.3rem;
    color: var(--gold);
}

.timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.timeline-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 8px;
    position: relative;
    padding-left: 16px;
}

@media (min-width: 768px) {
    .timeline-row.row-right .timeline-list li {
        padding-left: 0;
        padding-right: 16px;
        text-align: right;
    }
}

.timeline-list li:last-child {
    margin-bottom: 0;
}

.timeline-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
}

@media (min-width: 768px) {
    .timeline-row.row-right .timeline-list li::before {
        left: auto;
        right: 0;
    }
}

/* ---- Learning Outcomes ---- */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.outcome-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s var(--ease);
}

.outcome-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.outcome-card i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.outcome-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.5;
}

/* ---- Footer ---- */
.cv-footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cv-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.cv-footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cv-footer-brand .footer-logo {
    height: 50px;
    width: auto;
}

.cv-footer-brand .brand-text h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.cv-footer-brand .brand-text p {
    font-size: 0.75rem;
    color: var(--text-dim);
    font-weight: 300;
}

.cv-footer .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gold);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s var(--ease);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.cv-footer .cta-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.4);
}

.cv-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* ---- Animations ---- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.shimmer-text {
    background: linear-gradient(to right, var(--text-dim) 20%, var(--gold) 40%, var(--gold) 60%, var(--text-dim) 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .cv-hero {
        grid-template-columns: 1fr;
        gap: 0;
        padding-top: 0;
        min-height: auto;
        margin-top: -100px;
    }

    .cv-hero-photo {
        order: -1;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        position: relative;
        overflow: hidden;
    }

    /* Top gradient to make nav logo/hamburger stand out */
    .cv-hero-photo::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 160px;
        background: linear-gradient(to bottom, #050505, transparent);
        z-index: 2;
        pointer-events: none;
    }

    /* Bottom gradient fade to blend hero into page background */
    .cv-hero-photo::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 150px;
        background: linear-gradient(to top, #050505, transparent);
        z-index: 2;
        pointer-events: none;
    }

    .cv-hero-photo .photo-frame {
        max-width: 100vw;
        border-radius: 0;
        border: none;
        background: transparent;
        box-shadow: none;
        padding: 0;
        overflow: hidden;
        margin: 0 auto;
    }

    .cv-hero-photo .photo-frame::after {
        display: none;
    }

    .cv-hero-photo .photo-frame img,
    .cv-hero-photo .profile-img {
        border-radius: 0;
        width: 100%;
        height: 60vh;
        object-fit: cover;
        object-position: top center;
        transform: scale(1.3);
        margin-bottom: -20px;
    }

    .cv-hero-photo .photo-overlay {
        display: none !important;
    }

    .mobile-badge-inline {
        display: block !important;
    }

    .cv-hero-text {
        padding-top: 40px;
    }

    .cv-name {
        font-size: 3rem;
    }

    .cv-name .script {
        font-size: 2.5rem;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-bento {
        grid-template-columns: 1fr;
    }

    .curriculum-items {
        grid-template-columns: 1fr;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .value-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cv-name {
        font-size: 2.8rem;
    }

    .cv-name .script {
        font-size: 2.5rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .delivery-row {
        grid-template-columns: 1fr;
    }

    .cv-footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .cv-footer-brand {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .value-card {
        padding: 30px 20px;
    }

    .value-card blockquote {
        font-size: 1.2rem;
    }

    .brand-statement h2 {
        font-size: 2rem;
    }

    .pillar-card {
        padding: 28px;
    }
}

@media print {

    .cv-bg-grid,
    .cv-bg-mesh {
        display: none;
    }

    body {
        background: white;
        color: #111;
    }

    .glass-panel {
        background: #f9f9f9;
        border: 1px solid #ddd;
        backdrop-filter: none;
    }

    .cv-name {
        color: #111;
    }

    .cv-name .script {
        color: #B8860B;
    }

    .section-header h2 {
        color: #111;
    }

    .fade-up {
        opacity: 1;
        transform: none;
    }
}/* End custom CSS */