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

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --text-light: #ffffff;
    --text-dark: #2d3748;
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.15);
    --grid-color: rgba(102, 126, 234, 0.2);
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: #f5f7fa;
    color: var(--text-dark);
    position: relative;
}

/* Grid Background - Earth Graticules */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.grid-background::before {
    display: none;
}

.grid-background::after {
    display: none;
}

/* Radar Animation */
.radar-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200vw;
    height: 200vh;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    display: none;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(102, 126, 234, 0.4);
    border-radius: 50%;
}

.radar-circle:nth-child(1) {
    width: 30vw;
    height: 30vw;
}

.radar-circle:nth-child(2) {
    width: 60vw;
    height: 60vw;
}

.radar-circle:nth-child(3) {
    width: 90vw;
    height: 90vw;
}

.radar-circle:nth-child(4) {
    width: 120vw;
    height: 120vw;
}

.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw;
    height: 120vw;
    transform-origin: 0% 0%;
    animation: radarSweep 6s linear infinite;
    margin-left: -60vw;
    margin-top: -60vw;
}

.radar-sweep::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(102, 126, 234, 0.3) 30deg,
        transparent 60deg
    );
    border-radius: 50%;
}

@keyframes radarSweep {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Moving Dots/Particles */
.particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: rgba(102, 126, 234, 0.7);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    box-shadow: 0 0 8px rgba(102, 126, 234, 0.6);
}

@keyframes float {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(100vw, -100vh);
        opacity: 0;
    }
}

@keyframes floatNorth {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(0, -100vh);
        opacity: 0;
    }
}

@keyframes floatSouth {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(0, 100vh);
        opacity: 0;
    }
}

@keyframes floatEast {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(100vw, 0);
        opacity: 0;
    }
}

@keyframes floatWest {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(-100vw, 0);
        opacity: 0;
    }
}

@keyframes floatNE {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(100vw, -100vh);
        opacity: 0;
    }
}

@keyframes floatNW {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(-100vw, -100vh);
        opacity: 0;
    }
}

@keyframes floatSE {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(100vw, 100vh);
        opacity: 0;
    }
}

@keyframes floatSW {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(-100vw, 100vh);
        opacity: 0;
    }
}

.slide {
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 40px 60px 40px;
    position: relative;
    opacity: 0;
    transform: translateY(100px) scale(0.95);
    transition: none;
    perspective: 1000px;
    overflow: visible;
    z-index: 2;
    box-sizing: border-box;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}


.slide.active,
.slide.scroll-past {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Keep all child elements visible after scrolling past */
.slide.active h1,
.slide.scroll-past h1,
.slide.active h2,
.slide.scroll-past h2,
.slide.active p,
.slide.scroll-past p,
.slide.active ul li,
.slide.scroll-past ul li,
.slide.active .logo,
.slide.scroll-past .logo,
.slide.active .subtitle,
.slide.scroll-past .subtitle,
.slide.active .tagline,
.slide.scroll-past .tagline,
.slide.active .feature-badges,
.slide.scroll-past .feature-badges,
.slide.active .mission-statement,
.slide.scroll-past .mission-statement,
.slide.active .problem-header,
.slide.scroll-past .problem-header,
.slide.active .problem-subtitle,
.slide.scroll-past .problem-subtitle,
.slide.active .problem-card,
.slide.scroll-past .problem-card,
.slide.active .problem-footer,
.slide.scroll-past .problem-footer,
.slide.active .risk-header,
.slide.scroll-past .risk-header,
.slide.active .risk-item,
.slide.scroll-past .risk-item,
.slide.active .risk-result,
.slide.scroll-past .risk-result,
.slide.active .solution-header,
.slide.scroll-past .solution-header,
.slide.active .solution-description,
.slide.scroll-past .solution-description,
.slide.active .solution-card,
.slide.scroll-past .solution-card,
.slide.active .solution-footer,
.slide.scroll-past .solution-footer,
.slide.active .why-header,
.slide.scroll-past .why-header,
.slide.active .why-grid,
.slide.scroll-past .why-grid,
.slide.active .why-card,
.slide.scroll-past .why-card,
.slide.active .why-footer,
.slide.scroll-past .why-footer,
.slide.active .testimonials-header,
.slide.scroll-past .testimonials-header,
.slide.active .testimonials-grid,
.slide.scroll-past .testimonials-grid,
.slide.active .testimonial-card,
.slide.scroll-past .testimonial-card,
.slide.active .testimonials-footer,
.slide.scroll-past .testimonials-footer {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

.slide:nth-child(1) {
    background: transparent;
    position: relative;
    color: white;
}

.slide:nth-child(2) {
    background: transparent;
    color: white;
}

.slide:nth-child(3) {
    background: transparent;
    color: white;
}

.slide:nth-child(4) {
    background: transparent;
    color: white;
}

.slide:nth-child(5) {
    background: transparent;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
    letter-spacing: -2px;
    color: #000000;
}

.slide.active h1 {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.5s;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
    color: #000000;
}

.slide.active h2 {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}

p {
    font-size: 1.6rem;
    font-weight: 400;
    text-align: center;
    max-width: 900px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    color: #000000;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.5);
}

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

.slide.active p:nth-of-type(1) {
    transition-delay: 0.9s;
}

.slide.active p:nth-of-type(2) {
    transition-delay: 1.1s;
}

.content {
    max-width: 1200px;
    width: 100%;
    padding: 10px 40px 30px 40px;
    z-index: 1;
    position: relative;
    box-sizing: border-box;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

ul {
    list-style: none;
    font-size: 1.7rem;
    margin-top: 30px;
    display: grid;
    gap: 20px;
}

ul li {
    margin: 0;
    padding: 25px 30px 25px 70px;
    position: relative;
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
    cursor: pointer;
    color: #000000;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.slide.active ul li {
    opacity: 1;
    transform: translateX(0);
}

.slide.active ul li:nth-child(1) {
    transition-delay: 0.5s;
}

.slide.active ul li:nth-child(2) {
    transition-delay: 0.7s;
}

.slide.active ul li:nth-child(3) {
    transition-delay: 0.9s;
}

.slide.active ul li:nth-child(4) {
    transition-delay: 1.1s;
}

ul li:hover {
    transform: translateX(15px) scale(1.03);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.5);
}

ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: rgba(0, 0, 0, 0.8);
}

.logo {
    max-width: 1000px;
    margin-bottom: 40px;
    margin-top: 30px;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 2s ease, transform 2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slide.active .logo {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.5s;
}

.logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
    color: #000000;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.5);
}

.slide.active .subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.5s;
}

.tagline {
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    max-width: 500px;
    text-align: center;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.5);
}

.slide.active .tagline {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.8s;
}

.feature-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.slide.active .feature-badges {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 2s;
}

