/* ========== HEADER SECTION ========== */

/* Variables */
:root {
    /* Colors */
    --primary-purple: #6d4eff;
    --secondary-purple: #8a2be2;
    --accent-purple: #a855f7;
    --dark-purple: #4b0082;
    --white: #ffffff;
    --light-gray: #f8f8f8;
    --dark-gray: #333333;
    
    /* Gradients */
    --gradient-purple: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple), var(--accent-purple));
    --gradient-purple-hover: linear-gradient(135deg, var(--secondary-purple), var(--accent-purple), var(--primary-purple));
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(109, 78, 255, 0.1);
    --shadow-md: 0 5px 20px rgba(109, 78, 255, 0.15);
    --shadow-lg: 0 10px 40px rgba(109, 78, 255, 0.2);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    overflow-x: hidden;
}

/* Progress Bar */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 1002;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-sm);
}

.header.scrolled {
    padding: 1rem 4rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideInLeft 0.8s ease-out;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-purple);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-purple-hover);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-icon:hover::before {
    opacity: 1;
}

.logo-icon i {
    color: var(--white);
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.logo-text {
    display: flex;
    gap: 0.25rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.logo-part-1 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--dark-gray), var(--dark-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-part-2 {
    font-size: 1.8rem;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s infinite linear;
    background-size: 200% auto;
}

@keyframes textShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Navigation */
.nav-container {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem;
}

.nav-icon {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    transition: var(--transition-smooth);
    color: var(--dark-gray);
}

.nav-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-purple);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-purple);
}

.nav-link:hover .nav-icon {
    transform: translateY(-5px);
    color: var(--primary-purple);
}

.nav-link:hover::after {
    width: 80%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-purple);
    color: var(--primary-purple);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: pulseGlow 2s infinite;
}

.btn-header i,
.btn-header span {
    color: inherit;
}

.btn-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(109, 78, 255, 0.12);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn-header:hover::before {
    left: 0;
}

.btn-header:hover {
    color: var(--primary-purple);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    animation: none;
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(109, 78, 255, 0.3);
    }
    50% { 
        box-shadow: 0 6px 30px rgba(109, 78, 255, 0.5);
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-gray);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition-smooth);
}

.mobile-menu-btn:hover {
    color: var(--primary-purple);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.1);
    transition: left 0.4s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--light-gray);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-gray);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition-smooth);
}

.mobile-menu-close:hover {
    color: var(--primary-purple);
    transform: rotate(90deg);
}

.mobile-nav {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    text-decoration: none;
    color: var(--dark-gray);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
    background: rgba(109, 78, 255, 0.1);
    color: var(--primary-purple);
    transform: translateX(10px);
}

.mobile-nav-link i {
    width: 20px;
    text-align: center;
}

.btn-mobile {
    background: var(--gradient-purple);
    color: var(--white);
    justify-content: center;
    margin-top: auto;
}

