/* ==============================================
   GL PAGES CSS
   Styling for all GL information pages
   ============================================== */

/* ============================================== */
/* GLOBAL PAGE STYLES - CYBER-VOXEL SYNTHWAVE */
/* ============================================== */

.gl-page-content {
    width: 100%;
    min-height: 100vh;
    background: var(--cyber-dark-1);
    font-family: var(--gl-font-sans);
    position: relative;
}

/* Cyber Grid Background on all pages */
.gl-page-content::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

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

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

.hero-section {
    background: linear-gradient(135deg, var(--cyber-dark-1) 0%, var(--cyber-dark-2) 50%, var(--cyber-dark-3) 100%);
    color: var(--gl-white);
    padding: var(--gl-space-4xl) var(--gl-space-xl) var(--gl-space-3xl);
    position: relative;
    overflow: hidden;
    box-shadow: var(--voxel-shadow-xl), var(--glow-cyber-cyan);
    border-bottom: 4px solid transparent;
    border-image: var(--gradient-synthwave-1);
    border-image-slice: 1;
}

/* Cyber Grid + Synthwave Waves Background */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(0, 243, 255, 0.05) 2px, transparent 2px),
        linear-gradient(rgba(0, 243, 255, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 30% 40%, rgba(0, 243, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 0, 255, 0.15) 0%, transparent 50%);
    background-size: 50px 50px, 50px 50px, 100% 100%, 100% 100%;
    pointer-events: none;
    animation: gridMoveSmall 15s linear infinite, shimmer 8s ease infinite;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--cyber-cyan), var(--cyber-purple));
    color: var(--cyber-dark-1);
    padding: var(--voxel-unit) var(--voxel-3x);
    border-radius: var(--voxel-radius-sm);
    font-size: var(--gl-text-base);
    font-weight: var(--gl-weight-bold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--gl-space-xl);
    border: 3px solid var(--cyber-cyan);
    box-shadow: var(--voxel-shadow-md), var(--glow-cyber-cyan);
    animation: badgePulse 3s ease infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: var(--gl-weight-black);
    margin-bottom: var(--gl-space-xl);
    line-height: var(--gl-leading-tight);
    letter-spacing: 0.02em;
    color: var(--cyber-cyan);
    text-shadow: 
        4px 4px 0 var(--cyber-dark-4),
        8px 8px 0 rgba(0, 0, 0, 0.3),
        0 0 40px var(--cyber-cyan);
    position: relative;
}

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

.hero-subtitle {
    font-size: var(--gl-text-2xl);
    margin-bottom: var(--gl-space-3xl);
    opacity: 0.98;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: var(--gl-leading-relaxed);
    font-weight: var(--gl-weight-medium);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary, .btn-secondary {
    padding: var(--voxel-2x) var(--voxel-4x);
    border-radius: var(--voxel-radius-sm);
    text-decoration: none;
    font-weight: var(--gl-weight-extrabold);
    font-size: var(--gl-text-lg);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--gl-space-sm);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyber-cyan), var(--cyber-blue));
    color: var(--cyber-dark-1);
    border: 3px solid var(--cyber-cyan);
    box-shadow: var(--voxel-shadow-md), var(--glow-cyber-cyan);
}

.btn-primary:hover {
    transform: translateY(-8px);
    box-shadow: var(--voxel-shadow-xl), var(--glow-cyber-cyan);
    background: linear-gradient(135deg, var(--cyber-magenta), var(--cyber-purple));
    border-color: var(--cyber-magenta);
    color: var(--gl-white);
}

.btn-secondary {
    background: transparent;
    color: var(--cyber-cyan);
    border: 3px solid var(--cyber-cyan);
    backdrop-filter: blur(20px);
    box-shadow: var(--voxel-shadow-sm);
}

.btn-secondary:hover {
    background: var(--cyber-cyan);
    color: var(--cyber-dark-1);
    transform: translateY(-8px);
    box-shadow: var(--voxel-shadow-lg), var(--glow-cyber-cyan);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    animation: statFloat 3s ease-in-out infinite;
}

.stat-item:nth-child(1) { animation-delay: 0s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.4s; }
.stat-item:nth-child(4) { animation-delay: 0.6s; }

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

.stat-number {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: var(--gl-weight-black);
    margin-bottom: var(--gl-space-sm);
    background: linear-gradient(135deg, #ffffff, #ffd6f7, #c0fdff, #69f0ae);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 5s ease infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

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

.stat-label {
    font-size: var(--gl-text-base);
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: var(--gl-weight-semibold);
}

/* ============================================== */
/* CONTENT SECTIONS */
/* ============================================== */

.content-section {
    padding: var(--gl-space-4xl) var(--gl-space-xl);
    position: relative;
    z-index: 1;
}

.content-section.alt-bg {
    background: var(--cyber-dark-2);
    border-top: 2px solid rgba(0, 243, 255, 0.1);
    border-bottom: 2px solid rgba(0, 243, 255, 0.1);
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--cyber-cyan), var(--cyber-purple));
    color: var(--cyber-dark-1);
    padding: var(--voxel-unit) var(--voxel-3x);
    border-radius: var(--voxel-radius-sm);
    border: 3px solid var(--cyber-cyan);
    font-size: var(--gl-text-base);
    font-weight: var(--gl-weight-bold);
    margin-bottom: var(--gl-space-lg);
    box-shadow: var(--voxel-shadow-md), var(--glow-cyber-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header-center h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: var(--gl-weight-black);
    color: var(--cyber-cyan);
    margin-bottom: var(--gl-space-lg);
    line-height: var(--gl-leading-tight);
    text-shadow: 
        4px 4px 0 var(--cyber-dark-4),
        0 0 30px var(--cyber-cyan);
}

.section-subtitle {
    font-size: var(--gl-text-xl);
    color: rgba(255, 255, 255, 0.75);
    max-width: 800px;
    margin: 0 auto;
    line-height: var(--gl-leading-relaxed);
    font-weight: var(--gl-weight-medium);
}

/* ============================================== */
/* TWO COLUMN LAYOUT */
/* ============================================== */

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.content-box {
    background: var(--cyber-dark-3);
    padding: var(--voxel-4x);
    border-radius: var(--voxel-radius-md);
    border: 4px solid var(--cyber-cyan);
    box-shadow: var(--voxel-shadow-md), var(--glow-cyber-cyan);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Voxel Top Face */
.content-box::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 8px;
    right: -8px;
    height: 8px;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.5), rgba(255, 0, 255, 0.5));
    border: 2px solid var(--cyber-cyan);
    border-bottom: none;
    transform: skewY(-3deg);
    pointer-events: none;
}

.content-box:hover {
    transform: translateY(-12px);
    box-shadow: var(--voxel-shadow-xl), var(--glow-cyber-cyan);
}

.content-box:hover::before {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.8), rgba(255, 0, 255, 0.8));
}

.content-box.highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(255, 107, 214, 0.1));
    border: 3px solid transparent;
    border-image: var(--gl-gradient-rainbow);
    border-image-slice: 1;
}

.box-icon {
    font-size: var(--gl-text-6xl);
    margin-bottom: var(--gl-space-lg);
    animation: iconBounce 2s ease-in-out infinite;
}

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

.content-box h3 {
    font-size: var(--gl-text-2xl);
    font-weight: var(--gl-weight-bold);
    color: var(--cyber-cyan);
    margin-bottom: var(--gl-space-md);
    text-shadow: 0 0 20px var(--cyber-cyan);
}