.badge {
    background: rgba(0, 0, 0, 0.85);
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.badge:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.badge i {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.mission-statement {
    padding: 0;
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 800px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.slide.active .mission-statement {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 2.3s;
}

.mission-statement p {
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    width: 100%;
}

.mission-statement .ground-text {
    text-decoration: underline;
    text-decoration-color: #43e97b;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.mission-statement .air-text {
    text-decoration: overline;
    text-decoration-color: #f5576c;
    text-decoration-thickness: 2px;
}

.mission-statement .underline {
    background: #22c55e;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9em;
    animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.mission-statement .overline {
    background: #ef4444;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9em;
    animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-30px) rotate(-5deg);
    }
    60% {
        transform: scale(1.15) translateY(-8px) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0) rotate(0);
    }
}

.typewriter-text {
    min-height: 1.6em;
    opacity: 0;
    animation: fadeInText 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.typewriter-text .word {
    display: inline-block;
}

.typewriter-text .word:not(:last-child)::after {
    content: ' ';
    white-space: pre;
}

.app-store-section {
    margin-top: 35px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInText 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 1.5s;
    text-align: center;
}

.app-store-section {
    margin-top: 10px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInText 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 1.5s;
    text-align: center;
}

.app-store-section {
    margin-top: -100px;
    margin-bottom: 0px;
}

.app-store-badge {
    height: 105px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.app-store-badge:hover {
    transform: translateY(-6px);
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
}

@keyframes fadeInWord {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.mission-statement i {
    display: none;
}

/* Problem Slide Styling */
.slide-problem {
    padding: 50px 0 !important;
    overflow-y: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slide-problem .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.problem-header {
    text-align: center;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(-40px);
    transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.problem-header::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 23, 68, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
}

.problem-header::after {
    content: '';
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff1744, #ff6b00, transparent);
    border-radius: 2px;
    opacity: 0.6;
}

.slide.active .problem-header {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.warning-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.15) 0%, rgba(255, 107, 0, 0.1) 100%);
    border: 2px solid rgba(255, 23, 68, 0.25);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    font-size: 3.5rem;
    background: linear-gradient(135deg, #ff1744, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float-symbol 3s ease-in-out infinite;
}

@keyframes float-symbol {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.problem-title {
    font-size: 4.5rem;
    font-weight: 950;
    margin: 25px 0 0 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #ff1744 50%, #ff6b00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2.5px;
    word-spacing: 0.1em;
    line-height: 1.1;
}

.problem-subtitle {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.55);
    font-weight: 700;
    margin-top: 20px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: 0.2s;
}

.slide.active .problem-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.problem-grid {
    display: flex;
    flex-direction: row;
    gap: 0;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    align-items: stretch;
    justify-content: center;
    height: auto;
    min-height: 450px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.15);
}

.problem-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 249, 249, 0.98) 100%);
    border-right: 1px solid rgba(255, 23, 68, 0.15);
    border-radius: 0;
    padding: 0;
    backdrop-filter: blur(15px);
    box-shadow: inset 2px 0 10px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: calc(100% / 6);
    flex: 1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.problem-card:last-child {
    border-right: none;
}

.problem-card:hover:not(.revealed) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 245, 247, 1) 100%);
    box-shadow: inset 2px 0 20px rgba(255, 23, 68, 0.08);
    transform: scaleX(1.05);
}

/* Vertical Title */
.card-title-vertical {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    white-space: nowrap;
    pointer-events: none;
    z-index: 3;
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform-origin: center;
}

.card-title-vertical h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2a2a2a;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Card Number - Vertical */
.problem-card .card-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(255, 23, 68, 0.12);
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
}

/* Hide content by default */
.problem-card .card-content {
    opacity: 0;
    visibility: hidden;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0s linear 0s, opacity 0.6s ease 0.65s, visibility 0s linear 0s, white-space 0s linear 0.65s;
    padding: 0;
    pointer-events: none;
}

.problem-card .card-content h3,
.problem-card .card-content p,
.problem-card .card-content .card-details {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.problem-card .card-title-vertical {
    opacity: 1;
    transition: opacity 0.4s ease;
}

/* Revealed state - expand and show content */
.problem-card.revealed {
    flex: 3;
    width: auto;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border-right: 1px solid rgba(255, 23, 68, 0.3);
    box-shadow: 0 0 60px rgba(255, 23, 68, 0.2), inset 0 0 40px rgba(255, 23, 68, 0.03);
    padding: 40px 45px;
    z-index: 10;
}

.problem-card.revealed .card-content {
    opacity: 1;
    visibility: visible;
    max-width: 100%;
    overflow: visible;
    white-space: normal;
    padding-right: 10px;
    pointer-events: auto;
    transition: max-width 0s linear 0.65s, opacity 0.6s ease 0.75s, visibility 0s linear 0.65s, white-space 0s linear 0.65s;
}

.problem-card.revealed .card-content h3 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.75s;
}

.problem-card.revealed .card-content > p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

.problem-card.revealed .card-content .card-details {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.05s;
}

.problem-card.revealed .card-title-vertical {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg) scale(0.8);
}

.problem-card.revealed .card-number {
    top: 20px;
    right: 25px;
    left: auto;
    transform: none;
    font-size: 3.5rem;
    color: rgba(255, 23, 68, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

/* Active state - highlight current card */
.problem-card.active {
    border-right: 1px solid rgba(255, 23, 68, 0.5);
    box-shadow: 0 0 80px rgba(255, 23, 68, 0.3), inset 0 0 50px rgba(255, 23, 68, 0.05);
    background: linear-gradient(135deg, #ffffff 0%, #fff8f9 100%);
}

.problem-card.revealed .card-details ul li {
    opacity: 1;
    transform: translateX(0);
}

.problem-card.revealed .card-details ul li:nth-child(1) {
    transition-delay: 1.2s;
}

.problem-card.revealed .card-details ul li:nth-child(2) {
    transition-delay: 1.35s;
}

.problem-card.revealed .card-details ul li:nth-child(3) {
    transition-delay: 1.5s;
}

/* Highlight spans styling */
.highlight-red {
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.15) 0%, rgba(255, 23, 68, 0.25) 100%);
    color: #c81333;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 23, 68, 0.3);
}

.highlight-green {
    background: #22c55e;
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 700;
    display: inline-block;
}

.highlight-yellow {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(251, 191, 36, 0.25) 100%);
    color: #a16207;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 700;
    border-bottom: 2px solid rgba(251, 191, 36, 0.3);
}

.highlight-blue {
    background: #3b82f6;
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 700;
    display: inline-block;
}

.highlight-orange {
    background: #f97316;
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 700;
    display: inline-block;
}

.highlight-purple {
    background: #a855f7;
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 700;
    display: inline-block;
}

/* Toggle System Styles */
.problem-card.collapsed .card-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: all 0.4s ease;
}

.problem-card.expanded .card-content {
    max-height: 500px;
    opacity: 1;
    margin-top: 20px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.problem-card.expanded {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 23, 68, 0.5);
    box-shadow: 0 20px 60px rgba(255, 23, 68, 0.2);
    transform: scale(1.02);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    user-select: none;
}

.card-header h3 {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.toggle-icon {
    font-size: 1.2rem;
    color: #ff1744;
    transition: transform 0.3s ease;
}

.toggle-icon.rotated {
    transform: rotate(180deg);
}

.card-content > p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.card-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid rgba(255, 23, 68, 0.1);
}

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

.card-details ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.card-details ul li i {
    color: #ff1744;
    flex-shrink: 0;
}

/* Next Button on Right Side */
.next-btn-side {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    z-index: 1000;
    opacity: 0;
}

.slide-problem.active ~ .next-btn-side,
.slide.active .next-btn-side {
    opacity: 1;
}

.next-btn-side:hover {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

.next-btn-side:active {
    transform: translateY(-50%) scale(1.05);
}

.next-btn-side i {
    margin: 0;
}

.problem-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 100% -10%, rgba(255, 23, 68, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff1744, #ff6b00, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.slide.active .problem-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.slide.active .card-1 {
    transition-delay: 0.5s;
}

.slide.active .card-2 {
    transition-delay: 0.6s;
}

.slide.active .card-3 {
    transition-delay: 0.7s;
}

.slide.active .card-4 {
    transition-delay: 0.8s;
}

.slide.active .card-6 {
    transition-delay: 1s;
}

/* Remove hover effect for single card view */
.problem-card:hover {
    box-shadow: 0 25px 70px rgba(255, 23, 68, 0.25);
}

.card-icon {
    display: none;
}

.card-content {
    position: relative;
    z-index: 2;
    padding-right: 15px;
}

.card-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.2;
    background: linear-gradient(135deg, #1a1a2e 0%, #ff1744 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-content > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 25px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    padding: 18px 22px;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.05) 0%, rgba(255, 107, 0, 0.05) 100%);
    border-left: 4px solid #ff1744;
    border-radius: 0 12px 12px 0;
    position: relative;
    box-shadow: 0 2px 10px rgba(255, 23, 68, 0.08);
}

.card-content > p::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 2rem;
    color: rgba(255, 23, 68, 0.1);
    z-index: 0;
}