.btn-mobile:hover {
    background: var(--gradient-purple-hover);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header {
        padding: 1.5rem 2rem;
    }
    
    .header.scrolled {
        padding: 1rem 2rem;
    }
    
    .nav-container {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .btn-header {
        display: none;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .mobile-menu {
        width: 100%;
    }
}

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

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

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

/* ========== HERO SECTION ========== */

/* Hero Base Styles */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
}

/* Animated Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    opacity: 0.1;
    filter: blur(40px);
    animation: floatParticle 20s infinite linear;
}

.p1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.p2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.p3 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.p4 {
    width: 180px;
    height: 180px;
    top: 30%;
    right: 20%;
    animation-delay: 6s;
}

.p5 {
    width: 220px;
    height: 220px;
    bottom: 40%;
    right: 30%;
    animation-delay: 8s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }
    75% {
        transform: translate(20px, 20px) rotate(270deg);
    }
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInDown 0.8s ease-out;
}

.badge-icon {
    width: 30px;
    height: 30px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 4s linear infinite;
}

.badge-icon i {
    color: var(--white);
    font-size: 0.9rem;
}

.badge-text {
    font-weight: 500;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hero Title */
.hero-title-container {
    margin-bottom: 2rem;
    overflow: hidden;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.title-part {
    position: relative;
    display: inline-block;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.title-part:nth-child(1) {
    animation-delay: 0.3s;
}

.title-part:nth-child(2) {
    animation-delay: 0.6s;
}

.title-part::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    color: transparent;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    background-clip: text;
    animation: textGlitch 5s infinite;
    opacity: 0.5;
}

.gradient-text {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: textShimmer 3s infinite linear;
    background-size: 200% auto;
}

@keyframes textGlitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
    opacity: 0;
}

.highlight {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    position: relative;
}

.typing-cursor {
    display: inline-block;
    animation: blink 1s infinite;
    margin-left: 2px;
}

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

/* Hero Description */
.hero-description {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
    opacity: 0;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 1.5s forwards;
    opacity: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-purple);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-purple-hover);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.btn-hover-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover .btn-hover-effect {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
    background: var(--gradient-purple);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1.8s forwards;
    opacity: 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    min-width: 150px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatElement 6s ease-in-out infinite;
    opacity: 0.8;
}

.floating-element i {
    font-size: 1.5rem;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fe1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.fe2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.fe3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.fe4 {
    top: 40%;
    right: 25%;
    animation-delay: 3s;
}

.fe5 {
    bottom: 40%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        box-shadow: 0 5px 15px rgba(109, 78, 255, 0.1);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
        box-shadow: 0 15px 30px rgba(109, 78, 255, 0.2);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
    animation: fadeInUp 1s ease-out 2.1s forwards;
    opacity: 0;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-purple);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--gradient-purple);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

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

.scroll-text {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 500;
    animation: fadeInOut 2s infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Hero Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .floating-element {
        width: 50px;
        height: 50px;
    }
    
    .floating-element i {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 1.5rem 3rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        min-width: 120px;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
}



/* ---------------------------------------------- */
/* ========== FEATURES SECTION ========== */

/* Features Section Base */
.features {
    position: relative;
    background: linear-gradient(135deg, #f9f7ff 0%, #f0edff 100%);
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path fill="%236d4eff" opacity="0.03" d="M500,100C229,100,10,319,10,590s219,490,490,490s490-219,490-490S771,100,500,100z"/></svg>') center/600px repeat;
    animation: floatBackground 60s linear infinite;
}

@keyframes floatBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(300px, 300px); }
}

.features-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Features Header */
.features-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-purple);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.features-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-purple-hover);
    transition: left 0.6s ease;
}

.features-badge:hover::before {
    left: 0;
}

.features-badge i {
    animation: rotate 4s linear infinite;
    position: relative;
    z-index: 1;
}

.features-badge span {
    position: relative;
    z-index: 1;
}

.features-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--dark-gray), var(--dark-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.features-title .gradient-text {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s infinite linear;
    background-size: 200% auto;
}

.features-description {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Feature Card */
.feature-card {
    position: relative;
    height: 100%;
    perspective: 1000px;
}

.feature-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover .feature-card-inner {
    transform: rotateY(5deg) rotateX(5deg) translateY(-10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-purple);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 20px;
}

.feature-card:hover::before {
    opacity: 0.05;
}

/* Feature Icon */
.feature-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    font-size: 1.8rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.icon-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-purple);
    border-radius: 15px;
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(109, 78, 255, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(109, 78, 255, 0);
    }
}

.feature-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-purple);
    background: rgba(109, 78, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    animation: countGlow 3s infinite;
}

@keyframes countGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Feature Media */
.feature-media {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.feature-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0));
    z-index: 1;
}