.content-box p {
    color: rgba(255, 255, 255, 0.85);
    line-height: var(--gl-leading-relaxed);
    margin-bottom: var(--gl-space-md);
    font-size: var(--gl-text-base);
}

/* ============================================== */
/* PROCESS GRID */
/* ============================================== */

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-card {
    background: var(--cyber-dark-3);
    padding: var(--voxel-4x);
    border-radius: var(--voxel-radius-md);
    border: 4px solid var(--cyber-cyan);
    box-shadow: var(--voxel-shadow-md);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Voxel block top face */
.process-card::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 8px;
    right: -8px;
    height: 8px;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.5), rgba(255, 0, 255, 0.5));
    border: 2px solid var(--cyber-cyan);
    border-bottom: none;
    transform: skewY(-3deg);
}

.process-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--voxel-shadow-xl), var(--glow-cyber-cyan);
    border-color: var(--cyber-magenta);
}

.process-card:hover::before {
    border-color: var(--cyber-magenta);
}

.process-number {
    position: absolute;
    top: -25px;
    right: 25px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--cyber-yellow), var(--cyber-orange));
    color: var(--cyber-dark-1);
    border: 4px solid var(--cyber-cyan);
    border-radius: var(--voxel-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--gl-weight-black);
    font-size: var(--gl-text-2xl);
    box-shadow: var(--voxel-shadow-lg), var(--glow-cyber-yellow);
    z-index: 10;
}

.process-icon {
    font-size: var(--gl-text-6xl);
    margin-bottom: var(--gl-space-lg);
    display: block;
    animation: iconFloat 3s ease-in-out infinite;
}

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

.process-card h3 {
    font-size: var(--gl-text-2xl);
    font-weight: var(--gl-weight-extrabold);
    color: var(--cyber-cyan);
    margin-bottom: var(--gl-space-md);
    text-shadow: 0 0 20px var(--cyber-cyan);
}

.process-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: var(--gl-leading-relaxed);
    font-size: var(--gl-text-base);
}

.process-detail {
    background: rgba(102, 126, 234, 0.1);
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #667eea;
}

/* ============================================== */
/* CHEMISTRY CONNECTION */
/* ============================================== */

.chemistry-connection {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.connection-visual {
    text-align: center;
    margin-bottom: 3rem;
}

.visual-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.visual-icon.large {
    font-size: 4rem;
}

.visual-plus, .visual-equals {
    font-size: 2rem;
    font-weight: 800;
    color: #764ba2;
}

.visual-labels {
    display: flex;
    justify-content: center;
    gap: 8rem;
    flex-wrap: wrap;
}

.visual-labels span {
    font-weight: 700;
    color: #667eea;
}

.connection-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.benefit-text {
    flex: 1;
    line-height: 1.7;
    color: #4a5568;
}

.benefit-text strong {
    color: #2d3748;
}

/* ============================================== */
/* CTA BOX */
/* ============================================== */

.cta-box {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--cyber-cyan), var(--cyber-blue));
    color: var(--cyber-dark-1);
    padding: var(--voxel-2x) var(--voxel-4x);
    border-radius: var(--voxel-radius-sm);
    border: 3px solid var(--cyber-cyan);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--voxel-shadow-md), var(--glow-cyber-cyan);
}

.btn-cta:hover {
    transform: translateY(-8px);
    box-shadow: var(--voxel-shadow-xl), var(--glow-cyber-cyan);
    background: linear-gradient(135deg, var(--cyber-magenta), var(--cyber-purple));
    border-color: var(--cyber-magenta);
    color: var(--gl-white);
}

/* ============================================== */
/* PLATFORMS GRID */
/* ============================================== */

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.platform-card {
    background: var(--cyber-dark-3);
    border-radius: var(--voxel-radius-md);
    border: 4px solid var(--cyber-cyan);
    padding: var(--voxel-4x);
    box-shadow: var(--voxel-shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Voxel Top Face */
.platform-card::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 8px;
    right: -8px;
    height: 8px;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.5), rgba(255, 0, 255, 0.5));
    border: 2px solid var(--cyber-cyan);
    border-bottom: none;
    transform: skewY(-3deg);
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--voxel-shadow-xl), var(--glow-cyber-cyan);
}

.platform-card.featured {
    background: var(--cyber-dark-2);
    border-color: var(--cyber-magenta);
    box-shadow: var(--voxel-shadow-lg), var(--glow-cyber-magenta);
}

.platform-card.featured::before {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.7), rgba(255, 237, 78, 0.5));
    border-color: var(--cyber-magenta);
}

.platform-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.platform-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 15px var(--cyber-cyan));
}

.platform-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--cyber-cyan);
    text-shadow: 0 0 15px var(--cyber-cyan);
}

.platform-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--cyber-yellow), var(--cyber-orange));
    color: var(--cyber-dark-1);
    padding: 0.4rem 1rem;
    border-radius: var(--voxel-radius-sm);
    border: 2px solid var(--cyber-yellow);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    box-shadow: var(--voxel-shadow-sm);
}

.platform-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--voxel-2x);
    flex-grow: 1;
}

.platform-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.platform-features li {
    padding: 0.5rem 0;
    color: #4a5568;
    font-size: 0.95rem;
}

.platform-link {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    padding: 0.8rem 1.5rem;
    border: 2px solid #667eea;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.platform-link:hover {
    background: #667eea;
    color: white;
    transform: translateX(5px);
}

/* ============================================== */
/* BENEFITS GRID */
/* ============================================== */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--cyber-dark-3);
    padding: var(--voxel-4x);
    border-radius: var(--voxel-radius-md);
    border: 4px solid var(--cyber-cyan);
    box-shadow: var(--voxel-shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Voxel Top Face */
.benefit-card::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 8px;
    right: -8px;
    height: 8px;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.5), rgba(255, 0, 255, 0.5));
    border: 2px solid var(--cyber-cyan);
    border-bottom: none;
    transform: skewY(-3deg);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--voxel-shadow-xl), var(--glow-cyber-cyan);
    border-color: var(--cyber-magenta);
}

.benefit-card:hover::before {
    border-color: var(--cyber-magenta);
}

.benefit-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cyber-cyan);
    margin-bottom: var(--voxel-2x);
    text-shadow: 0 0 15px var(--cyber-cyan);
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ============================================== */
/* CTA SECTION */
/* ============================================== */

.cta-section {
    background: var(--cyber-dark-2);
    padding: var(--gl-space-4xl) var(--gl-space-xl);
    color: white;
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-image: var(--gradient-synthwave-1);
    border-image-slice: 1;
}

/* Synthwave Background Effect */
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(0, 243, 255, 0.2) 0%,
        rgba(255, 0, 255, 0.15) 50%,
        transparent 100%
    );
    animation: ctaGlowRotate 10s linear infinite;
    pointer-events: none;
}

@keyframes ctaGlowRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: var(--voxel-2x);
    color: var(--cyber-cyan);
    text-shadow: 
        4px 4px 0 var(--cyber-dark-4),
        0 0 30px var(--cyber-cyan);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-large {
    padding: var(--voxel-3x) var(--voxel-6x);
    border-radius: var(--voxel-radius-sm);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--voxel-unit);
}

.btn-cta-large.primary {
    background: linear-gradient(135deg, var(--cyber-cyan), var(--cyber-blue));
    color: var(--cyber-dark-1);
    border: 4px solid var(--cyber-cyan);
    box-shadow: var(--voxel-shadow-lg), var(--glow-cyber-cyan);
}

.btn-cta-large.primary:hover {
    transform: translateY(-10px);
    box-shadow: var(--voxel-shadow-xl), var(--glow-synthwave);
    background: linear-gradient(135deg, var(--cyber-magenta), var(--cyber-purple));
    border-color: var(--cyber-magenta);
    color: var(--gl-white);
}