.card-details {
    margin-top: 25px;
    padding: 22px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.03) 0%, rgba(255, 23, 68, 0.03) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 23, 68, 0.1);
    position: relative;
    overflow: hidden;
}

.card-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ff1744 0%, #ff6b00 100%);
}

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

.card-details ul li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0;
    transform: translateX(-15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    position: relative;
}

.card-details ul li:last-child {
    margin-bottom: 0;
}

.card-details ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ff1744 0%, transparent 100%);
    border-radius: 8px 0 0 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-details ul li:hover::before {
    opacity: 1;
}

.card-details ul li i {
    color: #ff1744;
    flex-shrink: 0;
    font-size: 0.9rem;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.1) 0%, rgba(255, 107, 0, 0.1) 100%);
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px;
    line-height: 1;
    text-align: center;
}

.card-details ul li i::before {
    display: block;
    width: 100%;
    text-align: center;
}

/* Remove duplicate card-content p styles - using the ones defined above */

.highlight-red {
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.15) 0%, rgba(255, 23, 68, 0.25) 100%);
    color: #c81333;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 23, 68, 0.4);
    display: inline-block;
    transition: all 0.3s ease;
}

.problem-card:hover .highlight-red {
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.25) 0%, rgba(255, 23, 68, 0.35) 100%);
    transform: translateY(-1px);
}

.highlight-green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.25) 100%);
    color: #15803d;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    border-bottom: 2px solid rgba(34, 197, 94, 0.4);
    display: inline-block;
    transition: all 0.3s ease;
}

.problem-card:hover .highlight-green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25) 0%, rgba(34, 197, 94, 0.35) 100%);
    transform: translateY(-1px);
}

.highlight-yellow {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(251, 191, 36, 0.25) 100%);
    color: #a16207;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    border-bottom: 2px solid rgba(251, 191, 36, 0.4);
    display: inline-block;
    transition: all 0.3s ease;
}

.problem-card:hover .highlight-yellow {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.25) 0%, rgba(251, 191, 36, 0.35) 100%);
    transform: translateY(-1px);
}

.highlight-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.25) 100%);
    color: #1e40af;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    border-bottom: 2px solid rgba(59, 130, 246, 0.4);
    display: inline-block;
    transition: all 0.3s ease;
}

.problem-card:hover .highlight-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.35) 100%);
    transform: translateY(-1px);
}

.highlight-orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(249, 115, 22, 0.25) 100%);
    color: #c2410c;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    border-bottom: 2px solid rgba(249, 115, 22, 0.4);
    display: inline-block;
    transition: all 0.3s ease;
}

.problem-card:hover .highlight-orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.25) 0%, rgba(249, 115, 22, 0.35) 100%);
    transform: translateY(-1px);
}

.highlight-purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(168, 85, 247, 0.25) 100%);
    color: #7e22ce;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    border-bottom: 2px solid rgba(168, 85, 247, 0.4);
    display: inline-block;
    transition: all 0.3s ease;
}

.problem-card:hover .highlight-purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25) 0%, rgba(168, 85, 247, 0.35) 100%);
    transform: translateY(-1px);
}

.problem-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: 0.6s;
}

.slide.active .problem-footer {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.2s;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 100% -10%, rgba(255, 23, 68, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.stat-box:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: rgba(255, 23, 68, 0.1);
    box-shadow: 0 30px 60px rgba(255, 23, 68, 0.25), inset 0 1px 0 rgba(255, 255, 255, 1);
    background: linear-gradient(135deg, #ffffff 0%, #fff8f8 100%);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 950;
    background: linear-gradient(135deg, #ff1744, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 750;
    position: relative;
    z-index: 2;
}

/* Cessna Airplane Animation */
.cessna-plane {
    position: fixed;
    bottom: 18px;
    left: 80px;
    width: 360px;
    height: auto;
    z-index: 0;
    transition: none;
    pointer-events: none;
    opacity: 0.65;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 60px;
    border: 2px solid rgba(26, 26, 46, 0.55);
    border-radius: 25px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10px;
}

.scroll-indicator::before {
    content: '';
    width: 6px;
    height: 10px;
    background: rgba(26, 26, 46, 0.9);
    border-radius: 3px;
    animation: scroll 2s infinite;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 6px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #4facfe, #43e97b);
    width: 0%;
    z-index: 1000;
    transition: width 0.3s ease;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.5);
}

.slide-number {
    position: fixed;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    z-index: 999;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.slide-number:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.navigation {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-dot:hover {
    background: rgba(102, 126, 234, 0.6);
    transform: scale(1.3);
}

.nav-dot.active {
    background: var(--primary-color);
    transform: scale(1.5);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.6);
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 20px 0;
    transition: all 0.5s ease;
    cursor: pointer;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    opacity: 0;
    transform: scale(0);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slide.active .feature-icon {
    opacity: 1;
    transform: scale(1);
}

.slide.active .feature-icon:nth-of-type(1) {
    transition-delay: 0.6s;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    h2 {
        font-size: 2.2rem;
    }

    p, ul {
        font-size: 1.3rem;
    }

    .slide {
        padding: 60px 25px;
    }

    .navigation {
        display: none;
    }

    .slide-number {
        top: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    ul li {
        padding: 20px 20px 20px 60px;
        font-size: 1.2rem;
    }
    
    .cessna-plane {
        width: 120px;
        bottom: 10px;
    }
}

/* Why This Is Risky Slide */
.risk-header {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slide.active .risk-header {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.risk-title {
    font-size: 4rem;
    font-weight: 950;
    background: linear-gradient(135deg, #1a1a2e 0%, #ff1744 50%, #ff6b00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    margin: 0;
}

/* Risk Grid - Flip Card Layout */
.risk-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 280px));
    gap: 25px;
    max-width: 1200px;
    width: 100%;
    margin: 40px auto;
    padding: 0 20px;
    justify-content: center;
    box-sizing: border-box;
}

.risk-flip-card {
    background: transparent;
    perspective: 1000px;
    height: 420px;
    min-width: 250px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    position: relative;
    z-index: 1;
}

.risk-flip-card.flipped {
    z-index: 10;
}

.slide.active .risk-flip-card:nth-child(1) { animation-delay: 0.5s; }
.slide.active .risk-flip-card:nth-child(2) { animation-delay: 0.65s; }
.slide.active .risk-flip-card:nth-child(3) { animation-delay: 0.8s; }
.slide.active .risk-flip-card:nth-child(4) { animation-delay: 0.95s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.risk-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    transform-origin: center center;
}

.risk-flip-card.flipped .risk-flip-inner {
    transform: rotateY(180deg);
}

.risk-flip-front,
.risk-flip-back {
    position: absolute;
    width: 100%;
    height: auto;
    min-height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 20px 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    top: 0;
    left: 0;
    overflow: visible;
}

.risk-flip-front {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(255, 23, 68, 0.2);
    position: absolute;
    z-index: 2;
    transform: rotateY(0deg);
    justify-content: center;
}

.risk-flip-back {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eef5 100%);
    transform: rotateY(180deg);
    color: #1a1a2e;
    justify-content: flex-start;
    text-align: left;
    z-index: 1;
    border: 2px solid rgba(255, 23, 68, 0.3);
    padding: 16px 14px;
    padding-right: 12px;
}

.risk-flip-front::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 23, 68, 0.08) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.risk-icon-large {
    font-size: 4.5rem;
    color: #ff1744;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.risk-flip-card:hover .risk-icon-large {
    transform: scale(1.15) rotate(-5deg);
}

.risk-flip-front h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 30px;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.risk-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.08) 0%, rgba(255, 107, 0, 0.08) 100%);
    border-radius: 12px;
    width: 100%;
    border: 2px solid rgba(255, 23, 68, 0.15);
}

.stat-big {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ff1744;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(255, 23, 68, 0.2);
}

.stat-small {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tap-hint {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: auto;
    font-style: italic;
    font-weight: 500;
}

.flip-back-header {
    width: 100%;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 23, 68, 0.4);
    text-align: left;
}