.play-indicator {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.feature-card:hover .play-indicator {
    opacity: 1;
    transform: scale(1);
}

.play-indicator i {
    color: var(--primary-purple);
    font-size: 0.9rem;
    margin-left: 2px;
}

/* Feature Content */
.feature-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-purple);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-title {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.icon-inline {
    font-size: 1.2rem;
    color: var(--primary-purple);
    transition: all 0.3s ease;
}

.feature-card:hover .icon-inline {
    transform: scale(1.2) rotate(10deg);
}

.feature-text {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Feature List */
.feature-list {
    margin-bottom: 1.5rem;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

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

.list-item i {
    color: #4CAF50;
    font-size: 0.9rem;
    min-width: 16px;
}

/* Feature Footer */
.feature-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(109, 78, 255, 0.1);
}

.feature-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.feature-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-purple);
    transition: width 0.3s ease;
}

.feature-link:hover::after {
    width: 100%;
}

.feature-link:hover {
    gap: 1rem;
}

.feature-link i {
    transition: transform 0.3s ease;
}

.feature-link:hover i {
    transform: translateX(5px);
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(109, 78, 255, 0.1);
    color: var(--primary-purple);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    animation: tagPulse 2s infinite;
}

.feature-tag i {
    font-size: 0.8rem;
}

@keyframes tagPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Feature Hover Effect */
.feature-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), 
                rgba(109, 78, 255, 0.1) 0%, 
                transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
    border-radius: 20px;
}

.feature-card:hover .feature-hover-effect {
    opacity: 1;
}

/* Features CTA */
.features-cta {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    opacity: 0;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.features-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-purple);
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-purple);
}

.cta-content p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    animation: pulseGlow 2s infinite;
}

/* Features Responsive */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-title {
        font-size: 2.5rem;
    }
    
    .features-description {
        font-size: 1.1rem;
    }
    
    .features-cta {
        padding: 2rem;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .features-container {
        padding: 0 1rem;
    }
    
    .features-title {
        font-size: 2rem;
    }
    
    .feature-content {
        padding: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .features-cta {
        padding: 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
}

/* -------------------------------------------------------- */
/* Resources Section */

/* ============================== */

/* ========== ENHANCED RESOURCES SECTION ========== */

.resources {
    background: linear-gradient(135deg, #f9f7ff 0%, #f5f3ff 100%);
    position: relative;
    overflow: hidden;
}

.resources::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle at 70% 30%, rgba(109, 78, 255, 0.05) 0%, transparent 50%);
    animation: floatBackground 20s linear infinite;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(25, 24, 29, 0.2);
    animation: pulse 2s infinite;
}

.section-badge i {
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--dark-gray), var(--dark-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s infinite linear;
    background-size: 200% auto;
}

@keyframes textShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.section-description {
    color: var(--dark-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Resource Card */
.resource-card {
    position: relative;
    height: 100%;
    perspective: 1000px;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.resource-card:nth-child(1) { animation-delay: 0.1s; }
.resource-card:nth-child(2) { animation-delay: 0.2s; }
.resource-card:nth-child(3) { animation-delay: 0.3s; }

.resource-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(109, 78, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.resource-card:hover .resource-card-inner {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(109, 78, 255, 0.15);
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

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

/* Resource Icon */
.resource-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: rgba(109, 78, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.resource-card:hover .resource-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
}

.resource-icon i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.resource-card:hover .resource-icon i {
    -webkit-text-fill-color: white;
    background: transparent;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    border-radius: 15px;
    opacity: 0.1;
    filter: blur(10px);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

/* Resource Header */
.resource-header {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.resource-header h3 {
    font-size: 1.5rem;
    color: var(--dark-purple);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s ease;
}

.resource-card:hover .resource-header h3 {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.icon-inline {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.resource-card:hover .icon-inline {
    transform: scale(1.2);
}

.resource-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.resource-badge i {
    font-size: 0.8rem;
}

/* Resource Text */
.resource-text {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex: 1;
}

/* Resource Features */
.resource-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: rgba(109, 78, 255, 0.08);
    color: var(--primary-purple);
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.resource-card:hover .feature-tag {
    background: rgba(109, 78, 255, 0.15);
    transform: translateY(-2px);
}

.feature-tag i {
    font-size: 0.8rem;
}

/* Resource Footer */
.resource-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(109, 78, 255, 0.1);
}

.resource-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(109, 78, 255, 0.2);
}

.resource-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-purple), var(--primary-purple));
    transition: left 0.6s ease;
    z-index: -1;
}

.resource-btn:hover::before {
    left: 0;
}

.resource-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(109, 78, 255, 0.3);
    gap: 1rem;
}

.resource-btn i {
    transition: transform 0.3s ease;
}

.resource-btn:hover i {
    transform: translateX(5px);
}

.resource-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.85rem;
}

.resource-meta i {
    color: var(--primary-purple);
}

/* Resource Hover Effect */
.resource-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), 
                rgba(109, 78, 255, 0.05) 0%, 
                transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
    border-radius: 20px;
}

.resource-card:hover .resource-hover-effect {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .resources-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .resource-card-inner {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .resource-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .resource-btn {
        justify-content: center;
    }
    
    .resource-meta {
        justify-content: center;
    }
}


/* ============================ Daily insights ================= */
/* ========== ENHANCED DAILY EMOTIONAL INSIGHTS SECTION ========== */

.insights-section {
    background: linear-gradient(135deg, var(--very-light-purple) 0%, var(--light-purple) 100%);
    position: relative;
}

.insights-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(109, 78, 255, 0.05) 0%, transparent 70%);
    filter: blur(40px);
    animation: pulseGlowLarge 8s ease-in-out infinite alternate;
}

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

