.speaker-hero {
    padding: var(--space-6) 0 var(--space-10); /* Tighter padding */
    background-color: var(--color-primary);
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    display: flex;
    align-items: center;
}

.speaker-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(74, 29, 142, 0.5) 0%, transparent 60%);
    pointer-events: none;
}

.speaker-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Equal split to give image more room */
    gap: var(--space-10);
    align-items: center;
    position: relative;
    z-index: 2;
}

.speaker-hero-content {
    text-align: left;
}

.speaker-hero-title {
    font-family: 'Outfit', var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.6rem); /* Further scaled down to keep 'AI EXPERT' inline */
    line-height: 1.1;
    margin-bottom: var(--space-2); /* Significantly reduced gap */
    font-weight: 800;
    color: #FFFFFF !important;
    text-transform: uppercase;
}

.hero-accent {
    color: var(--color-gold) !important;
}

.speaker-hero-subtitle {
    font-family: 'Outfit', var(--font-heading);
    font-size: var(--text-3xl);
    color: var(--color-gold) !important;
    margin-bottom: var(--space-4);
    font-weight: 700;
}

.speaker-tagline {
    font-family: var(--font-body);
    font-size: var(--text-2xl);
    color: #FFFFFF !important;
    font-weight: 500;
    opacity: 0.9;
}

.speaker-tagline strong {
    color: #FFFFFF !important;
    font-weight: 800;
    opacity: 1;
}

.hero-context {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    color: var(--color-off-white);
    opacity: 0.8;
    margin-top: var(--space-4);
    max-width: 600px;
}

/* Speaker Hero Visual & Interactive FX */
.speaker-hero-visual {
    position: relative;
    display: flex;
    flex-direction: column; /* Stack image and caption vertically */
    align-items: center;
    justify-content: center;
}

.speaker-hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px; /* Increased from 450px */
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.speaker-hero-image-wrapper:hover {
    transform: scale(1.02) rotateY(5deg);
}

.speaker-hero-img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: luminosity;
    transition: mix-blend-mode 0.5s ease;
}

.speaker-hero-image-wrapper:hover .speaker-hero-img {
    mix-blend-mode: normal;
}

/* Magnetic Shine Effect */
.hero-shine {
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.2) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(25deg);
    pointer-events: none;
    transition: left 0.8s ease-in-out;
}

.speaker-hero-image-wrapper:hover .hero-shine {
    left: 150%;
}

/* Pulse Glow behind image */
.speaker-hero-visual::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
    opacity: 0.15;
    z-index: -1;
    filter: blur(40px);
    animation: glow-pulse 6s infinite ease-in-out;
}

.hero-image-caption {
    margin-top: var(--space-6); /* Balanced spacing between image and text */
    color: #FFFFFF; /* Base color is white */
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    text-align: center;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.caption-accent {
    color: var(--color-gold);
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.2; }
}

/* --- Section 2: The Problem --- */
.speaker-problem-section {
    padding: var(--space-8) 0 var(--space-2); /* Minimal bottom padding to close gap */
    background-color: var(--color-off-white); /* Cream/White background */
    position: relative;
    overflow: hidden;
}

.section-title {
    font-family: 'Outfit', var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: var(--space-4); /* Reduced gap below title */
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold-light) 40%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Specific override for white sections to use the purple-gold gradient */
.speaker-usp-section .section-title,
.speaker-problem-section .section-title {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 40%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header {
    margin-bottom: var(--space-12);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-family: 'Outfit', var(--font-heading);
    font-size: var(--text-lg);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.5;
}

.speaker-outcomes-section .section-subtitle {
    color: var(--color-off-white);
}

.speaker-topics-section .section-subtitle {
    color: var(--color-off-white);
}

.speaker-outcomes-section .section-header {
    margin-bottom: var(--space-10);
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-4); /* Further reduced gap between title and cards */
}

.problem-card {
    background: var(--color-primary-dark); /* Purple background for cards */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-10) var(--space-8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center; /* Center all text */
    align-items: center; /* Center content horizontally */
}

