:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #3b82f6; /* Modern Blue */
    --secondary-text: #a1a1aa;
    --card-bg: #18181b;
    --font-main: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif; /* For classy touches */
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

/* Controls */
.controls {
    position: fixed;
    bottom: 30px;
    right: 40px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 20px;
}

button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-color);
}

.progress-container {
    width: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.progress-bar {
    height: 100%;
    background: var(--text-color);
    width: 0%;
    transition: width 0.3s ease;
}

/* Slides */
#slider {
    height: 100vh;
    width: 100vw;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 120px;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Typography & Layouts */
h1, h2, h3 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.brand {
    font-family: var(--font-display);
    font-size: 5rem;
    margin-bottom: 0.2em;
    background: linear-gradient(to right, #fff, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--secondary-text);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.statement {
    font-size: 3.5rem;
    line-height: 1.2;
    max-width: 900px;
}

.next-steps-text {
    font-size: 2.4rem;
    line-height: 1.5;
    color: var(--secondary-text);
    max-width: 900px;
    margin-top: 30px;
}

/* Specific adjustment for Slide 11 to separate the two sentences if needed, 
   but user asked for spacing between 2 text elements (Header and Text) or bigger text.
   Let's ensure the H2 has margin-bottom as well in general styles or specifically here.
*/
.content-center h2 {
    margin-bottom: 30px;
}

.highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.content-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.content-left {
    text-align: left;
    max-width: 900px;
}

.content-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.column h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.column ul {
    list-style: none;
}

.column li {
    margin-bottom: 15px;
    color: var(--secondary-text);
    line-height: 1.5;
    font-size: 0.95rem;
}

.column strong {
    color: var(--text-color);
}

.impact {
    margin-top: 20px;
    font-style: italic;
    color: var(--text-color);
    border-left: 2px solid var(--accent-color);
    padding-left: 15px;
}

.pre-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--secondary-text);
    margin-bottom: 10px;
}