.insights-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .insights-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Insights Column */
.insights-column {
    animation: fadeInLeft 0.8s ease-out;
}

.insights-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 1px solid rgba(109, 78, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.insights-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-purple));
}

.insights-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.insights-header h3 {
    font-size: 1.5rem;
    color: var(--dark-purple);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.insights-header h3 i {
    color: var(--primary-purple);
    font-size: 1.2rem;
}

.insights-controls {
    display: flex;
    gap: 0.5rem;
}

.insight-control-btn {
    width: 40px;
    height: 40px;
    background: rgba(109, 78, 255, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.insight-control-btn:hover {
    background: var(--primary-purple);
    color: white;
    transform: scale(1.1);
}

.insights-scroller {
    height: 400px;
    overflow-y: auto;
    margin-bottom: 2rem;
    padding-right: 0.5rem;
}

.insights-scroller::-webkit-scrollbar {
    width: 6px;
}

.insights-scroller::-webkit-scrollbar-track {
    background: rgba(109, 78, 255, 0.05);
    border-radius: 10px;
}

.insights-scroller::-webkit-scrollbar-thumb {
    background: var(--primary-purple);
    border-radius: 10px;
}

.insights-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.insight-item {
    background: rgba(109, 78, 255, 0.03);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.insight-item:hover {
    background: rgba(109, 78, 255, 0.08);
    transform: translateX(5px);
    border-color: rgba(109, 78, 255, 0.1);
}

.insight-item.active {
    background: linear-gradient(135deg, rgba(109, 78, 255, 0.1), rgba(168, 85, 247, 0.1));
    border-color: rgba(109, 78, 255, 0.2);
    box-shadow: 0 5px 15px rgba(109, 78, 255, 0.1);
}

.insight-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-purple), var(--accent-purple));
}

.insight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.insight-icon i {
    color: white;
    font-size: 1.2rem;
}

.insight-content {
    flex: 1;
}

.insight-content h4 {
    font-size: 1.1rem;
    color: var(--dark-purple);
    margin-bottom: 0.25rem;
}

.insight-content p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.insight-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-purple);
    background: rgba(109, 78, 255, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.insights-progress {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(109, 78, 255, 0.1);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(109, 78, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.progress-fill {
    width: 10%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-purple));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.current-insight {
    font-weight: 700;
    color: var(--primary-purple);
    font-size: 1.2rem;
}

/* Video Column */
.video-column {
    animation: fadeInRight 0.8s ease-out;
}

.video-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(109, 78, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-purple), var(--primary-purple));
}