.flip-back-header h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.risk-description {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #475569;
    margin-bottom: 12px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    text-align: left;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.risk-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.risk-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    font-size: 0.8rem;
    color: #1e293b;
    line-height: 1.4;
    font-weight: 500;
    padding-left: 20px;
    position: relative;
    padding-right: 2px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.risk-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-size: 0.85rem;
    line-height: 1;
    font-weight: 700;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Responsive adjustments */
@media (max-width: 1200px) {
    .risk-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.risk-item {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    border: 2px solid rgba(255, 23, 68, 0.2);
    border-radius: 20px;
    padding: 22px 18px;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    min-height: 320px;
}

.slide.active .risk-item {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.risk-item::before {
    content: '';
    position: absolute;
    display: none;
}

.risk-item:hover {
    border-color: rgba(255, 23, 68, 0.5);
    box-shadow: 0 8px 30px rgba(255, 23, 68, 0.15);
    transform: translateY(-8px);
}

.slide.active .risk-item:nth-child(1) { transition-delay: 0.5s; }
.slide.active .risk-item:nth-child(2) { transition-delay: 0.6s; }
.slide.active .risk-item:nth-child(3) { transition-delay: 0.7s; }
.slide.active .risk-item:nth-child(4) { transition-delay: 0.8s; }

.risk-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.risk-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(255, 23, 68, 0.15));
    transition: all 0.4s ease;
}

.risk-item:hover .risk-icon svg {
    filter: drop-shadow(0 8px 20px rgba(255, 23, 68, 0.3));
    transform: scale(1.1) rotate(-5deg);
}

.risk-bullet {
    font-size: 1.6rem;
    color: white;
    font-weight: 900;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff1744 0%, #ff6b00 100%);
    border: none;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 20px rgba(255, 23, 68, 0.3);
}

.risk-bullet::after {
    display: none;
}

.risk-item:hover .risk-bullet {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 30px rgba(255, 23, 68, 0.4);
}

.risk-text {
    flex: 1;
    line-height: 1.4;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.risk-text p {
    font-size: 0.85rem;
    color: #333;
    margin: 0;
}

.risk-text::before {
    display: none;
}

.risk-item:hover .risk-text {
    transform: none;
}

.risk-highlight {
    color: #ff1744;
    font-weight: 850;
    padding: 0;
    background: transparent;
    border: none;
    border-bottom: 2.5px solid #ff1744;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline;
    margin: 0;
}

.risk-item:hover .risk-highlight {
    background: transparent;
    color: #ff6b00;
    border-bottom-color: #ff6b00;
}

.risk-result {
    max-width: 950px;
    margin: 26px auto 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    text-align: center;
    opacity: 0;
    transform: translateY(18px);
    transition: all 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: visible;
    box-shadow: none;
}

.risk-result::before {
    display: none;
}

.risk-result::after {
    display: none;
}

.slide.active .risk-result {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}

.risk-result:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.result-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(30, 30, 30, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    position: relative;
    z-index: 2;
}

.result-text {
    font-size: 1.8rem;
    font-weight: 350;
    color: rgba(20, 20, 20, 0.9);
    margin: 10px 0 0 0;
    letter-spacing: -0.6px;
    position: relative;
    z-index: 2;
    text-shadow: none;
    transform: scale(0.6);
    opacity: 0.35;
    transform-origin: center;
}

/* ===== Solution Slide Styles ===== */
.solution-header {
    text-align: center;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide.active .solution-header {
    opacity: 1;
    transform: translateY(0);
}

.solution-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.solution-icon i {
    font-size: 2rem;
    color: white;
}

.solution-title {
    font-size: 4.5rem;
    font-weight: 950;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #1a1a2e 0%, #667eea 50%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2.5px;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    display: block;
    width: 100%;
}

.solution-subtitle {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.55);
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    text-align: center;
    display: block;
    width: 100%;
    margin: 0 auto;
}

.solution-description {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: 0.2s;
}

.slide.active .solution-description {
    opacity: 1;
    transform: translateY(0);
}

.solution-description p {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.solution-container {
    display: flex;
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Reverse layout for alternating slides */
.solution-container.solution-reverse {
    flex-direction: row-reverse;
}

.solution-left {
    flex: 0 0 35%;
    max-width: 350px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.solution-reverse .solution-left {
    transform: translateX(50px);
}

.slide.active .solution-left {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}

.screenshot-slider {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

/* Single Screenshot Display */
.screenshot-single {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.screenshot-single img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.screenshot-track {
    display: flex;
    transition: transform 0.5s ease;
}

.screenshot-item {
    flex: 0 0 100%;
    opacity: 1;
    background: transparent;
}

.screenshot-item img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.slider-dots {
    position: relative;
    margin-top: 20px;
    left: 0;
    transform: none;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 10;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.slider-dots .dot.active {
    background: white;
    transform: scale(1.2);
    border-color: white;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.solution-right {
    flex: 1;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slide.active .solution-right {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.5s;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.solution-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 0;
    border: none;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.solution-card:hover::before {
    opacity: 1;
}

.feature-1.solution-card::before {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.15) 0%, rgba(0, 242, 254, 0.15) 100%);
}

.feature-2.solution-card::before {
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.15) 0%, rgba(56, 249, 215, 0.15) 100%);
}

.feature-3.solution-card::before {
    background: linear-gradient(135deg, rgba(250, 112, 154, 0.15) 0%, rgba(254, 225, 64, 0.15) 100%);
}

.feature-4.solution-card::before {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
}

.slide.active .solution-card {
    opacity: 1;
    transform: translateY(0);
}

.slide.active .solution-card.feature-1 { transition-delay: 0.6s; }
.slide.active .solution-card.feature-2 { transition-delay: 0.7s; }
.slide.active .solution-card.feature-3 { transition-delay: 0.8s; }
.slide.active .solution-card.feature-4 { transition-delay: 0.9s; }

.solution-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.feature-image {
    width: 100%;
    height: 100px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.feature-1 .feature-image {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.15) 0%, rgba(0, 242, 254, 0.15) 100%);
}

.feature-2 .feature-image {
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.15) 0%, rgba(56, 249, 215, 0.15) 100%);
}

.feature-3 .feature-image {
    background: linear-gradient(135deg, rgba(250, 112, 154, 0.15) 0%, rgba(254, 225, 64, 0.15) 100%);
}

.feature-4 .feature-image {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
}

.feature-image img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.solution-card:hover .feature-image img {
    transform: scale(1.2) rotate(5deg);
}

.feature-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    z-index: 2;
}

.feature-1 .feature-badge {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.feature-2 .feature-badge {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.feature-3 .feature-badge {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.feature-4 .feature-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.feature-content {
    flex: 1;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.feature-content h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    text-shadow: none;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-content h3::before {
    content: '';
    width: 4px;
    height: 20px;
    border-radius: 2px;
}

.feature-1 .feature-content h3::before {
    background: linear-gradient(to bottom, #4facfe, #00f2fe);
}

.feature-2 .feature-content h3::before {
    background: linear-gradient(to bottom, #43e97b, #38f9d7);
}

.feature-3 .feature-content h3::before {
    background: linear-gradient(to bottom, #fa709a, #fee140);
}

.feature-4 .feature-content h3::before {
    background: linear-gradient(to bottom, #667eea, #764ba2);
}

.feature-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
    text-shadow: none;
    font-weight: 500;
    padding-left: 12px;
}

.solution-footer {
    text-align: center;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: 0.9s;
    width: 100%;
}

.slide.active .solution-footer {
    opacity: 1;
    transform: translateY(0);
}

.solution-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    gap: 10px;
}

.quote-mark {
    font-size: 4rem;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.3;
}

.quote-open {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    align-self: flex-start;
    margin-top: -10px;
}

.quote-close {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    align-self: flex-end;
    margin-bottom: -10px;
}

.tagline-animated {
    font-size: 4rem;
    font-weight: 500;
    color: #1a1a2e;
    margin: 0;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    display: flex;
    align-items: center;
}

.tagline-text {
    display: inline;
}

.tagline-cursor {
    display: none;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.solution-tagline i {
    font-size: 1.2rem;
    color: #667eea;
}

.solution-tagline p {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    letter-spacing: -0.3px;
}

/* Responsive adjustments for solution slide */
@media (max-width: 768px) {
    .solution-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .solution-left,
    .solution-right {
        flex: 1;
        width: 100%;
    }
    
    .solution-title {
        font-size: 2.5rem;
    }
}

/* ==========================================
   SLIDES 4-13: MERGED FROM NEW-SLIDES.CSS
   ========================================== */

/* ==========================================
   SLIDE 4: HOW IT WORKS - WORKFLOW
   ========================================== */
.slide-workflow .workflow-header {
    text-align: center;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(-30px);
    width: 100%;
}

.slide-workflow.active .workflow-header {
    animation: fadeInUp 0.8s ease forwards;
}

.workflow-title {
    font-size: 4.5rem;
    font-weight: 950;
    background: linear-gradient(135deg, #1a1a2e 0%, #667eea 50%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -2.5px;
    text-align: center;
    display: block;
    width: 100%;
}

.workflow-subtitle {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.55);
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
    display: block;
    width: 100%;
}

.workflow-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.workflow-step {
    flex: 1;
    max-width: 240px;
    background: #ffffff;
    border-radius: 24px;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.workflow-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.workflow-step:hover::before {
    opacity: 1;
}

.step-image {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.workflow-step.step-1 .step-image { background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%); }
.workflow-step.step-2 .step-image { background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%); }
.workflow-step.step-3 .step-image { background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%); }
.workflow-step.step-4 .step-image { background: linear-gradient(135deg, #fff3e0 0%, #ffcc80 100%); }
.workflow-step.step-5 .step-image { background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%); }

.step-image img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.workflow-step:hover .step-image img {
    transform: scale(1.1);
}

.step-content {
    padding: 20px 18px 25px;
    text-align: center;
}

.step-number {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12) 0%, rgba(118, 75, 162, 0.12) 100%);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
}

.workflow-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.workflow-step p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.slide-workflow.active .workflow-step {
    animation: slideUpFade 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-workflow.active .workflow-step.step-1 { animation-delay: 0.1s; }
.slide-workflow.active .workflow-step.step-2 { animation-delay: 0.2s; }
.slide-workflow.active .workflow-step.step-3 { animation-delay: 0.3s; }
.slide-workflow.active .workflow-step.step-4 { animation-delay: 0.4s; }
.slide-workflow.active .workflow-step.step-5 { animation-delay: 0.5s; }

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.workflow-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
}

/* Flow arrows between steps */
.workflow-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(102, 126, 234, 0.1) 0%, 
        rgba(102, 126, 234, 0.3) 20%, 
        rgba(118, 75, 162, 0.3) 50%, 
        rgba(102, 126, 234, 0.3) 80%, 
        rgba(102, 126, 234, 0.1) 100%);
    z-index: 0;
    opacity: 0;
}

.slide-workflow.active .workflow-steps::before {
    animation: expandLine 1s ease forwards 0.3s;
}

@keyframes expandLine {
    0% {
        width: 0%;
        opacity: 0;
    }
    100% {
        width: 80%;
        opacity: 1;
    }
}

/* Workflow Footer Tagline */
.workflow-footer {
    text-align: center;
    margin-top: 45px;
    opacity: 0;
    transform: translateY(20px);
    width: 100%;
}

.slide-workflow.active .workflow-footer {
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

.workflow-tagline-box {
    display: inline-block;
    padding: 28px 55px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.tagline-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 18px;
    font-family: 'Inter', sans-serif;
}

.tagline-solutions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
}

.hero-solutions {
    display: flex;
    justify-content: center;
    margin: 14px 0 6px;
}



.solution-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.solution-pill:hover {
    transform: translateY(-2px);
}

.pill-roster {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 26, 46, 0.2);
}

.pill-roster:hover {
    box-shadow: 0 6px 20px rgba(26, 26, 46, 0.3);
}

.pill-assessment {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.25);
}

.pill-assessment:hover {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.35);
}

.pill-maintenance {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
}

.pill-maintenance:hover {
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}

.solution-pill i {
    font-size: 1rem;
    opacity: 0.9;
}

.plus-sign {
    font-size: 1.5rem;
    font-weight: 400;
    color: #d1d5db;
}

.equals-sign {
    font-size: 1.5rem;
    font-weight: 400;
    color: #d1d5db;
}

.result-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.result-logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.tagline-result {
    font-size: 1.15rem;
    font-weight: 600;
    color: #374151;
    font-family: 'Inter', sans-serif;
    margin: 0;
    letter-spacing: 0.3px;
}

/* ==========================================
   SLIDE 5: DIFFERENTIATION
   ========================================== */
.slide-differentiation {
    background: transparent;
}

.slide-differentiation .diff-header {
    text-align: center;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(-30px);
    width: 100%;
}

.slide-differentiation.active .diff-header {
    animation: fadeInUp 0.8s ease forwards;
}

.diff-title {
    font-size: 4.5rem;
    font-weight: 950;
    background: linear-gradient(135deg, #1a1a2e 0%, #667eea 50%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -2.5px;
}

.diff-subtitle {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.55);
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto;
}

.dgca-subtitle,
.value-subtitle,
.student-subtitle,
.why-subtitle {
    text-align: center;
    margin: 0 auto;
}

.diff-container {
    display: flex;
    gap: 30px;
    align-items: stretch;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.diff-card {
    flex: 1;
    max-width: 420px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.not-card {
    transform: translateX(-40px);
}

.focus-card {
    transform: translateX(40px);
}

.slide-differentiation.active .not-card {
    animation: slideInLeftDiff 0.7s ease forwards 0.2s;
}

.slide-differentiation.active .focus-card {
    animation: slideInRightDiff 0.7s ease forwards 0.2s;
}

.diff-card-header {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.not-header {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-bottom: 2px solid #fecaca;
}

.focus-header {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-bottom: 2px solid #bbf7d0;
}

.diff-card-header img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.diff-card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.not-header h3 {
    color: #dc2626;
}

.focus-header h3 {
    color: #16a34a;
}

.diff-card-items {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.diff-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 14px;
    background: #f9fafb;
    transition: all 0.3s ease;
}

.diff-item:hover {
    transform: translateX(5px);
}

.not-item:hover {
    background: #fef2f2;
}

.focus-item:hover {
    background: #f0fdf4;
}

.item-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.not-icon-bg {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}

.focus-icon-bg {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}

.item-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.item-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.item-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
}

.item-desc {
    font-size: 0.8rem;
    color: #6b7280;
    font-family: 'Inter', sans-serif;
}

.diff-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.slide-differentiation.active .diff-vs {
    animation: fadeIn 0.5s ease forwards 0.5s;
}

.diff-vs span {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a1a2e 0%, #374151 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(26, 26, 46, 0.25);
}

.diff-footer {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    width: 100%;
}

.slide-differentiation.active .diff-footer {
    animation: fadeInUp 0.6s ease forwards 0.6s;
}

.diff-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    color: #374151;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.diff-typewriter {
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #667eea;
    width: 0;
    font-style: italic;
}

.slide-differentiation.active .diff-typewriter {
    animation: diffTyping 2.5s steps(40) 0.8s forwards, diffBlink 0.7s step-end infinite;
}

@keyframes diffTyping {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes diffBlink {
    50% { border-color: transparent; }
}

.diff-quote-mark {
    font-size: 2.5rem;
    font-weight: 700;
    font-style: normal;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.diff-quote-left {
    opacity: 0;
}

.diff-quote-right {
    opacity: 0;
}

.slide-differentiation.active .diff-quote-left {
    animation: fadeIn 0.3s ease forwards 0.6s;
}

.slide-differentiation.active .diff-quote-right {
    animation: fadeIn 0.3s ease forwards 3.3s;
}

@keyframes slideInLeftDiff {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRightDiff {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================
   SLIDE 6: DGCA ALIGNMENT
   ========================================== */
.slide-dgca {
    background: transparent;
}

.slide-dgca .dgca-header {
    text-align: center;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    width: 100%;
}

.slide-dgca.active .dgca-header {
    animation: fadeInUp 0.8s ease forwards;
}

.dgca-title {
    font-size: 4.5rem;
    font-weight: 950;
    background: linear-gradient(135deg, #1a1a2e 0%, #667eea 50%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -2.5px;
}

.dgca-subtitle {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.55);
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: 3.5px;
    text-transform: uppercase;
}

.dgca-showcase {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 380px;
    margin: 0 auto;
}

.dgca-center-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    z-index: 10;
}

.slide-dgca.active .dgca-center-badge {
    animation: zoomInBadge 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.2s;
}

@keyframes zoomInBadge {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.badge-ring {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4), 
                0 0 0 8px rgba(102, 126, 234, 0.1),
                0 0 0 16px rgba(102, 126, 234, 0.05);
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4), 
                    0 0 0 8px rgba(102, 126, 234, 0.1),
                    0 0 0 16px rgba(102, 126, 234, 0.05);
    }
    50% {
        box-shadow: 0 10px 40px rgba(102, 126, 234, 0.5), 
                    0 0 0 12px rgba(102, 126, 234, 0.15),
                    0 0 0 24px rgba(102, 126, 234, 0.08);
    }
}

.badge-ring img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
}

.badge-text {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.dgca-orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    ;
}

.orbit-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.orbit-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
}

/* Position cards in a proper orbit - no overlapping */
.orbit-1 { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-2 { top: 40%; left: 80%; transform: translateY(-50%); }
.orbit-3 { bottom: 10%; right: 60%; }
.orbit-4 { bottom: 10%; left: 70%; }
.orbit-5 { top: 40%; right: 80%; transform: translateY(-50%); }

.slide-dgca.active .orbit-1 { animation: orbitFadeIn 0.6s ease forwards 0.4s; }
.slide-dgca.active .orbit-2 { animation: orbitFadeIn 0.6s ease forwards 0.5s; }
.slide-dgca.active .orbit-3 { animation: orbitFadeIn 0.6s ease forwards 0.6s; }
.slide-dgca.active .orbit-4 { animation: orbitFadeIn 0.6s ease forwards 0.7s; }
.slide-dgca.active .orbit-5 { animation: orbitFadeIn 0.6s ease forwards 0.8s; }

@keyframes orbitFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

.slide-dgca.active .orbit-2,
.slide-dgca.active .orbit-3,
.slide-dgca.active .orbit-4,
.slide-dgca.active .orbit-5 {
    animation-name: orbitFadeInSimple;
}

@keyframes orbitFadeInSimple {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.orbit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.orbit-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.orbit-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    font-family: 'Poppins', sans-serif;
    margin: 0 0 2px 0;
}

.orbit-content p {
    font-size: 0.75rem;
    color: #6b7280;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

/* ==========================================
   SLIDE 7: VALUE FOR SCHOOLS
   ========================================== */
.slide-value-schools {
    background: transparent;
}

.slide-value-schools .value-header {
    text-align: center;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(-30px);
    width: 100%;
}

.slide-value-schools.active .value-header {
    animation: fadeInUp 0.8s ease forwards;
}

.value-title {
    font-size: 4.5rem;
    font-weight: 950;
    background: linear-gradient(135deg, #1a1a2e 0%, #667eea 50%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -2.5px;
}

.value-subtitle {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.55);
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: 3.5px;
    text-transform: uppercase;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.slide-value-schools.active .value-card {
    animation: slideUpFade 0.6s ease forwards;
}

.slide-value-schools.active .value-card:nth-child(1) { animation-delay: 0.1s; }
.slide-value-schools.active .value-card:nth-child(2) { animation-delay: 0.15s; }
.slide-value-schools.active .value-card:nth-child(3) { animation-delay: 0.2s; }
.slide-value-schools.active .value-card:nth-child(4) { animation-delay: 0.25s; }
.slide-value-schools.active .value-card:nth-child(5) { animation-delay: 0.3s; }
.slide-value-schools.active .value-card:nth-child(6) { animation-delay: 0.35s; }

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.15);
}

.value-card-image {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.value-card-image.green-bg { background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%); }
.value-card-image.blue-bg { background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%); }
.value-card-image.purple-bg { background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%); }
.value-card-image.orange-bg { background: linear-gradient(135deg, #fff3e0 0%, #ffcc80 100%); }
.value-card-image.pink-bg { background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%); }
.value-card-image.teal-bg { background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%); }

.value-card-image img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.value-card:hover .value-card-image img {
    transform: scale(1.1);
}

.value-card-content {
    padding: 20px;
    text-align: center;
}

.value-card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.value-card-content p {
    font-size: 0.85rem;
    color: #6b7280;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

/* ==========================================
   SLIDE 8: VALUE FOR STUDENTS - JOURNEY DESIGN
   ========================================== */
.slide-value-students {
    background: transparent;
}

.slide-value-students .student-header {
    text-align: center;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(-30px);
    width: 100%;
}

.slide-value-students.active .student-header {
    animation: fadeInUp 0.8s ease forwards;
}

.student-title {
    font-size: 3.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
}

.student-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #64748b;
    font-family: 'Inter', sans-serif;
}

/* Student Benefits Grid Container */
.student-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 0;
}

/* Student Benefit Card */
.student-benefit-card {
    background: white;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.student-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.student-benefit-card:hover::before {
    opacity: 1;
}

.slide-value-students.active .student-benefit-card {
    opacity: 1;
    transform: translateY(0);
}

.slide-value-students.active .student-benefit-card:nth-child(1) { animation: fadeInUp 0.8s ease forwards; animation-delay: 0.4s; }
.slide-value-students.active .student-benefit-card:nth-child(2) { animation: fadeInUp 0.8s ease forwards; animation-delay: 0.5s; }
.slide-value-students.active .student-benefit-card:nth-child(3) { animation: fadeInUp 0.8s ease forwards; animation-delay: 0.6s; }
.slide-value-students.active .student-benefit-card:nth-child(4) { animation: fadeInUp 0.8s ease forwards; animation-delay: 0.7s; }
.slide-value-students.active .student-benefit-card:nth-child(5) { animation: fadeInUp 0.8s ease forwards; animation-delay: 0.8s; }
.slide-value-students.active .student-benefit-card:nth-child(6) { animation: fadeInUp 0.8s ease forwards; animation-delay: 0.9s; }

.student-benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

/* Benefit Card Icon */
.benefit-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.benefit-card-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.student-benefit-card:hover .benefit-card-icon img {
    transform: scale(1.15) rotate(8deg);
}

/* Benefit Card Content */
.benefit-card-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit-card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    text-align: left;
}

.benefit-card-content p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
    text-align: left;
}