.problem-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 11, 77, 0.2);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: rgba(253, 183, 26, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-bottom: var(--space-6);
    margin-left: auto; /* Center icon */
    margin-right: auto; /* Center icon */
}

.problem-icon svg {
    width: 30px;
    height: 30px;
}

.problem-card h3 {
    font-size: var(--text-2xl);
    color: var(--color-gold); /* Gold text for better impact on purple cards */
    margin-bottom: var(--space-4);
    font-family: 'Outfit', var(--font-heading);
    font-weight: 700;
}

.problem-card p {
    color: var(--color-off-white);
    opacity: 0.9;
    line-height: 1.6;
}

/* --- Transition Section --- */
.speaker-transition-section {
    background-color: var(--color-primary-dark);
    padding: 0 0 var(--space-8); /* Removed top padding entirely */
    position: relative;
    overflow: hidden;
}

.problem-transition {
    margin-top: 0;
}

.transition-text {
    font-family: 'Outfit', var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem); /* Scaled to match section title impact */
    font-weight: 800;
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.scroll-indicator {
    display: flex;
    justify-content: center;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-gold);
    border-radius: 20px;
    position: relative;
    opacity: 0.6;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--color-gold);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: mouse-scroll 1.6s infinite linear;
}

@keyframes mouse-scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
}

/* --- Section 3: USP --- */
.speaker-usp-section {
    padding: var(--space-12) 0 var(--space-12); /* Reduced bottom padding */
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.usp-layout {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr; /* More space for the 2x2 grid */
    gap: var(--space-12);
    align-items: flex-start;
}

.usp-narrative {
    margin-bottom: var(--space-10);
}

.usp-narrative p {
    font-size: var(--text-lg);
    color: var(--color-primary);
    line-height: 1.6;
    margin-bottom: var(--space-4);
    opacity: 0.9;
}

.usp-narrative .usp-result {
    font-family: 'Outfit', var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 300;
    font-style: italic;
    color: var(--color-primary);
    opacity: 1;
    margin-top: var(--space-8);
    border-left: 6px solid var(--color-gold);
    padding-left: var(--space-6);
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.result-highlight {
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 40%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal; /* Stand out from the italic sentence */
    display: inline-block;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    width: 100%;
}

.usp-item {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #1e0b4d 85%, rgba(253, 183, 26, 0.05) 100%);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(253, 183, 26, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    transition: all 0.3s ease;
}

.usp-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.usp-dot {
    width: 10px;
    height: 10px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(253, 183, 26, 0.4);
}

.usp-text h4 {
    font-size: var(--text-xl);
    color: var(--color-gold); /* Gold title for contrast */
    margin-bottom: var(--space-1);
    font-family: 'Outfit', var(--font-heading);
    font-weight: 700;
}

.usp-subtitle {
    display: block;
    font-size: var(--text-sm);
    color: var(--color-off-white);
    opacity: 0.9;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-3);
    font-family: 'Outfit', var(--font-heading);
}

.usp-text p {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.95); /* Bright white for readability */
}

.usp-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.perspective-box {
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    box-shadow: var(--shadow-2xl);
    position: relative;
    z-index: 5;
}

.pulsing-brain svg {
    width: 120px;
    height: 120px;
    animation: brain-pulse 4s infinite ease-in-out;
}

.perspective-label {
    font-family: 'Outfit', var(--font-heading);
    font-weight: 800;
    letter-spacing: 2px;
    margin-top: var(--space-4);
    font-size: var(--text-lg);
}

.geometric-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(30, 11, 77, 0.1);
    top: 10%;
    left: 10%;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: rgba(253, 183, 26, 0.1);
    bottom: 10%;
    right: 10%;
}

@keyframes brain-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 15px var(--color-gold)); }
}

/* --- Section 4: Audience Outcomes --- */
.speaker-outcomes-section {
    padding: var(--space-6) 0 var(--space-8); /* Significantly reduced bottom padding */
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-10);
}

.outcome-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    position: relative;
    border-bottom: 3px solid var(--color-gold);
    transition: transform 0.3s ease;
}