.video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.video-header h3 {
    font-size: 1.5rem;
    color: var(--dark-purple);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.video-header h3 i {
    color: var(--primary-purple);
    font-size: 1.2rem;
}

.video-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(109, 78, 255, 0.1);
    color: var(--primary-purple);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.video-player {
    margin-bottom: 2rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    margin-bottom: 1.5rem;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: white;
    transform: scale(1.1);
}

.video-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    padding: 0 2rem;
}

.video-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.control-btn {
    width: 50px;
    height: 50px;
    background: rgba(109, 78, 255, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.control-btn:hover {
    background: var(--primary-purple);
    color: white;
    transform: scale(1.1);
}

.control-btn.play-pause {
    width: 60px;
    height: 60px;
    background: var(--primary-purple);
    color: white;
}

.control-btn.play-pause:hover {
    background: var(--accent-purple);
}

.video-info {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(109, 78, 255, 0.1);
}

.video-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.video-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.video-stats .stat i {
    color: var(--primary-purple);
}

.video-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.video-tag {
    padding: 0.4rem 0.8rem;
    background: rgba(109, 78, 255, 0.08);
    color: var(--primary-purple);
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.video-tag:hover {
    background: rgba(109, 78, 255, 0.15);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .insights-card,
    .video-card {
        padding: 2rem;
    }
    
    .insights-scroller {
        height: 350px;
    }
    
    .video-controls {
        gap: 1rem;
    }
    
    .video-stats {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .insights-container {
        gap: 1.5rem;
    }
    
    .insights-card,
    .video-card {
        padding: 1.5rem;
    }
    
    .insight-item {
        padding: 1.25rem;
    }
    
    .insight-icon {
        width: 40px;
        height: 40px;
    }
    
    .insight-icon i {
        font-size: 1rem;
    }
    
    .video-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* ========== SIMPLE VIDEO PLAYER ========== */

.video-player-simple {
    position: relative;
    margin-bottom: 1.5rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.youtube-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('https://img.youtube.com/vi/xl9r_hOh9r4/maxresdefault.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-wrapper.playing .youtube-placeholder {
    opacity: 0;
    pointer-events: none;
}

.play-overlay {
    text-align: center;
    color: white;
    padding: 2rem;
    transition: all 0.3s ease;
}

.play-overlay i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--primary-purple);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.play-overlay span {
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    margin-top: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.video-wrapper:hover .play-overlay i {
    transform: scale(1.1);
}

.video-wrapper:hover .play-overlay span {
    background: rgba(255,255,255,0.2);
}

/* Video Info */
.video-info-simple {
    margin-top: 1.5rem;
}

.video-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.video-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.video-stats .stat i {
    color: var(--primary-purple);
}

.video-description {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 1rem;
    background: rgba(109, 78, 255, 0.03);
    border-radius: 10px;
    border-left: 3px solid var(--primary-purple);
}

/* YouTube Iframe */
#youtube-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border: none;
    border-radius: 15px;
}


/* ====================== testimonials ============ */
/* ================================
   Simplified Testimonials Section
   ================================ */

.testimonials {
  background: linear-gradient(135deg, 
    rgba(109, 78, 255, 0.08) 0%, 
    rgba(138, 43, 226, 0.08) 50%,
    rgba(109, 78, 255, 0.08) 100%);
  position: relative;
  overflow: hidden;
 
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 8rem;
  position: relative;
  z-index: 1;
}

.section-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: float 6s ease-in-out infinite;
}

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

.section-title {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-purple), var(--secondary-purple));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--dark-gray);
  max-width: 600px;
  margin: 1rem auto 0;
  opacity: 0.8;
}

/* Testimonial Grid Layout */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns on large screens */
  gap: 2rem;
  margin: 0 auto 8rem;
  max-width: 1400px;
}

/* Testimonial Card */
.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  cursor: pointer;
  animation: cardAppear 0.6s ease-out backwards;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 13rem;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes cardAppear {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--primary-purple), 
    var(--secondary-purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(109, 78, 255, 0.15);
}

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