.btn-cta-large.secondary {
    background: transparent;
    color: var(--cyber-cyan);
    border: 3px solid var(--cyber-cyan);
    backdrop-filter: blur(10px);
    box-shadow: var(--voxel-shadow-sm);
}

.btn-cta-large.secondary:hover {
    background: var(--cyber-cyan);
    color: var(--cyber-dark-1);
    transform: translateY(-8px);
    box-shadow: var(--voxel-shadow-lg), var(--glow-cyber-cyan);
}

/* ============================================== */
/* RESPONSIVE DESIGN */
/* ============================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .two-column-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1.5rem 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 3rem 1.5rem;
    }
    
    .section-header-center h2 {
        font-size: 2rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .visual-item {
        gap: 1rem;
    }
    
    .visual-labels {
        gap: 2rem;
        flex-direction: column;
    }
    
    .chemistry-connection {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .visual-icon.large {
        font-size: 3rem;
    }
}

/* ============================================== */
/* FOUNDER PAGE SPECIFIC STYLES */
/* ============================================== */

.founder-page .hero-section {
    display: none;
}

.founder-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

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

.founder-hero-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.founder-profile {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.founder-avatar {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.avatar-icon {
    font-size: 5rem;
}

.founder-intro {
    text-align: left;
}

.founder-name {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.founder-title {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 0.5rem;
}

.founder-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.location-icon {
    font-size: 1.5rem;
}

.founder-quote-large {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-icon {
    font-size: 3rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.quote-author {
    font-size: 1.1rem;
    opacity: 0.9;
}

.founder-achievements {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.achievement-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.achievement-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.badge-icon {
    font-size: 1.3rem;
}

.badge-text {
    font-weight: 600;
    font-size: 0.95rem;
}

/* ============================================== */
/* TIMELINE STYLES */
/* ============================================== */

.timeline-container {
    position: relative;
    padding: 2rem 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 4rem;
}

.timeline-dot {
    position: absolute;
    left: 16px;
    top: 0;
    width: 30px;
    height: 30px;
    background: white;
    border: 4px solid #667eea;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    z-index: 1;
}

.timeline-dot.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: #764ba2;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(102, 126, 234, 0.3);
    }
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.timeline-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.timeline-description p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.highlight-box {
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.highlight-box.warning {
    background: rgba(255, 107, 107, 0.1);
    border-left: 4px solid #ff6b6b;
}

.highlight-box.info {
    background: rgba(102, 126, 234, 0.1);
    border-left: 4px solid #667eea;
}

.highlight-box.success {
    background: rgba(76, 175, 80, 0.1);
    border-left: 4px solid #4caf50;
}

.highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-box p {
    margin: 0;
}

.highlight-box strong {
    color: #2d3748;
}

.insight-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border: 2px dashed #667eea;
}

.insight-question {
    font-size: 1.1rem;
    font-style: italic;
    color: #667eea;
    font-weight: 600;
    margin: 0;
}

.achievement-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.achievement-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 8px;
    margin-bottom: 0.8rem;
}

.list-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stats-showcase {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 15px;
    min-width: 150px;
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 0.5rem;
}

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

.vision-box {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.vision-box h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.vision-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* ============================================== */
/* INFLUENCE CARD */
/* ============================================== */

.influence-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.influence-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(102, 126, 234, 0.2);
}

.influence-icon {
    font-size: 4rem;
}

.influence-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.influence-role {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 600;
}

.influence-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.influence-impact {
    background: rgba(102, 126, 234, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.influence-impact h4 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.influence-impact ul {
    list-style: none;
    padding: 0;
}

.influence-impact ul li {
    padding: 0.5rem 0;
    color: #4a5568;
}

.quote-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    padding: 1.5rem;
    border-left: 4px solid #667eea;
    border-radius: 8px;
    font-style: italic;
}

.quote-box p {
    color: #2d3748;
    font-weight: 500;
    margin: 0;
}

/* ============================================== */
/* PHILOSOPHY GRID */
/* ============================================== */

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.philosophy-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
}

.philosophy-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.philosophy-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.philosophy-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* ============================================== */
/* QUOTES SECTION */
/* ============================================== */

.quotes-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 4rem 2rem;
}

.quotes-container {
    max-width: 1000px;
    margin: 0 auto;
}

.quotes-container h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 3rem;
}

.quote-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.quote-card.featured {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.quote-mark {
    font-size: 4rem;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.quote-card .quote-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    z-index: 1;
}

.quote-attribution {
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.quote-author {
    font-weight: 700;
    font-size: 1.1rem;
}

.quote-context {
    font-size: 0.9rem;
    opacity: 0.8;
}

.quote-card.featured .quote-author,
.quote-card.featured .quote-context {
    color: rgba(255, 255, 255, 0.95);
}

/* ============================================== */
/* LEGACY SECTION */
/* ============================================== */

.legacy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.legacy-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.legacy-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.legacy-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.legacy-box p {
    color: #4a5568;
    line-height: 1.7;
}

.legacy-vision {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.legacy-vision h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.vision-text {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================== */
/* RESPONSIVE - FOUNDER PAGE */
/* ============================================== */

@media (max-width: 768px) {
    .founder-profile {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-intro {
        text-align: center;
    }
    
    .founder-name {
        font-size: 2rem;
    }
    
    .timeline-container::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-dot {
        left: 6px;
        width: 20px;
        height: 20px;
    }
    
    .timeline-title {
        font-size: 1.4rem;
    }
    
    .influence-header {
        flex-direction: column;
        text-align: center;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .legacy-content {
        grid-template-columns: 1fr;
    }
}

/* ============================================== */
/* SCIENCE PAGE STYLES */
/* ============================================== */

.neurotrophins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.neurotrophin-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.neurotrophin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.neurotrophin-card.hbdnf {
    border-top: 4px solid #667eea;
}

.neurotrophin-card.hbngf {
    border-top: 4px solid #4caf50;
}

.neurotrophin-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.neurotrophin-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.neurotrophin-full {
    font-size: 0.95rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.neurotrophin-description p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.function-list {
    background: rgba(102, 126, 234, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.function-list h4 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

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

.function-list ul li {
    padding: 0.5rem 0;
    color: #4a5568;
}

.deficiency-box {
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.deficiency-box h4 {
    font-size: 1.1rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.deficiency-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deficiency-box ul li {
    padding: 0.4rem 0;
    color: #4a5568;
}

/* Study Overview */
.study-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.study-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.study-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.study-detail h4 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.study-detail p {
    color: #4a5568;
    line-height: 1.6;
}

/* Results Section */
.results-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.results-section h3 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 2rem;
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.result-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.result-card.hbdnf-result {
    border-left: 4px solid #667eea;
}

.result-card.hbngf-result {
    border-left: 4px solid #4caf50;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.result-header h4 {
    font-size: 1.5rem;
    color: #2d3748;
}

.result-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.participant-results {
    margin-bottom: 2rem;
}

.participant-row {
    margin-bottom: 1.5rem;
}

.participant-label {
    font-weight: 600;
    color: #2d3748;
    display: block;
    margin-bottom: 0.5rem;
}

.progress-bar-result {
    width: 100%;
    height: 25px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill-result {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 12px;
    transition: width 1s ease;
}

.result-value {
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 600;
}

.statistical-info {
    background: rgba(102, 126, 234, 0.05);
    padding: 1rem;
    border-radius: 8px;
}

.statistical-info p {
    margin: 0.5rem 0;
    color: #4a5568;
    font-size: 0.9rem;
}

/* Significance Box */
.significance-box {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.significance-box h3 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 2rem;
    text-align: center;
}

.significance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.significance-point {
    text-align: center;
}

.significance-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.significance-point p {
    color: #4a5568;
    line-height: 1.7;
}

/* Implications Grid */
.implications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.implication-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.implication-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.implication-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.implication-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.implication-card h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.implication-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.comparison-box {
    background: rgba(102, 126, 234, 0.05);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.comparison-box p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

.highlight-green {
    color: #4caf50;
    font-weight: 700;
}

/* Comparison Chart */
.comparison-chart {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.chart-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.chart-row.highlight {
    background: rgba(102, 126, 234, 0.05);
    padding: 1rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.chart-label {
    font-weight: 700;
    color: #2d3748;
}

.chart-bar-container {
    width: 100%;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.chart-bar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    transition: width 1s ease;
}

.chart-bar.positive {
    background: linear-gradient(90deg, #4caf50, #45a049);
}

.chart-bar.negative {
    background: linear-gradient(90deg, #ff6b6b, #ff5252);
}

.bar-value {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
}

.chart-separator {
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.chart-conclusion {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: center;
}

.chart-conclusion p {
    color: #2d3748;
    line-height: 1.8;
    margin: 0;
}

/* Methodology Grid */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.method-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.method-card h4 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.method-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

/* Responsive - Science Page */
@media (max-width: 768px) {
    .neurotrophins-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .implications-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================== */
/* THEORY PAGE STYLES */
/* ============================================== */

.theory-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
}

/* Phase Cards */
.days-breakdown {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.phase-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.phase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.phase-card.phase-1 {
    border-top: 5px solid #667eea;
}

.phase-card.phase-2 {
    border-top: 5px solid #4caf50;
}

.phase-header {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.phase-icon {
    font-size: 4rem;
}

.phase-info h3 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.phase-days {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 700;
}

.phase-content {
    padding: 2.5rem;
}

.phase-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.phase-timeline {
    margin-bottom: 2rem;
}

.timeline-point {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.point-day {
    display: block;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.timeline-point p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.key-principles, .benefits-list {
    background: rgba(102, 126, 234, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.key-principles h4, .benefits-list h4 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.key-principles ul, .benefits-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.key-principles ul li, .benefits-list ul li {
    padding: 0.5rem 0;
    color: #4a5568;
}

.milestone-box {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.milestone-box.success {
    background: linear-gradient(135deg, #4caf50, #45a049);
}

.milestone-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.milestone-text {
    flex: 1;
    line-height: 1.6;
}

/* Science Box */
.science-box {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.science-box h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 2rem;
    text-align: center;
}

.science-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.science-point h4 {
    font-size: 1.2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.science-point p {
    color: #4a5568;
    line-height: 1.7;
}

/* Progress Chart */
.progress-chart {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.chart-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
}

.chart-visual {
    margin-bottom: 2rem;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 400px;
    gap: 1rem;
}

.bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.bar {
    width: 100%;
    background: linear-gradient(to top, #667eea, #764ba2);
    border-radius: 8px 8px 0 0;
    transition: height 1s ease;
    position: relative;
}

.bar-group.milestone .bar {
    background: linear-gradient(to top, #4caf50, #45a049);
}

.bar-group.final .bar {
    background: linear-gradient(to top, #ffd700, #ffed4e);
}

.bar-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a5568;
    text-align: center;
}

.milestone-marker {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #4caf50;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.bar-group.final .milestone-marker {
    background: #ffd700;
    color: #2d3748;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-color.phase1 {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.legend-color.phase2 {
    background: linear-gradient(135deg, #4caf50, #45a049);
}

.legend-color.complete {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
}

/* Year Journey */
.year-journey {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.year-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.year-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.year-card.highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 2px solid #667eea;
}

.year-number {
    position: absolute;
    top: -20px;
    left: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
}

.year-icon {
    font-size: 3rem;
    margin: 1rem 0;
}

.year-card h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.year-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.year-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.achievement {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Testimonial Box */
.testimonial-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
    position: relative;
}

.testimonial-box .quote-mark {
    font-size: 5rem;
    color: rgba(102, 126, 234, 0.2);
    position: absolute;
    top: 1rem;
    left: 2rem;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #2d3748;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 700;
    color: #667eea;
}

/* Five Year Stats */
.five-year-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-card .stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: #4a5568;
    font-size: 0.95rem;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.requirement-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.req-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.requirement-card h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.requirement-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.warning-box {
    background: rgba(255, 107, 107, 0.1);
    border-left: 4px solid #ff6b6b;
    padding: 2rem;
    border-radius: 10px;
}

.warning-box h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.warning-box p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* Responsive - Theory Page */
@media (max-width: 768px) {
    .phase-header {
        flex-direction: column;
        text-align: center;
    }
    
    .chart-bars {
        height: 300px;
    }
    
    .year-journey {
        grid-template-columns: 1fr;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================== */
/* STORIES PAGE STYLES */
/* ============================================== */

.featured-story {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.story-hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.story-icon {
    font-size: 5rem;
}

.story-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.story-label {
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    color: #667eea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.story-content {
    padding: 3rem;
}

.story-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.story-section:last-child {
    border-bottom: none;
}

.story-section.success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(69, 160, 73, 0.05));
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #4caf50;
}

.story-section h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.diagnosis-box {
    background: rgba(255, 107, 107, 0.1);
    border-left: 4px solid #ff6b6b;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.diagnosis-box ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.diagnosis-box ul li {
    padding: 0.5rem 0;
    color: #4a5568;
    font-weight: 600;
}

.commitment-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 10px;
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-item strong {
    display: block;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    margin: 0;
    color: #4a5568;
}

.transformation-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.transform-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 200px;
}

.transform-card.highlight {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
}

.transform-before, .transform-after {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.transform-arrow {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
}

.quote-box-story {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    margin: 2rem 0;
}

.story-conclusion {
    background: rgba(102, 126, 234, 0.05);
    padding: 2rem;
    border-radius: 15px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d3748;
}

/* Applications Grid */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.application-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.app-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.application-card h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.app-subtitle {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.app-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.app-benefits h4 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.app-benefits ul {
    list-style: none;
    padding: 0;
}

.app-benefits ul li {
    padding: 0.5rem 0;
    color: #4a5568;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.user-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.user-info {
    flex: 1;
}

.user-name {
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.3rem;
}

.user-role {
    color: #667eea;
    font-size: 0.9rem;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: #4a5568;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-results {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.result-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Stats Showcase Large */
.stats-showcase-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item-large {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.stat-number-large {
    font-size: 3rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label-large {
    font-size: 1.1rem;
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stat-description {
    color: #4a5568;
    line-height: 1.6;
}

/* ============================================== */
/* CONTACT PAGE STYLES */
/* ============================================== */

.quick-start-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.quick-start-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.quick-start-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.quick-start-card.highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 2px solid #667eea;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.step-icon {
    font-size: 3.5rem;
    margin: 1rem 0;
}

.quick-start-card h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.quick-start-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Membership Section */
.membership-notice {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 3rem;
}

.membership-notice h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.platforms-membership h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 1rem;
    text-align: center;
}

.platforms-membership > p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 3rem;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.membership-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.membership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.membership-card.featured {
    border: 3px solid #667eea;
}

.platform-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #4caf50;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.membership-card h3 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.platform-url {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 2rem;
}

.platform-features {
    margin-bottom: 2rem;
}

.platform-features ul {
    list-style: none;
    padding: 0;
}

.platform-features ul li {
    padding: 0.5rem 0;
    color: #4a5568;
}

.pricing-options {
    background: rgba(102, 126, 234, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.price-option {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-option:last-child {
    border-bottom: none;
}

.price-label {
    font-weight: 600;
    color: #2d3748;
}

.price-value {
    color: #667eea;
    font-weight: 700;
}

.membership-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #667eea;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.membership-btn:hover {
    background: #764ba2;
    transform: translateY(-2px);
    color: white;
}

.membership-btn.primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

/* Enterprise Section */
.enterprise-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
}

.enterprise-section h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.enterprise-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.enterprise-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.enterprise-icon {
    font-size: 1.5rem;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info h3, .contact-form-container h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #667eea;
    text-decoration: none;
}

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

.social-links-contact h4 {
    margin-bottom: 1rem;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-btn {
    padding: 0.8rem;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #667eea;
    color: white;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.form-note {
    font-size: 0.9rem;
    color: #4a5568;
    text-align: center;
    margin: 0;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
}

/* Responsive - Stories & Contact */
@media (max-width: 768px) {
    .story-hero {
        flex-direction: column;
    }
    
    .story-meta {
        flex-direction: column;
        width: 100%;
    }
    
    .applications-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .membership-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================== */
/* ADVANCED PAGE ANIMATIONS */
/* ============================================== */

/* Stagger Animation for Lists */
.stagger-fade-in > *:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.1s forwards;
    opacity: 0;
}

.stagger-fade-in > *:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

.stagger-fade-in > *:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
    opacity: 0;
}

.stagger-fade-in > *:nth-child(4) {
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
    opacity: 0;
}

.stagger-fade-in > *:nth-child(5) {
    animation: fadeInUp 0.6s ease-out 0.5s forwards;
    opacity: 0;
}

.stagger-fade-in > *:nth-child(6) {
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
    opacity: 0;
}

/* Parallax Scroll Effect */
.parallax-slow {
    transform: translateY(var(--parallax-offset, 0));
    transition: transform 0.3s ease-out;
}

/* Card Flip Animation */
.card-flip {
    perspective: 1000px;
}

.card-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

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

.card-flip-front,
.card-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.card-flip-back {
    transform: rotateY(180deg);
}

/* Typewriter Effect */
.typewriter {
    overflow: hidden;
    border-right: 3px solid var(--gl-primary);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

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

@keyframes blink-caret {
    from,
    to {
        border-color: transparent;
    }
    50% {
        border-color: var(--gl-primary);
    }
}

/* Magnetic Hover Effect */
.magnetic {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.magnetic:hover {
    transform: translate(var(--mouse-x, 0), var(--mouse-y, 0));
}

/* Tilt Effect */
.tilt {
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

.tilt:hover {
    transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 2s infinite;
    color: var(--gl-cyan);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 2s infinite;
    color: var(--gl-pink);
    z-index: -2;
}

@keyframes glitch-1 {
    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);
    }
}

@keyframes glitch-2 {
    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);
    }
}

/* Neon Glow Text */
.neon-text {
    color: var(--gl-white);
    text-shadow: 0 0 10px var(--gl-primary), 0 0 20px var(--gl-primary), 0 0 30px var(--gl-primary),
        0 0 40px var(--gl-cyan), 0 0 70px var(--gl-cyan), 0 0 80px var(--gl-cyan), 0 0 100px var(--gl-cyan);
    animation: neonFlicker 1.5s infinite alternate;
}

@keyframes neonFlicker {
    0%,
    18%,
    22%,
    25%,
    53%,
    57%,
    100% {
        text-shadow: 0 0 10px var(--gl-primary), 0 0 20px var(--gl-primary), 0 0 30px var(--gl-primary),
            0 0 40px var(--gl-cyan), 0 0 70px var(--gl-cyan), 0 0 80px var(--gl-cyan), 0 0 100px var(--gl-cyan);
    }
    20%,
    24%,
    55% {
        text-shadow: none;
    }
}

/* Wave Animation */
.wave {
    animation: wave 1.5s ease-in-out infinite;
}

@keyframes wave {
    0%,
    100% {
        transform: rotate(0deg);
    }
    10%,
    30% {
        transform: rotate(14deg);
    }
    20% {
        transform: rotate(-8deg);
    }
    40% {
        transform: rotate(-4deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

/* Heartbeat Animation */
.heartbeat {
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%,
    100% {
        transform: scale(1);
    }
    10%,
    30% {
        transform: scale(1.1);
    }
    20%,
    40% {
        transform: scale(0.95);
    }
}

/* Wobble Animation */
.wobble {
    animation: wobble 1s ease-in-out;
}

@keyframes wobble {
    0%,
    100% {
        transform: translateX(0);
    }
    15% {
        transform: translateX(-25px) rotate(-5deg);
    }
    30% {
        transform: translateX(20px) rotate(3deg);
    }
    45% {
        transform: translateX(-15px) rotate(-3deg);
    }
    60% {
        transform: translateX(10px) rotate(2deg);
    }
    75% {
        transform: translateX(-5px) rotate(-1deg);
    }
}

/* Swing Animation */
.swing {
    animation: swing 2s ease-in-out infinite;
    transform-origin: top center;
}

@keyframes swing {
    0%,
    100% {
        transform: rotate(0deg);
    }
    20% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(5deg);
    }
    80% {
        transform: rotate(-5deg);
    }
}

/* Zoom Pulse */
.zoom-pulse {
    animation: zoomPulse 2s ease-in-out infinite;
}

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

/* Flash Animation */
.flash {
    animation: flash 2s ease-in-out infinite;
}

@keyframes flash {
    0%,
    50%,
    100% {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}

/* Performance Optimization */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================== */
/* MAGAZINE-STYLE COMPONENTS */
/* ============================================== */

/* Feature Article Layout */
.feature-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gl-space-3xl);
    align-items: center;
    margin: var(--gl-space-4xl) 0;
    padding: var(--gl-space-3xl);
    background: var(--gl-white);
    border-radius: var(--gl-radius-2xl);
    box-shadow: var(--gl-shadow-xl);
    position: relative;
    overflow: hidden;
}

.feature-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gl-gradient-rainbow);
}

.feature-article.reverse {
    grid-template-columns: 1fr 1fr;
}

.feature-article.reverse .feature-content {
    order: 2;
}

.feature-article.reverse .feature-image {
    order: 1;
}

.feature-image {
    width: 100%;
    height: 400px;
    border-radius: var(--gl-radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--gl-shadow-lg);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--gl-transition-slow);
}

.feature-article:hover .feature-image img {
    transform: scale(1.1);
}

.feature-content {
    padding: var(--gl-space-xl);
}

.feature-category {
    display: inline-block;
    background: var(--gl-gradient-neon);
    color: var(--gl-white);
    padding: var(--gl-space-sm) var(--gl-space-lg);
    border-radius: var(--gl-radius-full);
    font-size: var(--gl-text-sm);
    font-weight: var(--gl-weight-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--gl-space-lg);
}

.feature-title {
    font-size: var(--gl-text-4xl);
    font-weight: var(--gl-weight-black);
    line-height: var(--gl-leading-tight);
    margin-bottom: var(--gl-space-lg);
    background: var(--gl-gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-excerpt {
    font-size: var(--gl-text-lg);
    line-height: var(--gl-leading-relaxed);
    color: var(--gl-dark-medium);
    margin-bottom: var(--gl-space-xl);
}

.feature-meta {
    display: flex;
    gap: var(--gl-space-lg);
    align-items: center;
    font-size: var(--gl-text-sm);
    color: var(--gl-gray);
}

/* Pull Quote */
.pull-quote {
    position: relative;
    padding: var(--gl-space-2xl) var(--gl-space-3xl);
    margin: var(--gl-space-3xl) 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(255, 107, 214, 0.05));
    border-left: 6px solid var(--gl-primary);
    border-radius: var(--gl-radius-lg);
}

.pull-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    font-weight: var(--gl-weight-black);
    color: var(--gl-primary);
    opacity: 0.1;
    line-height: 1;
}

.pull-quote-text {
    font-size: var(--gl-text-2xl);
    font-weight: var(--gl-weight-semibold);
    line-height: var(--gl-leading-relaxed);
    color: var(--gl-dark);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.pull-quote-author {
    margin-top: var(--gl-space-lg);
    font-size: var(--gl-text-lg);
    font-weight: var(--gl-weight-bold);
    color: var(--gl-primary);
}

/* Stats Grid Magazine Style */
.stats-magazine {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--gl-space-2xl);
    margin: var(--gl-space-3xl) 0;
}

.stat-magazine-item {
    text-align: center;
    padding: var(--gl-space-2xl);
    background: var(--gl-white);
    border-radius: var(--gl-radius-xl);
    box-shadow: var(--gl-shadow-md);
    transition: var(--gl-transition-bounce);
    position: relative;
    overflow: hidden;
}

.stat-magazine-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gl-gradient-rainbow);
}

.stat-magazine-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--gl-shadow-xl), var(--gl-glow-primary);
}

.stat-magazine-number {
    font-size: var(--gl-text-6xl);
    font-weight: var(--gl-weight-black);
    background: var(--gl-gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--gl-space-md);
}

.stat-magazine-label {
    font-size: var(--gl-text-lg);
    font-weight: var(--gl-weight-semibold);
    color: var(--gl-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-magazine-description {
    margin-top: var(--gl-space-sm);
    font-size: var(--gl-text-base);
    color: var(--gl-gray);
    line-height: var(--gl-leading-relaxed);
}

/* Timeline Magazine Style */
.timeline-magazine {
    position: relative;
    padding: var(--gl-space-3xl) 0;
}

.timeline-magazine::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gl-gradient-rainbow);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: var(--gl-space-3xl);
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: calc(50% - 40px);
    background: var(--gl-white);
    padding: var(--gl-space-2xl);
    border-radius: var(--gl-radius-xl);
    box-shadow: var(--gl-shadow-lg);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 60px;
    height: 60px;
    background: var(--gl-gradient-rainbow);
    border: 6px solid var(--gl-white);
    border-radius: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--gl-text-xl);
    font-weight: var(--gl-weight-black);
    color: var(--gl-white);
    box-shadow: var(--gl-shadow-lg), var(--gl-glow-primary);
    z-index: 2;
}

.timeline-date {
    font-size: var(--gl-text-sm);
    font-weight: var(--gl-weight-bold);
    color: var(--gl-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--gl-space-sm);
}

.timeline-title {
    font-size: var(--gl-text-2xl);
    font-weight: var(--gl-weight-bold);
    color: var(--gl-dark);
    margin-bottom: var(--gl-space-md);
}

.timeline-description {
    font-size: var(--gl-text-base);
    line-height: var(--gl-leading-relaxed);
    color: var(--gl-gray);
}

/* Image Gallery Magazine */
.image-gallery-magazine {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--gl-space-lg);
    margin: var(--gl-space-3xl) 0;
}

.gallery-item {
    position: relative;
    border-radius: var(--gl-radius-xl);
    overflow: hidden;
    box-shadow: var(--gl-shadow-lg);
    transition: var(--gl-transition-base);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--gl-shadow-2xl);
    z-index: 10;
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: var(--gl-space-xl);
    transform: translateY(100%);
    transition: var(--gl-transition-base);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    color: var(--gl-white);
    font-size: var(--gl-text-xl);
    font-weight: var(--gl-weight-bold);
    margin-bottom: var(--gl-space-sm);
}

.gallery-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--gl-text-sm);
}

/* Info Box Magazine Style */
.info-box-magazine {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(255, 107, 214, 0.1));
    border: 3px solid transparent;
    border-image: var(--gl-gradient-rainbow);
    border-image-slice: 1;
    border-radius: var(--gl-radius-xl);
    padding: var(--gl-space-2xl);
    margin: var(--gl-space-2xl) 0;
    position: relative;
}

.info-box-icon {
    font-size: var(--gl-text-5xl);
    margin-bottom: var(--gl-space-lg);
}

.info-box-title {
    font-size: var(--gl-text-2xl);
    font-weight: var(--gl-weight-bold);
    color: var(--gl-dark);
    margin-bottom: var(--gl-space-md);
}

.info-box-content {
    font-size: var(--gl-text-lg);
    line-height: var(--gl-leading-relaxed);
    color: var(--gl-dark-medium);
}

/* Testimonial Card Magazine */
.testimonial-magazine {
    background: var(--gl-white);
    padding: var(--gl-space-3xl);
    border-radius: var(--gl-radius-2xl);
    box-shadow: var(--gl-shadow-xl);
    position: relative;
    margin: var(--gl-space-2xl) 0;
}

.testimonial-magazine::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 10rem;
    font-weight: var(--gl-weight-black);
    background: var(--gl-gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.1;
}

.testimonial-text-magazine {
    font-size: var(--gl-text-xl);
    line-height: var(--gl-leading-loose);
    color: var(--gl-dark);
    font-style: italic;
    margin-bottom: var(--gl-space-2xl);
    position: relative;
    z-index: 1;
}

.testimonial-author-magazine {
    display: flex;
    align-items: center;
    gap: var(--gl-space-lg);
}

.author-avatar-magazine {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gl-gradient-rainbow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--gl-text-3xl);
    color: var(--gl-white);
    box-shadow: var(--gl-shadow-md);
}

.author-info-magazine h4 {
    font-size: var(--gl-text-xl);
    font-weight: var(--gl-weight-bold);
    color: var(--gl-dark);
    margin-bottom: var(--gl-space-xs);
}

.author-info-magazine p {
    font-size: var(--gl-text-base);
    color: var(--gl-gray);
}

/* Magazine Grid Layout */
.magazine-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gl-space-xl);
    margin: var(--gl-space-3xl) 0;
}

.magazine-grid-item-large {
    grid-column: span 8;
}

.magazine-grid-item-medium {
    grid-column: span 4;
}

.magazine-grid-item-small {
    grid-column: span 6;
}

.magazine-grid-item-full {
    grid-column: span 12;
}

/* Responsive Magazine Layouts */
@media (max-width: 1024px) {
    .feature-article {
        grid-template-columns: 1fr;
    }
    
    .timeline-magazine::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .magazine-grid-item-large,
    .magazine-grid-item-medium,
    .magazine-grid-item-small {
        grid-column: span 12;
    }
}

@media (max-width: 768px) {
    .pull-quote {
        padding: var(--gl-space-xl);
    }
    
    .pull-quote-text {
        font-size: var(--gl-text-xl);
    }
    
    .stat-magazine-number {
        font-size: var(--gl-text-4xl);
    }
    
    .feature-title {
        font-size: var(--gl-text-3xl);
    }
}

/* ============================================== */
/* ADVANCED RESPONSIVE DESIGN SYSTEM */
/* ============================================== */

/* Responsive Utility Classes */
.show-mobile {
    display: none;
}

.show-tablet {
    display: none;
}

.show-desktop {
    display: block;
}

/* Container Responsive Sizes */
.gl-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--gl-space-2xl);
}

.gl-container-wide {
    max-width: 1400px;
}

.gl-container-narrow {
    max-width: 900px;
}

.gl-container-fluid {
    max-width: 100%;
    padding: 0 var(--gl-space-xl);
}

/* Responsive Typography */
.responsive-heading-xl {
    font-size: clamp(2.5rem, 5vw + 1rem, 5rem);
}

.responsive-heading-lg {
    font-size: clamp(2rem, 4vw + 1rem, 4rem);
}

.responsive-heading-md {
    font-size: clamp(1.5rem, 3vw + 1rem, 3rem);
}

.responsive-heading-sm {
    font-size: clamp(1.25rem, 2vw + 1rem, 2rem);
}

.responsive-text {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
}

/* Responsive Grid System */
.responsive-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gl-space-xl);
}

.responsive-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gl-space-xl);
}

.responsive-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gl-space-xl);
}

/* Responsive Spacing */
.responsive-padding {
    padding: clamp(1rem, 3vw, 3rem);
}

.responsive-padding-x {
    padding-left: clamp(1rem, 3vw, 3rem);
    padding-right: clamp(1rem, 3vw, 3rem);
}

.responsive-padding-y {
    padding-top: clamp(1rem, 3vw, 3rem);
    padding-bottom: clamp(1rem, 3vw, 3rem);
}

.responsive-margin {
    margin: clamp(1rem, 3vw, 3rem);
}

.responsive-gap {
    gap: clamp(1rem, 2vw, 2rem);
}

/* ============================================== */
/* TABLET RESPONSIVE (768px - 1024px) */
/* ============================================== */

@media (min-width: 769px) and (max-width: 1024px) {
    .show-tablet {
        display: block;
    }
    
    .hide-tablet {
        display: none;
    }
    
    /* Tablet Container */
    .gl-container {
        padding: 0 var(--gl-space-xl);
    }
    
    /* Tablet Typography */
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 2vw, 1.5rem);
    }
    
    /* Tablet Grids */
    .responsive-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .responsive-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Tablet Hero */
    .hero-section {
        padding: 4rem 2rem 3rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--gl-space-xl);
    }
    
    /* Tablet Content Box */
    .content-box {
        padding: var(--gl-space-xl);
    }
    
    /* Tablet Process Cards */
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================== */
/* MOBILE RESPONSIVE (< 768px) */
/* ============================================== */

@media (max-width: 768px) {
    .show-mobile {
        display: block;
    }
    
    .hide-mobile {
        display: none !important;
    }
    
    .show-desktop {
        display: none;
    }
    
    /* Mobile Container */
    .gl-container,
    .gl-container-wide,
    .gl-container-narrow {
        padding: 0 var(--gl-space-lg);
    }
    
    /* Mobile Typography */
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        letter-spacing: -0.02em;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.25rem);
        line-height: var(--gl-leading-relaxed);
    }
    
    .hero-badge {
        font-size: var(--gl-text-xs);
        padding: var(--gl-space-xs) var(--gl-space-md);
    }
    
    /* Mobile Hero Section */
    .hero-section {
        padding: 3rem 1rem 2rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--gl-space-md);
        width: 100%;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--gl-space-lg);
    }
    
    /* Mobile Content Layout */
    .content-section {
        padding: var(--gl-space-2xl) var(--gl-space-lg);
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: var(--gl-space-lg);
    }
    
    .section-subtitle {
        font-size: var(--gl-text-base);
        margin-bottom: var(--gl-space-xl);
    }
    
    /* Mobile Content Box */
    .content-box {
        padding: var(--gl-space-lg);
        margin-bottom: var(--gl-space-lg);
    }
    
    .content-box-icon {
        font-size: var(--gl-text-4xl);
        margin-bottom: var(--gl-space-md);
    }
    
    .content-box h3 {
        font-size: var(--gl-text-xl);
        margin-bottom: var(--gl-space-sm);
    }
    
    .content-box p {
        font-size: var(--gl-text-sm);
    }
    
    /* Mobile Grids */
    .responsive-grid-2,
    .responsive-grid-3,
    .responsive-grid-4,
    .two-column-section,
    .process-grid {
        grid-template-columns: 1fr;
        gap: var(--gl-space-lg);
    }
    
    /* Mobile Process Cards */
    .process-card {
        padding: var(--gl-space-lg);
    }
    
    .process-number {
        width: 60px;
        height: 60px;
        font-size: var(--gl-text-2xl);
    }
    
    .process-title {
        font-size: var(--gl-text-xl);
    }
    
    /* Mobile Navigation Fix */
    .gl-nav-menu {
        padding: var(--gl-space-lg) 0;
    }
    
    .gl-nav-link {
        padding: var(--gl-space-md) var(--gl-space-lg);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    /* Mobile Footer */
    .gl-footer-container {
        grid-template-columns: 1fr;
        gap: var(--gl-space-xl);
        text-align: center;
    }
    
    .gl-footer-section h3 {
        font-size: var(--gl-text-lg);
    }
    
    /* Mobile Images */
    .feature-image {
        height: 250px;
    }
    
    /* Mobile Buttons */
    .btn-large {
        padding: var(--gl-space-md) var(--gl-space-xl);
        font-size: var(--gl-text-base);
    }
    
    /* Mobile Cards */
    .card,
    .testimonial-card,
    .stat-card {
        margin-bottom: var(--gl-space-lg);
    }
}

/* ============================================== */
/* SMALL MOBILE (< 480px) */
/* ============================================== */

@media (max-width: 480px) {
    /* Extra Small Typography */
    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: var(--gl-text-sm);
    }
    
    /* Extra Small Spacing */
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .content-section {
        padding: var(--gl-space-xl) var(--gl-space-md);
    }
    
    .gl-container {
        padding: 0 var(--gl-space-md);
    }
    
    /* Extra Small Buttons */
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: var(--gl-space-sm) var(--gl-space-lg);
        font-size: var(--gl-text-sm);
    }
    
    /* Extra Small Cards */
    .content-box,
    .process-card {
        padding: var(--gl-space-md);
    }
    
    /* Extra Small Stats */
    .stat-number {
        font-size: var(--gl-text-3xl);
    }
    
    .stat-label {
        font-size: var(--gl-text-xs);
    }
    
    /* Extra Small Process */
    .process-number {
        width: 50px;
        height: 50px;
        font-size: var(--gl-text-xl);
    }
    
    /* Reduce Animations on Small Screens */
    .content-box:hover,
    .process-card:hover {
        transform: translateY(-5px);
    }
}

/* ============================================== */
/* LANDSCAPE MOBILE SPECIFIC */
/* ============================================== */

@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        margin-bottom: var(--gl-space-sm);
    }
    
    .hero-subtitle {
        font-size: var(--gl-text-sm);
        margin-bottom: var(--gl-space-md);
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: var(--gl-space-sm);
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--gl-space-sm);
    }
}

/* ============================================== */
/* TOUCH DEVICE OPTIMIZATIONS */
/* ============================================== */

@media (hover: none) and (pointer: coarse) {
    /* Larger Touch Targets */
    .hero-btn-primary,
    .hero-btn-secondary,
    .gl-nav-link,
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove Hover Effects on Touch */
    .content-box:hover,
    .process-card:hover {
        transform: none;
        box-shadow: var(--gl-shadow-lg);
    }
    
    /* Add Active States Instead */
    .content-box:active,
    .process-card:active {
        transform: scale(0.98);
    }
    
    /* Better Button Feedback */
    .hero-btn-primary:active,
    .hero-btn-secondary:active {
        transform: scale(0.96);
    }
}

/* ============================================== */
/* HIGH DPI SCREENS */
/* ============================================== */

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Sharper Borders */
    .content-box,
    .process-card,
    .hero-btn-primary {
        border-width: 0.5px;
    }
    
    /* Crisper Shadows */
    .content-box {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08),
                    0 8px 24px rgba(102, 126, 234, 0.12);
    }
}

/* ============================================== */
/* PRINT STYLES */
/* ============================================== */

@media print {
    .gl-top-banner,
    .gl-nav-bar,
    .gl-footer,
    .hero-buttons,
    .hide-print {
        display: none !important;
    }
    
    .content-section {
        page-break-inside: avoid;
    }
    
    .content-box {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    body {
        background: white;
    }
    
    .hero-title,
    .section-title {
        color: #000;
    }
}

/* ============================================== */
/* PERFORMANCE OPTIMIZATIONS */
/* ============================================== */

/* Hardware Acceleration */
.hw-accelerated {
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Optimize Animations */
.will-animate {
    will-change: transform, opacity;
}

.will-animate-done {
    will-change: auto;
}

/* CSS Containment */
.contain-layout {
    contain: layout;
}

.contain-paint {
    contain: paint;
}

.contain-strict {
    contain: strict;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Scroll Padding for Fixed Headers */
html {
    scroll-padding-top: 100px;
}

/* GPU Compositing for Heavy Elements */
.gpu-composite {
    transform: translate3d(0, 0, 0);
}

/* Lazy Load Placeholder */
.lazy-load {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

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

/* Image Loading */
img {
    image-rendering: auto;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
}

/* ============================================== */
/* LOADING STATES */
/* ============================================== */

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gl-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(102, 126, 234, 0.2);
    border-top-color: var(--gl-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    margin-top: var(--gl-space-xl);
    font-size: var(--gl-text-lg);
    font-weight: var(--gl-weight-semibold);
    background: var(--gl-gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Skeleton Loader */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--gl-radius-md);
}

@keyframes skeleton-loading {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.skeleton-text {
    height: 1rem;
    margin-bottom: var(--gl-space-sm);
}

.skeleton-title {
    height: 2rem;
    width: 60%;
    margin-bottom: var(--gl-space-md);
}

.skeleton-image {
    height: 200px;
    width: 100%;
}

.skeleton-button {
    height: 3rem;
    width: 120px;
    border-radius: var(--gl-radius-full);
}

/* Content Loading State */
.content-loading {
    opacity: 0.6;
    pointer-events: none;
    user-select: none;
}

/* ============================================== */
/* ACCESSIBILITY IMPROVEMENTS */
/* ============================================== */

/* Focus Visible */
*:focus-visible {
    outline: 3px solid var(--gl-primary);
    outline-offset: 2px;
    border-radius: var(--gl-radius-sm);
}

/* Skip to Content */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--gl-primary);
    color: var(--gl-white);
    padding: var(--gl-space-md) var(--gl-space-lg);
    border-radius: var(--gl-radius-md);
    font-weight: var(--gl-weight-bold);
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: var(--gl-space-lg);
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .content-box,
    .process-card,
    .hero-btn-primary {
        border: 2px solid currentColor;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --gl-white: #1a1a1a;
        --gl-dark: #ffffff;
        --gl-dark-light: #e0e0e0;
        --gl-dark-medium: #cccccc;
        --gl-gray: #b0b0b0;
        --gl-light: #2a2a2a;
    }
    
    body {
        background: #0a0a0a;
        color: #ffffff;
    }
    
    .content-box,
    .process-card {
        background: #1a1a1a;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* ============================================== */
/* UTILITY CLASSES */
/* ============================================== */

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }

.font-light { font-weight: var(--gl-weight-light); }
.font-normal { font-weight: var(--gl-weight-normal); }
.font-medium { font-weight: var(--gl-weight-medium); }
.font-semibold { font-weight: var(--gl-weight-semibold); }
.font-bold { font-weight: var(--gl-weight-bold); }
.font-extrabold { font-weight: var(--gl-weight-extrabold); }
.font-black { font-weight: var(--gl-weight-black); }

/* Spacing Utilities */
.m-0 { margin: 0; }
.mt-auto { margin-top: auto; }
.mb-auto { margin-bottom: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

.p-0 { padding: 0; }

/* Display Utilities */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }

/* Flexbox Utilities */
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }

.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-none { flex: none; }

/* Position Utilities */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

/* Overflow Utilities */
.overflow-auto { overflow: auto; }
.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }
.overflow-scroll { overflow: scroll; }

/* Border Radius Utilities */
.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: var(--gl-radius-sm); }
.rounded { border-radius: var(--gl-radius-md); }
.rounded-lg { border-radius: var(--gl-radius-lg); }
.rounded-xl { border-radius: var(--gl-radius-xl); }
.rounded-2xl { border-radius: var(--gl-radius-2xl); }
.rounded-full { border-radius: var(--gl-radius-full); }

/* Shadow Utilities */
.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: var(--gl-shadow-sm); }
.shadow { box-shadow: var(--gl-shadow-md); }
.shadow-lg { box-shadow: var(--gl-shadow-lg); }
.shadow-xl { box-shadow: var(--gl-shadow-xl); }
.shadow-2xl { box-shadow: var(--gl-shadow-2xl); }

/* Cursor Utilities */
.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }
.cursor-wait { cursor: wait; }
.cursor-move { cursor: move; }