/* Benefit List */
.benefit-list {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 10px 0 0 0 !important;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.benefit-list li {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    list-style: none !important;
    padding-left: 20px !important;
    margin-left: 0 !important;
    text-align: left;
}

.benefit-list li::before {
    display: none !important;
}

.benefit-list li::after {
    display: none !important;
}

.benefit-list i {
    color: #667eea;
    font-size: 0.7rem;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

/* Color variations for benefit cards */
.benefit-card-icon.blue-bg {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.15) 0%, rgba(0, 242, 254, 0.15) 100%);
}

.benefit-card-icon.green-bg {
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.15) 0%, rgba(56, 249, 215, 0.15) 100%);
}

.benefit-card-icon.purple-bg {
    background: linear-gradient(135deg, rgba(147, 112, 219, 0.15) 0%, rgba(186, 85, 211, 0.15) 100%);
}

.benefit-card-icon.orange-bg {
    background: linear-gradient(135deg, rgba(255, 159, 64, 0.15) 0%, rgba(255, 99, 132, 0.15) 100%);
}

.benefit-card-icon.teal-bg {
    background: linear-gradient(135deg, rgba(32, 201, 201, 0.15) 0%, rgba(26, 188, 156, 0.15) 100%);
}

.benefit-card-icon.red-bg {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.15) 0%, rgba(255, 73, 97, 0.15) 100%);
}