.outcome-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.outcome-number {
    font-family: 'Outfit', var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-gold);
    opacity: 0.8; /* Increased opacity for more pop */
    margin-bottom: var(--space-4);
}

.outcome-card h4 {
    font-size: var(--text-xl);
    color: var(--color-gold); /* Gold title for impact */
    margin-bottom: var(--space-4);
    font-family: 'Outfit', var(--font-heading);
    font-weight: 700;
}

.outcome-card p {
    color: var(--color-off-white);
    opacity: 0.8;
    font-size: var(--text-base);
    line-height: 1.6;
}

/* --- Section 5: Keynote Topics --- */
.speaker-topics-section {
    padding: var(--space-12) 0 var(--space-6); /* Further reduced bottom padding */
    background-color: var(--color-primary-dark);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-10);
    margin-top: var(--space-12);
}

.topic-card {
    background: var(--color-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    color: var(--color-white);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(30, 11, 77, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-5px);
}

.topic-content {
    padding: var(--space-8) var(--space-8); /* Reduced padding for tighter feel */
    flex: 1;
    display: flex;
    flex-direction: column;
}

.topic-category {
    font-family: 'Outfit', var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 800;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-4);
    display: block;
}

.topic-card h3 {
    font-size: var(--text-xl); /* Reduced from 2xl to prevent poor wrapping */
    color: var(--color-gold);
    margin-bottom: var(--space-4); /* Reduced margin */
    line-height: 1.2;
    font-family: 'Outfit', var(--font-heading);
    font-weight: 700;
}

.topic-card p {
    font-size: var(--text-base); /* Slightly smaller for density */
    line-height: 1.6;
    color: var(--color-off-white);
    opacity: 0.9;
    margin-bottom: var(--space-4); /* Reduced from space-8 */
}

.speaker-topics-section .topic-card .topic-content p.text-white,
.speaker-topics-section .topic-card .topic-content p.text-white strong {
    color: #ffffff !important;
    opacity: 1 !important;
    font-weight: 800 !important;
}

.topic-detail {
    margin-top: auto; /* Pushes the separator and takeaway to the bottom */
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-gold); /* Shiny gold separator line */
    font-size: var(--text-base);
}

.topic-detail span {
    color: var(--color-gold);
    font-weight: 700;
    margin-right: 5px;
}

.topics-cta {
    margin-top: var(--space-10); /* Reduced from space-16 to bring text closer to cards */
}

.topics-cta p {
    font-size: var(--text-lg);
    color: var(--color-gold); /* Custom topics text remains gold */
    margin-bottom: var(--space-8);
    font-weight: 500;
}

.cta-email-wrapper {
    margin-top: var(--space-6);
}

.cta-subtext {
    font-size: var(--text-xl) !important;
    color: var(--color-white) !important;
    margin-bottom: var(--space-2) !important;
    font-weight: 700 !important;
}

.cta-secondary {
    font-size: var(--text-lg) !important;
    color: var(--color-white) !important;
    opacity: 0.9;
}

.gold-link {
    color: var(--color-gold) !important;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    transition: all 0.3s ease;
}

.gold-link:hover {
    color: var(--color-white) !important;
    text-shadow: 0 0 10px rgba(253, 183, 26, 0.5);
}

/* Floating CTA Button Section */
.speaker-cta-floating {
    padding: var(--space-4) 0 var(--space-16);
    display: flex;
    justify-content: center;
    background-color: var(--color-white);
}