/* Card Inner Flip Effect */
.testimonial-card-inner {
  position: relative;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  height: 100%;
  min-height: 380px;
}

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

.testimonial-front,
.testimonial-back {
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonial-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
}

/* Front Card Styling */
.testimonial-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.avatar-container {
  position: relative;
  margin-bottom: 1rem;
}

.avatar-ring {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple)) border-box;
  animation: avatarFloat 4s ease-in-out infinite;
}

@keyframes avatarFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.avatar-status {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 12px;
  height: 12px;
  background: #00d2d3;
  border: 2px solid white;
  border-radius: 50%;
  animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 210, 211, 0.4); }
  50% { box-shadow: 0 0 0 5px rgba(0, 210, 211, 0); }
}

.stars {
  font-size: 1.2rem;
  color: #ffd700;
  margin-top: 0.5rem;
  letter-spacing: 2px;
}

.testimonial-name {
  font-size: 1.3rem;
  color: var(--dark-purple);
  margin: 0.5rem 0 0.2rem;
}

.testimonial-role {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Testimonial Preview */
.testimonial-preview {
  background: rgba(109, 78, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1rem;
  border-left: 3px solid var(--primary-purple);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.quote-mark {
  font-size: 2.5rem;
  color: var(--primary-purple);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.testimonial-content {
  font-style: italic;
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-size: 0.95rem;
}

.read-full-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-purple);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  background: none;
  border: none;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  margin-top: auto;
}

.read-full-btn:hover {
  gap: 1rem;
  color: var(--secondary-purple);
}

.chevron {
  transition: transform 0.3s ease;
}

.read-full-btn:hover .chevron {
  transform: translateX(3px);
}

/* Back Card Styling */
.full-testimonial {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--dark-gray);
  flex-grow: 1;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: auto;
}

.social-proof {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.activity, .entries {
  display: inline-block;
}

.close-testimonial {
  background: rgba(109, 78, 255, 0.1);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--primary-purple);
}

.close-testimonial:hover {
  background: var(--primary-purple);
  color: white;
  transform: rotate(90deg);
}


/* Enhanced Hover Effects */
.testimonial-card:hover .testimonial-preview {
  background: rgba(109, 78, 255, 0.08);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on medium screens */
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    gap: 1.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-icon {
    font-size: 2.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .avatar-ring {
    width: 80px;
    height: 80px;
  }
}

/* Add floating animation for cards */
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.testimonial-card:hover {
  animation: floatCard 2s ease-in-out infinite;
}





/*============== Who We Are Section ========================== */
/* Enhanced Who We Are Section */
.who-we-are-enhanced {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(109, 78, 255, 0.08) 0%,
    rgba(138, 43, 226, 0.08) 50%,
    rgba(109, 78, 255, 0.03) 100%
  ) !important;
  overflow: hidden;
}

/* Animated background elements */
.who-we-are-enhanced::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(109, 78, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
  animation: rotate-bg 20s linear infinite;
  z-index: 0;
}

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

/* Floating orbs */
.who-we-are-enhanced::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 78, 255, 0.1) 0%, transparent 70%);
  top: 10%;
  right: 5%;
  animation: float-orb 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes float-orb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.content-wrapper {
  position: relative;
  z-index: 2;
}

/* Enhanced Title */
.enhanced-title {
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6d4eff 0%, #8a2be2 50%, #ff69b4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  padding-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: title-reveal 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes title-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.enhanced-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #6d4eff, #8a2be2, transparent);
  border-radius: 2px;
  animation: line-expand 1.2s ease 0.5s forwards;
  transform-origin: center;
  transform: translateX(-50%) scaleX(0);
}

@keyframes line-expand {
  to {
    transform: translateX(-50%) scaleX(1);
  }
}

/* Enhanced Content Container */
.who-content-enhanced {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.who-content-enhanced::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #6d4eff, #8a2be2, transparent);
  border-radius: 1px;
  animation: line-glow 2s ease-in-out infinite;
}