/* Student Footer */
.student-footer {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 10px;
    opacity: 0;
    width: 100%;
}

.slide-value-students.active .student-footer {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.3s;
}

.student-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.student-quote-left,
.student-quote-right {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    font-family: Georgia, serif;
}

.student-typewriter {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    animation: studentTyping 2.5s steps(30) 1.5s forwards, studentBlink 0.7s step-end infinite;
    width: 0;
}

@keyframes studentTyping {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes studentBlink {
    50% { border-color: transparent; }
}

/* ==========================================
   SLIDE 9: WHY NOW - UPDATED DESIGN
   ========================================== */
.slide-why-now {
    background: transparent;
    min-height: 100vh;
}

.slide-why-now .content {
    display: flex !important;
    flex-direction: column !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.slide-why-now .why-header {
    text-align: center;
    margin-bottom: 20px;
    opacity: 1;
    transform: translateY(0);
    width: 100%;
    visibility: visible;
}

.slide-why-now.active .why-header {
    animation: fadeInUp 0.8s ease forwards;
}

.slide-why-now .why-title {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 5px;
    opacity: 1;
    transform: none;
}

.slide-why-now .why-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #b91c1c;
    font-family: 'Inter', sans-serif;
    opacity: 1;
    transform: none;
}

.slide-why-now .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 400px;
    opacity: 1 !important;
    visibility: visible !important;
}