/* User Select Utilities */
.select-none { user-select: none; }
.select-text { user-select: text; }
.select-all { user-select: all; }

/* Pointer Events */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* ============================================== */
/* SMOOTH TRANSITIONS */
/* ============================================== */

.transition-none { transition: none; }
.transition-all { transition: all var(--gl-transition-base); }
.transition-colors { transition: color var(--gl-transition-base), background-color var(--gl-transition-base), border-color var(--gl-transition-base); }
.transition-opacity { transition: opacity var(--gl-transition-base); }
.transition-transform { transition: transform var(--gl-transition-base); }

/* ============================================== */
/* FINAL POLISH */
/* ============================================== */

/* Gradient Text Utility */
.gradient-text {
    background: var(--gl-gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Glow Effect */
.glow-primary {
    box-shadow: 0 0 20px var(--gl-primary), 0 0 40px var(--gl-primary);
}

.glow-rainbow {
    box-shadow: var(--gl-glow-rainbow);
}

/* Truncate Text */
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Aspect Ratio */
.aspect-square {
    aspect-ratio: 1 / 1;
}

.aspect-video {
    aspect-ratio: 16 / 9;
}

/* Z-Index Scale */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-auto { z-index: auto; }

/* Opacity Scale */
.opacity-0 { opacity: 0; }
.opacity-25 { opacity: 0.25; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

/* Width Utilities */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-fit { width: fit-content; }

/* Height Utilities */
.h-full { height: 100%; }
.h-auto { height: auto; }
.h-screen { height: 100vh; }

/* Min/Max Width */
.max-w-full { max-width: 100%; }
.min-w-0 { min-width: 0; }

/* Object Fit */
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }
.object-fill { object-fit: fill; }

/* ============================================== */
/* PERFORMANCE HINT */
/* ============================================== */

/* Critical CSS - Above the fold content */
.critical {
    contain: layout style paint;
}

/* Defer Non-Critical */
.defer-load {
    content-visibility: auto;
    contain-intrinsic-size: 500px;
}

/* ============================================== */
/* END OF STYLESHEET */
/* ============================================== */