@keyframes line-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Enhanced Paragraphs */
.enhanced-paragraph {
  margin-bottom: 2.5rem;
  font-size: 1.15rem;
  line-height: 1.8;
  text-align: left;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border-left: 4px solid #6d4eff;
  box-shadow: 
    0 4px 20px rgba(109, 78, 255, 0.08),
    0 2px 8px rgba(138, 43, 226, 0.05);
  transform: translateX(-20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.enhanced-paragraph:nth-child(1) {
  animation: paragraph-enter 0.6s ease 0.2s forwards;
  border-left-color: #6d4eff;
}

.enhanced-paragraph:nth-child(2) {
  animation: paragraph-enter 0.6s ease 0.4s forwards;
  border-left-color: #8a2be2;
}

.enhanced-paragraph:nth-child(3) {
  animation: paragraph-enter 0.6s ease 0.6s forwards;
  border-left-color: #ff69b4;
}

@keyframes paragraph-enter {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.enhanced-paragraph:hover {
  transform: translateX(10px);
  box-shadow: 
    0 8px 30px rgba(109, 78, 255, 0.15),
    0 4px 15px rgba(138, 43, 226, 0.1);
}

/* Paragraph Highlight */
.paragraph-highlight {
  font-weight: 600;
  background: linear-gradient(135deg, #6d4eff, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.paragraph-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #6d4eff, #8a2be2);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.enhanced-paragraph:hover .paragraph-highlight::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Subtle hover effect on paragraphs */
.enhanced-paragraph::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(109, 78, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.enhanced-paragraph:hover::before {
  left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .who-we-are-enhanced {
    padding: 3rem 1rem !important;
  }
  
  .enhanced-title {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
  }
  
  .enhanced-paragraph {
    padding: 1.5rem;
    font-size: 1.05rem;
  }
  
  .who-content-enhanced::before {
    left: -10px;
  }
}

@media (max-width: 480px) {
  .enhanced-title {
    font-size: 2rem;
  }
  
  .enhanced-paragraph {
    padding: 1.25rem;
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .who-content-enhanced::before {
    display: none;
  }
}

/* Optional: Add scroll-based animations */
@media (prefers-reduced-motion: no-preference) {
  .enhanced-paragraph {
    animation-play-state: paused;
  }
  
  .enhanced-paragraph.in-view {
    animation-play-state: running;
  }
}

/* Footer */
.footer {
  background: var(--dark-purple);
  color: white;
  padding: 3rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--light-purple);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--light-purple);
  transform: translateY(-3px);
}

/* FAQ Button & Panel */
.faq-float-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary-purple);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 1rem 1.5rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: all 0.3s ease;
  font-weight: 500;
}

.faq-float-btn:hover {
  background: var(--secondary-purple);
  transform: translateY(-3px);
}

.faq-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  height: 100vh;
  background: var(--white);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.4s ease;
  overflow-y: auto;
}

.faq-panel.active {
  right: 0;
}

.faq-header {
  background: var(--primary-purple);
  color: white;
  padding: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-list {
  padding: 1.5rem;
  list-style: none;
}

.faq-list li {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--medium-gray);
}

.faq-list li:last-child {
  border-bottom: none;
}

.faq-list strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-purple);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in {
  animation: fadeIn 1s ease forwards;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }

  .insight-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 1rem;
  }

  .nav {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .faq-panel {
    width: 100%;
    right: -100%;
  }
}
.title-part.gradient-text {
    opacity: 1 !important;
}
.youtube-player-advanced {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
}

.youtube-thumb-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2;
}

.youtube-thumb-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.youtube-play-icon {
    position: absolute;
    font-size: 45px;
    color: #fff;
    background: rgba(0,0,0,0.6);
    padding: 15px;
    border-radius: 50%;
}

.youtube-player-advanced iframe {
    width: 100%;
    height: 100%;
    display: block;
}