.slide-why-now .why-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(239, 68, 68, 0.1);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.08);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
    visibility: visible !important;
}

.slide-why-now.active .why-card {
    animation: fadeInUp 0.8s ease forwards;
}

.slide-why-now.active .why-1 { animation-delay: 0.3s; }
.slide-why-now.active .why-2 { animation-delay: 0.4s; }
.slide-why-now.active .why-3 { animation-delay: 0.5s; }
.slide-why-now.active .why-4 { animation-delay: 0.6s; }

.slide-why-now .why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.15);
}

.why-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-card-icon.red-bg { background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%); }
.why-card-icon.blue-bg { background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%); }
.why-card-icon.green-bg { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); }
.why-card-icon.purple-bg { background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%); }

.why-card-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.why-card-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #b91c1c;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    opacity: 1;
    transform: none;
}

.why-card-content p {
    font-size: 0.9rem;
    color: #64748b;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    margin: 0;
    opacity: 1;
    transform: none;
    text-align: left;
}

.why-footer {
    text-align: center;
    margin-top: 25px;
    opacity: 1;
    width: 100%;
}

.slide-why-now.active .why-footer {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.why-tagline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.why-quote-left,
.why-quote-right {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    font-family: Georgia, serif;
}

.why-typewriter {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    font-family: 'Poppins', sans-serif;
}

/* ==========================================
   SLIDE 10: VISION - FIXED DESIGN
   ========================================== */
.slide-vision {
    background: transparent;
}

.slide-vision .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.slide-vision .vision-header {
    text-align: center;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(-30px);
    width: 100%;
}

.slide-vision.active .vision-header {
    animation: fadeInUp 0.8s ease forwards;
}

.slide-vision .vision-title {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 5px;
    opacity: 1;
    transform: none;
}

.vision-statement {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
    padding: 25px;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.1);
    opacity: 0;
    transform: translateY(20px);
}

.slide-vision.active .vision-statement {
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

.vision-statement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.vision-statement-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.vision-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    opacity: 1;
    transform: none;
}

.highlight-primary {
    color: #7c3aed;
    position: relative;
    padding: 0 8px;
}

.vision-transition-label {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #64748b;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    opacity: 0;
    width: 100%;
}

.slide-vision.active .vision-transition-label {
    animation: fadeInUp 0.6s ease forwards 0.5s;
}

.vision-transition {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.transition-from, .transition-to {
    flex: 1;
    max-width: 280px;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    background: white;
    opacity: 0;
    transform: translateY(20px);
}

.transition-from {
    border: 1px solid rgba(239, 68, 68, 0.15);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.08);
}

.transition-to {
    border: 1px solid rgba(34, 197, 94, 0.15);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.08);
}

.slide-vision.active .transition-from {
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.slide-vision.active .transition-to {
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

.transition-icon-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.transition-icon-img.red-bg { background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%); }
.transition-icon-img.green-bg { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); }

.transition-icon-img img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.transition-from h3, .transition-to h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    opacity: 1;
    transform: none;
}

.transition-from h3 { color: #b91c1c; }
.transition-to h3 { color: #166534; }

.transition-from p, .transition-to p {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    margin: 0;
    opacity: 1;
    transform: none;
}

.transition-from p { color: #7f1d1d; }
.transition-to p { color: #14532d; }

.transition-arrow {
    opacity: 0;
    width: 70px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: center;
    gap: 6px;
}

.transition-arrow span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    font-family: 'Poppins', sans-serif;
}

.transition-arrow img {
    width: 35px;
    height: auto;
}

.slide-vision.active .transition-arrow {
    animation: fadeInUp 0.8s ease forwards 0.7s;
}

/* ==========================================
   SLIDE 11: CLOSING - UPDATED DESIGN
   ========================================== */
.slide-closing {
    background: transparent;
}

.slide-closing .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
}

.closing-logo {
    max-width: 500px;
    margin-bottom: 30px;
    opacity: 0;
    transform: scale(0.5);
}

.slide-closing.active .closing-logo {
    animation: zoomIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.2s;
}

.closing-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
}

.closing-statement {
    text-align: center;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
}

.slide-closing.active .closing-statement {
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

.closing-title {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    opacity: 1;
    transform: none;
}

.closing-tagline {
    font-size: 1.4rem;
    color: #475569;
    line-height: 1.6;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    opacity: 1;
    transform: none;
}

.closing-tagline .highlight-primary {
    color: #2563eb;
    font-weight: 700;
}

.closing-promise {
    padding: 25px 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 15px;
    border-left: 4px solid #667eea;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease forwards 0.4s both;
}

.promise-text {
    font-size: 1.2rem;
    color: #1e293b;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin: 0;
}

.closing-cta {
    text-align: center;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
}

.slide-closing.active .closing-cta {
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

.cta-text {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 25px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    opacity: 1;
    transform: none;
}

.closing-icons {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.closing-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.closing-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.closing-icon:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.closing-contact {
    display: flex;
    gap: 30px;
    opacity: 0;
    transform: translateY(30px);
    justify-content: center;
}

.slide-closing.active .closing-contact {
    animation: fadeInUp 0.8s ease forwards 1.1s;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 50px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.contact-item span {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    margin: 20px 0;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.5);
}

.cta-button i {
    font-size: 1.3rem;
}

.cta-subtext {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    margin-top: 10px;
    opacity: 1;
    transform: none;
}

/* ===== NEW SLIDES STYLING ===== */

/* Enhanced Hero Slide */
.hero-tagline {
    font-size: 3rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.1;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease forwards 0.2s both;
}

/* Implementation Slide */
.slide-implementation {
    background: transparent;
}

.implementation-header {
    text-align: center;
    margin-bottom: 18px;
}

.implementation-title {
    font-size: 2.6rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.implementation-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.implementation-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: flex-start;
}

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

.feature-highlight {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-left: 3px solid #667eea;
    transition: all 0.3s ease;
    animation: slideInLeft 0.6s ease forwards;
}

.feature-highlight:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-highlight:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-highlight:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(2);
}

.highlight-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}

.highlight-content p {
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 6px;
    line-height: 1.5;
}

.highlight-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.highlight-benefits li {
    font-size: 0.75rem;
    color: #475569;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.highlight-benefits i {
    color: #16a34a;
    font-size: 0.9rem;
}

.showcase-right {
    display: flex;
    justify-content: center;
    animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.app-screenshot-container {
    perspective: 1000px;
}

.app-window {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    transform: rotateY(-5deg) rotateX(2deg);
}

.app-window:hover {
    transform: rotateY(-2deg) rotateX(1deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.app-header {
    background: #f8fafc;
    padding: 10px 12px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
}

.app-dots {
    display: flex;
    gap: 8px;
}

.app-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.app-dots span:nth-child(1) {
    background: #ef4444;
}

.app-dots span:nth-child(2) {
    background: #f59e0b;
}

.app-dots span:nth-child(3) {
    background: #10b981;
}

.app-content {
    padding: 0;
    background: white;
}

.app-main-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Business Case Slide */
.slide-business-case {
    background: transparent;
}

.business-header {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(-30px);
}

.slide-business-case.active .business-header {
    animation: fadeInUp 0.8s ease forwards;
}

.business-title {
    font-size: 4.5rem;
    font-weight: 950;
    background: linear-gradient(135deg, #1a1a2e 0%, #667eea 50%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -2.5px;
}

.business-subtitle {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.55);
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: 3.5px;
    text-transform: uppercase;
}

.business-benefits-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 35px;
}

.benefit-card-main {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.slide-business-case.active .benefit-card-main {
    animation: slideUpFade 0.6s ease forwards;
}

.slide-business-case.active .benefit-card-main:nth-child(1) { animation-delay: 0.1s; }
.slide-business-case.active .benefit-card-main:nth-child(2) { animation-delay: 0.15s; }
.slide-business-case.active .benefit-card-main:nth-child(3) { animation-delay: 0.2s; }

.benefit-card-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(102, 126, 234, 0.2);
}

.benefit-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.8rem;
    color: white;
}

.training-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.efficiency-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.leadership-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    margin-top: 0;
    font-family: 'Poppins', sans-serif;
}

.benefit-list-main {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left;
}

.benefit-list-main li {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 14px !important;
    line-height: 1.5;
    padding-left: 20px !important;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none !important;
    margin-left: 0 !important;
}

.benefit-list-main li::before {
    display: none !important;
}

.benefit-list-main li::after {
    display: none !important;
}

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

.benefit-list-main i {
    color: #667eea;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
    font-style: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.business-metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.metric-box {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 1);
    border-radius: 20px;
    padding: 24px 18px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
}

.slide-business-case.active .metric-box {
    animation: slideUpFade 0.6s ease forwards;
}

.slide-business-case.active .metric-box:nth-child(1) { animation-delay: 0.25s; }
.slide-business-case.active .metric-box:nth-child(2) { animation-delay: 0.3s; }
.slide-business-case.active .metric-box:nth-child(3) { animation-delay: 0.35s; }
.slide-business-case.active .metric-box:nth-child(4) { animation-delay: 0.4s; }

.metric-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.15);
}