.btn-floating-gold {
    display: inline-flex;
    align-items: center;
    padding: var(--space-5) var(--space-12);
    background: linear-gradient(135deg, #FDB71A 0%, #E5A315 100%);
    color: var(--color-primary-dark) !important;
    font-family: 'Outfit', sans-serif;
    font-size: var(--text-xl);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(253, 183, 26, 0.35);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-floating-gold:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 25px 50px rgba(253, 183, 26, 0.5);
    background: linear-gradient(135deg, #ffc43d 0%, #FDB71A 100%);
}

.btn-floating-gold:active {
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .outcomes-grid, .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .outcomes-grid, .topics-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Speaker Profile Section --- */
.speaker-profile-section {
    padding: var(--space-10) 0 var(--space-20); /* Reduced top padding for better flow */
    background-color: var(--color-white);
    position: relative;
}

.speaker-card {
    background-color: var(--color-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

/* Top Header Area of Card */
.speaker-card-header {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    padding: var(--space-12) var(--space-10);
    position: relative;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--space-10);
    align-items: center;
}

.speaker-visual {
    position: relative;
}

.speaker-photo-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
}

.speaker-photo-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 3px solid var(--color-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse-ring 4s infinite linear;
}

.speaker-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--color-gold);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.speaker-header-content {
    color: var(--color-white);
}

.eyebrow-text {
    font-family: 'Outfit', var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--color-gold);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--space-2);
    display: block;
}

.main-title {
    font-family: 'Outfit', var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    margin-bottom: var(--space-4);
    font-weight: 800;
}

.speaker-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-off-white);
    margin-bottom: var(--space-6);
}

.speaker-meta {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--space-4);
}

.meta-item {
    font-family: 'Outfit', var(--font-heading);
    font-size: var(--text-lg);
    margin-bottom: var(--space-1);
    display: block;
}

.meta-name { color: var(--color-gold); font-weight: 700; }
.meta-role { color: var(--color-off-white); opacity: 0.8; }

/* Body Area of Card */
.speaker-card-body {
    padding: var(--space-12) var(--space-10);
    background-color: var(--color-primary-dark);
    color: var(--color-off-white);
}

.speaker-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-10) 0;
}

.speaker-bullets li {
    position: relative;
    padding-left: var(--space-8);
    margin-bottom: var(--space-5);
    font-size: var(--text-lg);
    line-height: 1.6;
}

.speaker-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 2rem;
    line-height: 1;
}

.speaker-bullets li strong {
    color: var(--color-gold-light);
}

.speaker-quotes {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--space-10);
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.speaker-quote-block {
    font-family: var(--font-body);
    font-size: var(--text-xl);
    line-height: 1.6;
    position: relative;
}

.speaker-quote-block p {
    margin-bottom: var(--space-4);
}

.quote-highlight {
    color: var(--color-gold);
    font-weight: 700;
}

.quote-attribution {
    font-family: 'Outfit', var(--font-heading);
    font-weight: 700;
    color: var(--color-white);
    text-align: right;
    display: block;
}

@keyframes pulse-ring {
    0% { transform: scale(0.95); opacity: 0.1; }
    50% { transform: scale(1.05); opacity: 0.3; }
    100% { transform: scale(0.95); opacity: 0.1; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .speaker-card-header {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .speaker-photo-wrapper {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .speaker-hero {
        padding: var(--space-12) 0 var(--space-10);
        text-align: center;
    }

    .speaker-hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .speaker-hero-content {
        text-align: center;
        order: 2; /* Text after image on mobile */
    }

    .speaker-hero-visual {
        order: 1; /* Image first on mobile */
    }

    .speaker-hero-title {
        font-size: 2rem;
    }

    .speaker-hero-subtitle {
        font-size: var(--text-xl);
    }

    .speaker-tagline {
        font-size: var(--text-lg);
    }

    .hero-context {
        margin-left: auto;
        margin-right: auto;
    }
    
    .speaker-card-header, .speaker-card-body {
        padding: var(--space-8) var(--space-5);
    }

    .speaker-bullets li {
        font-size: var(--text-base);
    }
    
    .speaker-quote-block {
        font-size: var(--text-lg);
    }

    /* USP Section Responsive */
    .usp-layout {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .usp-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .usp-narrative {
        margin-bottom: var(--space-4);
    }

    .usp-narrative .usp-result {
        font-size: var(--text-xl);
        margin-top: var(--space-6);
    }

    /* Outcomes Grid Responsive */
    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    /* Challenge Section Responsive */
    .problem-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    /* Topics Section Responsive */
    .topics-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .topic-card h3 {
        font-size: var(--text-xl);
    }
}