.tagline {
    font-size: 2.5rem;
    margin-top: 20px;
    font-weight: 300;
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-block h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.text-block p {
    font-size: 1.2rem;
    color: var(--secondary-text);
    line-height: 1.6;
}

.demo-prompt {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.prompt-box {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    line-height: 1.6;
    color: #e2e8f0;
}

.prompt-icon {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.video-card {
    width: 800px;
    height: 450px;
    background: #111;
    background-image: url('thumbnail.png');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    margin-top: 0; /* Reset margin since spacing is handled by subtitle */
}

.video-card iframe {
    /* Removed unused iframe styles */
}

.video-card:hover {
    border-color: var(--accent-color);
    transform: scale(1.02);
}

.play-button {
    font-size: 5rem;
    color: white;
    margin: 0;
    transition: transform 0.3s ease;
}

.video-card:hover .play-button {
    transform: scale(1.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    width: 100%;
    max-width: 900px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--secondary-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    gap: 10px;
}

.step {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    flex: 1;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.arrow {
    color: var(--secondary-text);
    font-size: 1.2rem;
}

.big-stat {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    margin: 20px 0;
    font-family: var(--font-display);
}

.unit {
    font-size: 2rem;
    font-weight: 400;
    color: var(--secondary-text);
    font-family: var(--font-main);
}

.stat-sub {
    font-size: 1.2rem;
    color: var(--secondary-text);
    margin-bottom: 40px;
}

.logos {
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.logos p {
    color: var(--secondary-text);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.logo-list {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.company {
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.8;
}

.clean-list {
    list-style: none;
    margin-top: 40px;
}

.clean-list li {
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 2px solid var(--accent-color);
}

.clean-list strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.clean-list p {
    color: var(--secondary-text);
    font-size: 1.3rem;
    line-height: 1.5;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 400px)); /* Restrict max width */
    gap: 60px; /* Increased gap between cards */
    margin-top: 40px; /* Reduced from default spacing */
    justify-content: center; /* Center the grid */
}

.team-member {
    background: linear-gradient(180deg, #1a1c22 0%, #15171c 100%); /* Gradient background */
    padding: 30px 24px; /* Adjusted padding */
    border-radius: 16px; /* Slightly more rounded */
    border: 1px solid rgba(255,255,255,0.06); /* Subtle border */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2); /* Add depth */
}

.team-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px; /* Tightened spacing */
    border: 3px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35); /* Premium shadow */
}

.team-name {
    font-size: 28px; /* Adjusted size */
    font-weight: 700;
    margin-bottom: 6px; /* Tightened spacing */
    color: var(--text-color);
}

.team-role {
    font-size: 16px; /* Adjusted size */
    opacity: 0.7;
    color: var(--text-color);
    margin-bottom: 14px; /* Tightened spacing */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.team-companies {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color); /* #4F8CFF */
    margin-bottom: 16px; /* Tightened spacing */
}

.team-desc {
    font-size: 15px;
    opacity: 0.65;
    line-height: 1.5;
    color: var(--text-color);
    max-width: 320px; /* Ensure text doesn't get too wide inside card */
}

.action-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.1;
}

.action-subtitle {
    font-size: 22px;
    opacity: 0.7;
    text-align: center;
    max-width: 800px;
    margin-bottom: 48px;
    color: var(--text-color);
    line-height: 1.4;
}

/* Slide 3 Specific Styles */
.section-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-align: center;
    max-width: 800px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--secondary-text);
    margin-bottom: 30px;
    text-align: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    margin-bottom: 30px;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.card-content {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.card-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.card-highlight {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-color);
}

.card-desc {
    font-size: 0.8rem;
    color: var(--secondary-text);
    line-height: 1.3;
}

.card-text {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.card-list {
    list-style: none;
    text-align: left;
    width: 100%;
    padding-left: 5px;
}

.card-list li {
    font-size: 0.8rem;
    color: var(--secondary-text);
    margin-bottom: 5px;
    position: relative;
    padding-left: 12px;
}

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

.card-big-stat {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin: 5px 0;
}

.card-caption {
    font-size: 0.75rem;
    color: var(--secondary-text);
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    width: 100%;
}

.punchline {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-color);
    text-align: center;
    line-height: 1.4;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .slide {
        padding: 40px 60px;
        overflow-y: auto;
    }
    
    .brand { font-size: 3.5rem; }
    .statement { font-size: 2.5rem; }
    
    .content-columns, .content-split, .stats-grid, .team-grid, .cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-flow {
        flex-direction: column;
    }
    
    .arrow { transform: rotate(90deg); margin: 10px 0; }
}

/* New Slide 5 Styles */
.content-split-layout {
    display: grid;
    grid-template-columns: 55fr 45fr; /* 55/45 split */
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1400px; /* Ensure wide layout */
    margin: 0 auto;
}

.message-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.label-small {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.main-statement {
    display: block; /* Changed from flex column to block for natural flow */
    font-size: 56px; /* Reduced from 64px */
    font-weight: 600; /* Reduced from 700 */
    line-height: 1.1; /* Adjusted line height slightly */
    max-width: 560px;
}

/* Removed specific span styling since we're using natural flow now */
.main-statement span {
    /* Reset if needed, but we removed spans in HTML */
}

.prompt-column {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 0; /* Reset padding-top */
    justify-content: center; /* Center vertically */
}

.prompt-card {
    background: linear-gradient(180deg, #1A1B20 0%, #141519 100%);
    border-radius: 16px;
    padding: 40px; /* Increased padding */
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
    font-size: 1.1em; /* Slightly larger text base */
}

.prompt-header {
    font-size: 14px;
    color: var(--secondary-text);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    opacity: 0.7;
    letter-spacing: 0.08em;
}

.prompt-content {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem; /* Increased font size */
    line-height: 1.6;
    color: #e2e8f0;
}

.divider {
    width: 1px; /* Vertical divider if needed, but user asked for horizontal flow implied */
    height: 40px; /* Arrow space */
    background: transparent; /* Hidden but taking space */
    margin: 0 auto 24px auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Create the arrow */
.divider::after {
    content: "↓";
    color: var(--secondary-text);
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

.execution-indicators {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 0;
    z-index: 2;
}

.indicator-row {
    display: flex;
    justify-content: flex-start;
    font-family: var(--font-main);
    font-size: 1.1rem; /* Slightly larger */
    color: var(--secondary-text);
    border-bottom: none;
    padding-bottom: 0;
    align-items: center;
}

.indicator-row:last-child {
    border-bottom: none;
}

.system-name {
    font-weight: 600;
    color: var(--text-color);
    width: 120px;
    flex-shrink: 0; /* Prevent shrinking */
}

.status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #10b981; /* Success green */
}

.check {
    font-weight: bold;
}

.background-logos {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    opacity: 0.04; /* 4% opacity */
    pointer-events: none;
    overflow: hidden;
}

.bg-logo {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    transform: rotate(-15deg);
    margin: 20px;
}

/* Responsive adjustments for new layout */
@media (max-width: 1024px) {
    .content-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .main-statement span {
        font-size: 2.5rem;
    }
}

/* Slide 7 Comparison Styles */
.comparison-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.1;
}

.comparison-subtitle {
    font-size: 20px;
    opacity: 0.7;
    margin-bottom: 60px;
    text-align: center;
    color: var(--secondary-text);
    font-style: italic;
}

.comparison-grid {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 30px 60px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-header {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: var(--secondary-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trouve-header {
    color: var(--accent-color);
    font-weight: 800;
    font-size: 28px;
}

.competitor-header {
    color: var(--secondary-text);
    opacity: 0.5;
    font-size: 20px;
}

.grid-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--secondary-text);
    text-align: right;
    padding-right: 20px;
    font-weight: 600;
    opacity: 0.5;
}

.grid-cell {
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.trouve-cell {
    font-size: 64px;
    font-weight: 800;
    color: #fff;
    background: rgba(60,120,255,0.08);
    border: 1px solid rgba(60,120,255,0.2);
    box-shadow: 0 0 30px rgba(60,120,255,0.1);
    line-height: 1;
}

.competitor-cell {
    font-size: 32px; /* Smaller for competitor text to fit and de-emphasize */
    font-weight: 600;
    color: var(--secondary-text);
    opacity: 0.4;
    line-height: 1.2;
}

/* Responsive for comparison grid */
@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .grid-label {
        display: none; /* Hide labels on mobile/tablet if space is tight, or move them inside */
    }

    .trouve-cell {
        font-size: 48px;
    }
    
    .competitor-cell {
        font-size: 24px;
    }
}

/* Slide 7: Big Numbers Design */
.dramatic-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dramatic-subtitle {
    font-size: 24px;
    color: var(--secondary-text);
    margin-bottom: 80px;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.big-numbers-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1100px;
    margin-bottom: 80px;
    gap: 40px;
}

.big-number-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.big-number {
    font-size: 96px; /* Very big */
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 0 0 40px rgba(59, 130, 246, 0.3); /* Glow effect */
}

.big-label {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-color);
}

.dramatic-footer {
    font-size: 16px;
    color: var(--secondary-text);
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: auto;
}

.demo-button {
    background: rgba(60,120,255,0.08);
    border: 1px solid rgba(60,120,255,0.3);
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    display: inline-block;
}

.demo-button:hover {
    background: rgba(60,120,255,0.18);
    transform: scale(1.02);
}

/* Responsive for Big Numbers */
@media (max-width: 1024px) {
    .dramatic-title {
        font-size: 32px;
    }
    
    .big-numbers-container {
        flex-direction: column;
        gap: 50px;
        margin-bottom: 40px;
    }
    
    .big-number {
        font-size: 72px;
    }
    
    .big-label {
        font-size: 20px;
    }
}

/* Slide 8: Performance Comparison Styles */
.performance-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.1;
}

.performance-subtitle {
    font-size: 20px;
    opacity: 0.7;
    margin-bottom: 60px;
    text-align: center;
    color: var(--secondary-text);
}

.performance-comparison {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align top so boxes grow down */
    gap: 60px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.performance-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 500px;
}

.perf-box {
    width: 100%;
    padding: 28px;
    border-radius: 16px;
    height: 100%; /* Ensure equal height if using grid, but flex works too */
    display: flex;
    flex-direction: column;
}

.competitor-perf .perf-box {
    background: #14161a;
    border: 1px solid rgba(255,255,255,0.06);
    opacity: 0.7;
}

.trouve-perf .perf-box {
    background: rgba(60,120,255,0.08);
    border: 1px solid rgba(60,120,255,0.3);
}

.perf-header {
    margin-bottom: 24px;
    text-align: center;
}

.perf-header h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.perf-subtext {
    font-size: 14px;
    color: var(--secondary-text);
    opacity: 0.8;
}

.perf-list {
    list-style: none;
    text-align: left;
}

.perf-list li {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
    color: var(--text-color);
    position: relative;
    padding-left: 15px;
}

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

.competitor-perf .perf-list li {
    opacity: 0.9;
}

.trouve-perf .perf-list li::before {
    color: var(--accent-color);
}

.perf-outcome {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-top: 24px;
    text-align: center;
}

.perf-outcome.negative {
    color: #ff6b6b;
}

.perf-outcome.positive {
    color: #4f8cff;
}

.perf-divider {
    width: 1px;
    background: rgba(255,255,255,0.06);
    height: 300px;
    align-self: center;
}

/* Slide 11 Footnote */
.slide-footnote {
    position: absolute;
    bottom: 80px;
    left: 120px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 800px;
}

/* Slide 11 Hero Styles */
.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

.hero-main {
    font-size: 120px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    letter-spacing: -0.02em;
}

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

.hero-sub {
    font-size: 40px;
    font-weight: 400;
    color: var(--secondary-text);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 24px;
    color: #fff;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
    .performance-comparison {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .perf-divider {
        width: 100%;
        height: 1px;
    }
    
    .performance-title {
        font-size: 36px;
    }

    .slide-footnote {
        left: 60px; /* Match responsive padding */
        bottom: 40px;
        font-size: 0.9rem;
    }

    .hero-main {
        font-size: 80px;
    }
    
    .hero-sub {
        font-size: 30px;
    }
    
    .hero-desc {
        font-size: 20px;
    }
}

.next-steps-label {
    font-size: 18px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.next-steps-main {
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
    line-height: 1.1;
}

.next-steps-highlight {
    color: #4F8CFF;
}

.next-steps-support {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 28px;
    font-weight: 400;
}

.next-steps-divider {
    width: 520px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.06);
    margin: 28px auto 0 auto;
}

.contact-info {
    font-size: 2rem;
    margin-top: 20px;
    color: var(--secondary-text);
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.vision-label {
    font-size: 14px;
    letter-spacing: 0.2em;
    opacity: 0.6;
    color: var(--secondary-text);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.vision-statement {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    max-width: 900px;
    text-align: center;
    color: var(--text-color);
}

.vision-statement .highlight {
    color: var(--accent-color);
    display: inline; /* Ensure it flows correctly */
}