.metric-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.metric-text {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

/* Testimonials Slide */
.slide-testimonials {
    background: transparent;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    font-family: 'Inter', sans-serif;
}

.testimonials-badge i {
    font-size: 0.75rem;
}

.testimonials-title {
    font-size: 3.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    background: linear-gradient(135deg, #0284c7 0%, #075985 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.testimonials-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 50px;
    padding: 0 40px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease forwards;
    border-top: 4px solid #0284c7;
    opacity: 1;
    position: relative;
}

.testimonial-card:nth-child(1) {
    border-top-color: #3b82f6;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
    border-top-color: #10b981;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.4s;
    border-top-color: #f97316;
}

@keyframes slideInUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.quote-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
    font-size: 0.9rem;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.75;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.15rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.author-role {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.testimonials-footer {
    text-align: center;
    margin-top: 20px;
}

.testimonials-note {
    font-size: 1.1rem;
    color: #475569;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.testimonials-note .highlight-blue {
    color: #0284c7;
    font-weight: 700;
}

/* Color utility classes */
.blue-bg {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.green-bg {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.orange-bg {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.purple-bg {
    background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
}

.red-bg {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* Why Now Slide Enhancement */
.why-card {
    position: relative;
}

.why-stat {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    margin-top: 12px;
    display: inline-block;
}

/* ==========================================
   FEATURE DETAIL SLIDES (4 New Slides)
   ========================================== */
.slide-feature-weather,
.slide-feature-assessment,
.slide-feature-maintenance,
.slide-feature-roster {
    background: transparent;
}

.feature-header {
    text-align: center;
    margin-bottom: 45px;
    opacity: 0;
    transform: translateY(-30px);
}

.slide-feature-weather.active .feature-header,
.slide-feature-assessment.active .feature-header,
.slide-feature-maintenance.active .feature-header,
.slide-feature-roster.active .feature-header {
    animation: fadeInUp 0.8s ease forwards;
}

.feature-title {
    font-size: 4.5rem;
    font-weight: 950;
    background: linear-gradient(135deg, #1a1a2e 0%, #667eea 50%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -2.5px;
}

.feature-subtitle {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.55);
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: 3.5px;
    text-transform: uppercase;
}

.feature-detail-grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: 45px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.feature-detail-left,
.feature-detail-right {
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.slide-feature-weather.active .feature-detail-left,
.slide-feature-weather.active .feature-detail-right,
.slide-feature-assessment.active .feature-detail-left,
.slide-feature-assessment.active .feature-detail-right,
.slide-feature-maintenance.active .feature-detail-left,
.slide-feature-maintenance.active .feature-detail-right,
.slide-feature-roster.active .feature-detail-left,
.slide-feature-roster.active .feature-detail-right {
    animation: fadeInUp 0.8s ease forwards;
}

.slide-feature-weather.active .feature-detail-left,
.slide-feature-assessment.active .feature-detail-right,
.slide-feature-maintenance.active .feature-detail-left,
.slide-feature-roster.active .feature-detail-right {
    animation-delay: 0.2s;
}

.slide-feature-weather.active .feature-detail-right,
.slide-feature-assessment.active .feature-detail-left,
.slide-feature-maintenance.active .feature-detail-right,
.slide-feature-roster.active .feature-detail-left {
    animation-delay: 0.4s;
}

.feature-detail-icon {
    display: none;
}

.feature-detail-content {
    background: white;
    padding: 35px 32px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-detail-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
    margin-top: 0;
}

.feature-detail-content p {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    text-align: justify;
    margin-top: 0;
}

.feature-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1;
}

.feature-points li {
    font-size: 1rem;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    list-style: none !important;
    padding: 12px 14px;
    margin: 0 !important;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
    border-radius: 10px;
    border-left: 3px solid #667eea;
    transition: all 0.3s ease;
    text-align: left;
}

.feature-points li:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    transform: translateX(5px);
}

.feature-points li::before {
    display: none !important;
}

.feature-points i {
    color: #667eea;
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 22px;
    text-align: center;
    margin-top: 2px;
}

.feature-showcase-box {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
    overflow: visible;
    transition: all 0.4s ease;
}

.feature-showcase-box::before {
    display: none;
}

.feature-showcase-box:hover {
    transform: translateY(-10px);
}

.feature-showcase-box img {
    width: auto;
    height: auto;
    max-height: 450px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
    transition: all 0.4s ease;
}

.feature-showcase-box:hover img {
    filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.2));
    transform: scale(1.02);
}

/* Individual feature color schemes */
.slide-feature-weather .feature-detail-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.25);
}

.slide-feature-weather .feature-points li {
    border-left-color: #3b82f6;
}

.slide-feature-weather .feature-points i {
    color: #3b82f6;
}

.slide-feature-assessment .feature-detail-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.25);
}

.slide-feature-assessment .feature-points li {
    border-left-color: #10b981;
}

.slide-feature-assessment .feature-points i {
    color: #10b981;
}

.slide-feature-maintenance .feature-detail-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.25);
}

.slide-feature-maintenance .feature-points li {
    border-left-color: #f59e0b;
}

.slide-feature-maintenance .feature-points i {
    color: #f59e0b;
}

.slide-feature-roster .feature-detail-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.25);
}

.slide-feature-roster .feature-points li {
    border-left-color: #8b5cf6;
}

.slide-feature-roster .feature-points i {
    color: #8b5cf6;
}
