/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #8B0000;
    margin-bottom: 0.25rem;
}

.tagline {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}
/* Logo with SVG integration */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-svg {
    height: 60px;
    width: auto;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

/* Mobile logo adjustments */
@media (max-width: 768px) {
    .logo {
        gap: 0.75rem;
    }
    
    .logo-svg {
        height: 50px;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .tagline {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .logo {
        gap: 0.5rem;
    }
    
    .logo-svg {
        height: 45px;
    }
    
    .logo h1 {
        font-size: 1.1rem;
    }
    
    .tagline {
        font-size: 0.7rem;
    }
}


.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #CD212A;
}

/* Hero Section - Completely Redesigned */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 8rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* Floating Elements Animation */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.float-1 { top: 10%; left: 10%; animation-delay: 0s; }
.float-2 { top: 20%; right: 15%; animation-delay: 1s; }
.float-3 { top: 60%; left: 5%; animation-delay: 2s; }
.float-4 { bottom: 30%; right: 10%; animation-delay: 3s; }
.float-5 { bottom: 10%; left: 20%; animation-delay: 4s; }
.float-6 { top: 40%; right: 5%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Gradient Orbs */
.gradient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.orb {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(40px);
}

/* Market Opportunity Section - Removed duplicate, using enhanced version below */

.market-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.market-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.market-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.market-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Simplified 3-card grid layout */
.market-stats-grid.simplified {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Business Value Section Styling */
.business-value-section {
    margin: 80px 0 !important;
    padding: 60px 40px !important;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05), rgba(139, 0, 0, 0.02)) !important;
    border-radius: 30px !important;
    border: 1px solid rgba(139, 0, 0, 0.1) !important;
    display: block !important;
}

.value-proposition {
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    display: block !important;
}

.value-proposition h3 {
    font-size: 2.2rem !important;
    color: #8B0000 !important;
    margin-bottom: 15px !important;
    font-weight: 700 !important;
    display: block !important;
}

.value-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    font-weight: 400;
}

.value-points {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 40px !important;
    margin-top: 40px !important;
}

.value-point {
    display: flex !important;
    align-items: flex-start !important;
    gap: 20px !important;
    text-align: left !important;
    padding: 30px !important;
    background: rgba(255, 255, 255, 0.8) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(139, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
}

.value-point:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 30px rgba(139, 0, 0, 0.1) !important;
    background: rgba(255, 255, 255, 0.95) !important;
}

.point-icon {
    font-size: 2.5rem !important;
    flex-shrink: 0 !important;
    margin-top: 5px !important;
    display: block !important;
}

.point-content h4 {
    font-size: 1.3rem !important;
    color: #8B0000 !important;
    margin-bottom: 10px !important;
    font-weight: 600 !important;
    display: block !important;
}

.point-content p {
    color: #555 !important;
    line-height: 1.6 !important;
    font-size: 1rem !important;
    display: block !important;
}

@media (max-width: 480px) {
    .opportunity-metrics {
        flex-direction: column;
        gap: 15px;
    }
    
    .metric-separator {
        transform: rotate(90deg);
        font-size: 1.2rem;
    }
    
    .metric-highlight.primary {
        transform: scale(1);
    }
}

.point-content p {
    line-height: 1.6;
    font-size: 1rem;
}

/* Mobile responsive for business value section */
@media (max-width: 768px) {
    .business-value-section {
        margin: 60px 0;
        padding: 40px 20px;
    }
    
    .value-proposition h3 {
        font-size: 1.8rem;
    }
    
    .value-subtitle {
        font-size: 1.1rem;
    }
    
    .value-points {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .value-point {
        padding: 25px 20px;
    }
    
    .point-icon {
        font-size: 2rem;
    }
    
    .market-stats-grid.simplified {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card.primary {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(78, 205, 196, 0.2));
    border: 1px solid rgba(255, 107, 107, 0.3);
    transform: scale(1.05);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.stat-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ff6b6b;
}

.stat-content p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.stat-growth {
    display: inline-block;
    background: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.market-insights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.insight-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.insight-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.insight-card h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #4ecdc4;
    display: flex;
    align-items: center;
    gap: 10px;
}

.insight-card ul {
    list-style: none;
    padding: 0;
}

.insight-card li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 20px;
}

.insight-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

.insight-card li:last-child {
    border-bottom: none;
}

.market-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #4ecdc4;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .market-header h2 {
        font-size: 2rem;
    }
    
    .market-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card.primary {
        transform: none;
    }
    
    .market-insights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-content {
        padding: 30px 20px;
    }
}
/* Enhanced Market Opportunity Section with Animations */
.market-opportunity {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Floating Background Elements */
.floating-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: -10s;
}

.shape-4 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: -15s;
}

.shape-5 {
    width: 120px;
    height: 120px;
    top: 80%;
    left: 60%;
    animation-delay: -7s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    25% { transform: translateY(-20px) rotate(90deg); opacity: 0.5; }
    50% { transform: translateY(-40px) rotate(180deg); opacity: 0.3; }
    75% { transform: translateY(-20px) rotate(270deg); opacity: 0.5; }
}

/* Animated Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(78, 205, 196, 0.6);
    border-radius: 50%;
    animation: particle-float 15s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: -2s; }
.particle:nth-child(3) { left: 30%; animation-delay: -4s; }
.particle:nth-child(4) { left: 60%; animation-delay: -6s; }
.particle:nth-child(5) { left: 80%; animation-delay: -8s; }
.particle:nth-child(6) { left: 90%; animation-delay: -10s; }

@keyframes particle-float {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* Enhanced Header */
.market-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 3;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    animation: badge-glow 2s ease-in-out infinite alternate;
}

.badge-icon {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

.badge-text {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes badge-glow {
    0% { box-shadow: 0 0 20px rgba(255, 107, 107, 0.3); }
    100% { box-shadow: 0 0 30px rgba(255, 107, 107, 0.6); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.animated-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.market-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Growth Visualization */
.growth-visualization {
    margin: 40px auto;
    max-width: 400px;
}

.growth-chart {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 100px;
    margin-bottom: 15px;
    padding: 0 20px;
}

.chart-bar {
    flex: 1;
    margin: 0 5px;
    background: linear-gradient(to top, #ff6b6b, #4ecdc4);
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: end;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    padding-bottom: 5px;
    animation: chart-grow 2s ease-out;
    animation-fill-mode: both;
}

.chart-bar[data-height="30"] { height: 30%; animation-delay: 0.2s; }
.chart-bar[data-height="55"] { height: 55%; animation-delay: 0.4s; }
.chart-bar[data-height="85"] { height: 85%; animation-delay: 0.6s; }
.chart-bar[data-height="100"] { height: 100%; animation-delay: 0.8s; }

@keyframes chart-grow {
    0% { height: 0%; opacity: 0; }
    100% { opacity: 1; }
}

.chart-label {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Enhanced Stats Grid */
.market-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 3;
}

.stat-card.enhanced {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    animation: card-appear 0.8s ease-out forwards;
}

.stat-card.enhanced:nth-child(1) { animation-delay: 0.2s; }
.stat-card.enhanced:nth-child(2) { animation-delay: 0.4s; }
.stat-card.enhanced:nth-child(3) { animation-delay: 0.6s; }
.stat-card.enhanced:nth-child(4) { animation-delay: 0.8s; }

@keyframes card-appear {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-card.enhanced:hover .card-glow {
    opacity: 1;
    animation: glow-sweep 1.5s ease-in-out;
}

@keyframes glow-sweep {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.stat-card.enhanced:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 107, 0.4);
}

.stat-card.primary.enhanced {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(78, 205, 196, 0.15));
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.stat-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.stat-icon {
    font-size: 3.5rem;
    display: block;
    position: relative;
    z-index: 2;
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 107, 107, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

.stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.currency, .counter, .unit {
    font-weight: 800;
    color: #ff6b6b;
}

.currency {
    font-size: 1.8rem;
}

.counter {
    font-size: 3rem;
    line-height: 1;
}

.unit {
    font-size: 1.4rem;
}

.stat-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

/* Progress Bars */
.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin: 15px 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    border-radius: 3px;
    width: 0%;
    animation: progress-grow 2s ease-out 1s forwards;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progress-shine 2s infinite;
}

@keyframes progress-grow {
    to { width: var(--progress, 50%); }
}

@keyframes progress-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.stat-growth {
    display: inline-block;
    background: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(78, 205, 196, 0.3);
}

/* Market Timeline */
.market-timeline {
    margin: 80px 0;
    position: relative;
    z-index: 3;
}

.timeline-header {
    text-align: center;
    margin-bottom: 50px;
}

.timeline-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #4ecdc4;
}

.timeline-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.timeline-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    text-align: center;
    z-index: 2;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ff6b6b;
    margin: 0 auto 15px;
    position: relative;
    animation: timeline-pulse 2s infinite;
}

.timeline-item.active .timeline-dot {
    background: #4ecdc4;
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.6);
}

.timeline-item.future .timeline-dot {
    background: rgba(255, 255, 255, 0.3);
    animation: none;
}

@keyframes timeline-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.timeline-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Enhanced Insights */
.market-insights.enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 3;
}

.insight-card.interactive {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    transition: all 0.4s ease;
    overflow: hidden;
    cursor: pointer;
}

.insight-card.interactive:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

.card-header h4 {
    font-size: 1.3rem;
    color: #4ecdc4;
    margin: 0;
    flex: 1;
}

.expand-icon {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.insight-card.interactive:hover .expand-icon {
    transform: rotate(45deg);
    color: #4ecdc4;
}

.insight-content {
    padding: 25px 30px;
}

.metric-item, .trend-item, .advantage-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-item:last-child,
.trend-item:last-child,
.advantage-item:last-child {
    border-bottom: none;
}

.metric-label, .trend-item span, .advantage-item span {
    color: rgba(255, 255, 255, 0.8);
    flex: 1;
}

.metric-value {
    font-weight: 700;
    color: #ff6b6b;
    font-size: 1.1rem;
}

.trend-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.trend-indicator.up {
    background: #4ecdc4;
    box-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
}

.trend-indicator.hot {
    background: #ff6b6b;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
    animation: hot-pulse 1.5s infinite;
}

@keyframes hot-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.advantage-icon {
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Enhanced CTA */
.market-cta.enhanced {
    text-align: center;
    position: relative;
    z-index: 3;
}

.urgency-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.4);
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    animation: urgency-glow 2s ease-in-out infinite alternate;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

@keyframes urgency-glow {
    0% { box-shadow: 0 0 20px rgba(255, 107, 107, 0.3); }
    100% { box-shadow: 0 0 30px rgba(255, 107, 107, 0.6); }
}

.cta-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 50px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #4ecdc4;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-button.primary.enhanced {
    position: relative;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button.primary.enhanced:hover .button-glow {
    left: 100%;
}

.cta-button.primary.enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
}

.cta-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.stat-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-align: center;
}

.stat-item strong {
    display: block;
    color: #4ecdc4;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .market-opportunity {
        padding: 60px 0;
        min-height: auto;
    }
    
    .animated-title {
        font-size: 2.5rem;
    }
    
    .market-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card.enhanced {
        padding: 30px 20px;
    }
    
    .market-insights.enhanced {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .timeline-track {
        flex-direction: column;
        gap: 30px;
    }
    
    .timeline-track::before {
        width: 3px;
        height: 100%;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .cta-content {
        padding: 40px 20px;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .animated-title {
        font-size: 2rem;
    }
    
    .market-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-card.enhanced {
        padding: 25px 15px;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .counter {
        font-size: 2.5rem;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
}


/* FAQ Section - Modern UX Design */
.faq-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.faq-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8B0000, transparent);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.faq-badge .badge-icon {
    font-size: 1.1rem;
}

.faq-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-categories {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.category-tabs {
    display: flex;
    background: white;
    border-radius: 50px;
    padding: 0.25rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow-x: auto;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
    color: #6c757d;
}

.tab-btn.active {
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    color: white;
    box-shadow: 0 2px 10px rgba(139, 0, 0, 0.3);
}

.tab-btn:hover:not(.active) {
    background: #f8f9fa;
    color: #8B0000;
}

.faq-grid-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.faq-item-modern.priority-high::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B0000, #A52A2A);
}

.faq-item-modern:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.faq-question-modern {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question-modern:hover {
    background: #f8f9fa;
}

.question-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.question-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.question-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.question-priority {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-toggle-modern {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item-modern.active .faq-toggle-modern {
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    transform: rotate(180deg);
}

.toggle-icon {
    width: 20px;
    height: 20px;
    color: #6c757d;
    transition: color 0.3s ease;
}

.faq-item-modern.active .toggle-icon {
    color: white;
}

.faq-answer-modern {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item-modern.active .faq-answer-modern {
    padding: 0 2rem 2rem 2rem;
    max-height: 800px;
}

.answer-content {
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.answer-highlight {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid #8B0000;
}

.answer-highlight strong {
    color: #8B0000;
    font-weight: 600;
}

.answer-content p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.answer-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
}

.benefit-icon {
    color: #28a745;
    font-weight: bold;
}

.risk-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.risk-item {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    background: #fff5f5;
    border: 1px solid #fed7d7;
}

.risk-item.safe {
    background: #f0fff4;
    border-color: #9ae6b4;
}

.risk-label {
    display: block;
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.risk-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8B0000;
}

.risk-item.safe .risk-value {
    color: #28a745;
}

.product-categories {
    margin-top: 1.5rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.category-item:hover {
    background: #e9ecef;
    transform: translateX(4px);
}

.category-icon {
    font-size: 1.2rem;
}

.process-timeline {
    margin-top: 1.5rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.cultural-commitments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.commitment-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.commitment-icon {
    font-size: 1.1rem;
}

.pricing-benefits {
    margin-top: 1.5rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.pricing-label {
    font-weight: 500;
    color: #6c757d;
}

.pricing-value {
    font-weight: 600;
    color: #8B0000;
}

.faq-cta {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.faq-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.faq-cta p {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.3);
}

.cta-button-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 0, 0, 0.4);
}

.cta-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-button-secondary:hover .cta-arrow {
    transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .category-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .faq-question-modern {
        padding: 1.5rem;
    }
    
    .question-content {
        gap: 0.75rem;
    }
    
    .question-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .question-text h3 {
        font-size: 1.1rem;
    }
    
    .faq-item-modern.active .faq-answer-modern {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .answer-benefits {
        grid-template-columns: 1fr;
    }
    
    .risk-comparison {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .cultural-commitments {
        grid-template-columns: 1fr;
    }
    
    .faq-cta {
        padding: 2rem 1rem;
    }
    
    .faq-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .question-text h3 {
        font-size: 1rem;
    }
    
    .question-priority {
        font-size: 0.7rem;
    }
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #CD212A, #8B0000);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    top: 60%;
    right: -5%;
    animation-delay: 2s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #4CAF50, #2E7D32);
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Hero Content */
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.hero-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Animated Badge */
.animated-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #CD212A 0%, #8B0000 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    animation: badge-entrance 1s ease-out;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: badge-glow 3s ease-in-out infinite;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes badge-entrance {
    0% { transform: translateY(-20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes badge-glow {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Hero Title - GSAP-Powered Apple-Style Animation */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line-1, .title-line-2, .title-line-3 {
    display: block;
    opacity: 0;
    transform: translateY(40px);
}

/* Individual word styling */
.word-magyar, .word-kincsek {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
}

.word-magyar {
    margin-right: 0.3em;
}

/* Restore the red color and underline for Kincsek */
.word-kincsek {
    color: #CD212A;
    position: relative;
    display: inline-block;
}

.kincsek-underline {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #CD212A 0%, #8B0000 100%);
    border-radius: 2px;
    transform-origin: left;
    transform: scaleX(0);
}

/* Legacy highlight class for compatibility */
.highlight-animated {
    color: #CD212A;
    position: relative;
}

@keyframes underline-grow {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Hero Description */
.hero-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    opacity: 0;
    animation: fade-in-up 0.8s ease-out 0.8s forwards;
}

.fade-in-up {
    animation: fade-in-up 0.8s ease-out forwards;
}

@keyframes fade-in-up {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Value Props Grid */
.value-props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.value-prop-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.bounce-in {
    animation: bounce-in 0.6s ease-out forwards;
}

.card-1 { animation-delay: 1s; }
.card-2 { animation-delay: 1.2s; }
.card-3 { animation-delay: 1.4s; }

.value-prop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.prop-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.prop-icon {
    font-size: 2rem;
    display: block;
}

.icon-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border: 2px solid #CD212A;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    animation: ripple 2s infinite;
}

.prop-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.prop-content p {
    color: #666;
    font-size: 0.9rem;
}

@keyframes bounce-in {
    0% { transform: translateY(30px); opacity: 0; }
    60% { transform: translateY(-10px); opacity: 1; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes ripple {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* Hero Stats Dynamic */
.hero-stats-dynamic {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.8);
}

.scale-in {
    animation: scale-in 0.6s ease-out forwards;
}

.stat-1 { animation-delay: 1.6s; }
.stat-2 { animation-delay: 1.8s; }
.stat-3 { animation-delay: 2s; }

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #CD212A;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.stat-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(205, 33, 42, 0.1), transparent);
    animation: stat-glow 3s ease-in-out infinite;
}

@keyframes scale-in {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes stat-glow {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Hero Visual */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

/* Live Showcase */
.live-showcase-container {
    width: 100%;
    max-width: 400px;
}

.live-showcase {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.live-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #CD212A, #8B0000, #CD212A);
    background-size: 200% 100%;
    animation: gradient-slide 3s ease-in-out infinite;
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.showcase-title h3 {
    font-family: 'Playfair Display', serif;
    color: #8B0000;
    font-size: 1.4rem;
    margin: 0;
}

.title-underline {
    width: 0;
    height: 2px;
    background: #CD212A;
    margin-top: 0.5rem;
    animation: title-underline 1s ease-out 2.5s forwards;
}

.live-indicator-wrapper {
    position: relative;
}

.live-indicator {
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: live-pulse 2s infinite;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: dot-blink 1s infinite;
}

/* Showcase Content */
.showcase-content {
    margin-bottom: 1.5rem;
}

/* Startup Vision Card */
.startup-vision-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.startup-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #CD212A, #8B0000, #CD212A);
    background-size: 200% 100%;
    animation: gradient-slide 3s ease-in-out infinite;
}

.vision-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.vision-icon {
    font-size: 2rem;
    animation: gentle-pulse 2s infinite;
}

.vision-header h3 {
    font-family: 'Playfair Display', serif;
    color: #8B0000;
    font-size: 1.4rem;
    margin: 0;
}

.vision-content p {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.vision-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.2rem;
}

.feature-item span:last-child {
    font-size: 0.9rem;
    color: #495057;
    font-weight: 500;
}

/* Startup Guarantee */
.startup-guarantee {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.startup-guarantee .guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #6c757d;
}

.startup-guarantee .guarantee-icon {
    color: #28a745;
    font-size: 1rem;
}

/* Animations */
@keyframes gentle-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.metric-card-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card-modern:hover {
    transform: translateX(5px);
    background: #f0f0f0;
}

.metric-icon-bg {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #CD212A, #8B0000);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.metric-info {
    flex: 1;
}

.metric-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.metric-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
}

.metric-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #e9ecef;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #CD212A, #8B0000);
    width: 0;
    animation: progress-fill 2s ease-out 3s forwards;
}

.progress-1 { animation-delay: 3s; }
.progress-2 { animation-delay: 3.5s; }

/* Showcase Footer */
.showcase-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.viewer-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.viewer-number {
    font-weight: 600;
    color: #CD212A;
}

/* CTA Section Modern */
.cta-section-modern {
    width: 100%;
    max-width: 400px;
}

.urgency-banner {
    background: linear-gradient(135deg, #FFF3CD, #FCF4A3);
    border: 1px solid #F0E68C;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.urgency-icon-wrapper {
    width: 40px;
    height: 40px;
    background: #e67e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: urgency-pulse 2s infinite;
}

.urgency-content {
    flex: 1;
}

.urgency-title {
    font-weight: 600;
    color: #8B4513;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.urgency-subtitle {
    font-size: 0.8rem;
    color: #A0522D;
}

.cta-button-modern {
    display: block;
    background: linear-gradient(135deg, #CD212A 0%, #8B0000 100%);
    color: white;
    padding: 0.75rem 2rem !important;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(205, 33, 42, 0.4);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px !important;
    max-height: 60px !important;
}

.cta-button-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(205, 33, 42, 0.5);
}

.cta-content {
    flex: 1;
}

.cta-text {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.1rem;
    line-height: 1.2;
}

.cta-subtext {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.2;
}

.cta-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
}

.cta-button-modern:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: cta-glow 3s ease-in-out infinite;
}

/* Guarantee Modern */
.guarantee-modern {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #27ae60;
    font-weight: 500;
}

.guarantee-icon {
    font-size: 1rem;
}

/* Animations */
@keyframes gradient-slide {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes title-underline {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes live-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes dot-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes progress-fill {
    0% { width: 0; }
    100% { width: 75%; }
}

@keyframes urgency-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes cta-glow {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.about h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.about-card p {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: white;
}

.contact h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.2rem;
    width: 30px;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #CD212A;
}

.submit-btn {
    background: linear-gradient(135deg, #CD212A 0%, #8B0000 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #CD212A;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: #bbb;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-main {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .value-props-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-stats-dynamic {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .animated-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .value-prop-card {
        padding: 1rem;
    }
    
    .live-showcase {
        padding: 1.5rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
}
/* Manufacturer Benefits Section - Replaces Market Opportunity */
.manufacturer-benefits {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    color: #333;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Manufacturer Header */
.manufacturer-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.manufacturer-header .header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(139, 0, 0, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 0, 0, 0.2);
}

.manufacturer-header .badge-icon {
    font-size: 1.2rem;
}

.manufacturer-header .badge-text {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.manufacturer-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.manufacturer-subtitle {
    font-size: 1.3rem;
    color: rgba(0, 0, 0, 0.7);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Manufacturer Benefits Grid */
.manufacturer-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    animation: slideInUp 0.8s ease-out;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card.primary {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(78, 205, 196, 0.15));
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-card.enhanced:nth-child(1) { animation-delay: 0.2s; }
.benefit-card.enhanced:nth-child(2) { animation-delay: 0.4s; }
.benefit-card.enhanced:nth-child(3) { animation-delay: 0.6s; }

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.benefit-card:hover .card-glow {
    opacity: 1;
}

.benefit-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.benefit-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.benefit-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ff6b6b;
}

.benefit-description {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 25px;
    line-height: 1.6;
}

.benefit-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.7);
}

.feature-icon {
    color: #4ecdc4;
    font-weight: bold;
    font-size: 1rem;
}

/* Partnership Section */
.partnership-section {
    position: relative;
    z-index: 10;
}

.partnership-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 60px 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.partnership-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partnership-content h3 .emoji {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    color: initial;
}

.partnership-subtitle {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partnership-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.partnership-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    padding: 25px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.partnership-point:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.partnership-point .point-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.point-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #4ecdc4;
}

.point-content p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

/* Responsive Design for Manufacturer Benefits */
@media (max-width: 768px) {
    .manufacturer-benefits {
        padding: 60px 0;
    }

    .manufacturer-header h2 {
        font-size: 2.5rem;
    }

    .manufacturer-subtitle {
        font-size: 1.1rem;
    }

    .manufacturer-benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .benefit-content h3 {
        font-size: 1.5rem;
    }

    .partnership-content {
        padding: 40px 25px;
    }

    .partnership-content h3 {
        font-size: 2rem;
    }

    .partnership-points {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .partnership-point {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .manufacturer-header h2 {
        font-size: 2rem;
    }

    .benefit-card {
        padding: 25px 15px;
    }

    .benefit-content h3 {
        font-size: 1.3rem;
    }

    .partnership-content h3 {
        font-size: 1.8rem;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #CD212A, #8B0000, #CD212A);
    background-size: 200% 100%;
    animation: gradient-slide 3s ease-in-out infinite;
}

.how-it-works h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #CD212A, #8B0000);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #CD212A, #8B0000);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(205, 33, 42, 0.3);
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    color: #8B0000;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: #e9ecef;
    color: #495057;
}
/* Featured Step with Studio Image */
.step-card.featured-step {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)), url('live.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid #CD212A;
    box-shadow: 0 15px 50px rgba(205, 33, 42, 0.15);
    color: white;
    position: relative;
    overflow: hidden;
}

.step-card.featured-step .step-content h3 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.step-card.featured-step .step-content p {
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    font-weight: 500;
}

.step-card.featured-step .detail-item {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.step-card.featured-step .detail-item:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.studio-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(220, 20, 60, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    animation: pulse-badge 2s infinite;
    z-index: 10;
}

.badge-icon {
    animation: blink 1.5s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}


.process-guarantee {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border: 2px solid #CD212A;
    position: relative;
    overflow: hidden;
}

.process-guarantee::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(205, 33, 42, 0.05), transparent);
    animation: shimmer 3s infinite;
}

.guarantee-content h3 {
    font-family: 'Playfair Display', serif;
    color: #8B0000;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.guarantee-content p {
    color: #495057;
    font-size: 1.1rem;
    line-height: 1.6;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Responsive Design for How It Works */
@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .process-guarantee {
        padding: 1.5rem;
    }
}


/* Enhanced Market Opportunity Animations */
@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes pulse-urgent {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.timeline-item.animate-in {
    animation: slideInFromLeft 0.6s ease-out forwards;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.stat-card-enhanced,
.insight-card-enhanced,
.timeline-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glow-effect {
    transition: opacity 0.3s ease;
}

/* Particle system styling */
.particle {
    pointer-events: none;
    z-index: 1;
}

/* Enhanced button ripple effects */
.cta-button-modern, 
.submit-btn,
.cta-enhanced {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}


/* Contact Form Success and Error Messages */
.form-success-container, .form-error-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s ease-out;
}

.form-success-container {
    border-color: #28a745;
    background: linear-gradient(135deg, #d4edda 0%, #f8fff9 100%);
}

.form-error-container {
    border-color: #dc3545;
    background: linear-gradient(135deg, #f8d7da 0%, #fff5f5 100%);
}

.form-success-container::before, .form-error-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
}

.form-error-container::before {
    background: linear-gradient(90deg, #dc3545, #e74c3c);
}

.success-content, .error-content {
    position: relative;
    z-index: 2;
}

.success-icon {
    margin-bottom: 24px;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745, #20c997);
    margin: 0 auto;
    position: relative;
    animation: scaleIn 0.5s ease-out 0.2s both;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
}

.checkmark::before {
    content: '✓';
    color: white;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: checkmarkDraw 0.3s ease-out 0.5s both;
}

.error-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: shake 0.5s ease-out;
}

.success-title, .error-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2d3748;
}

.success-title {
    color: #155724;
}

.error-title {
    color: #721c24;
}

.success-description, .error-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.success-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #2d3748;
    background: rgba(255, 255, 255, 0.8);
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.detail-icon {
    font-size: 1.2rem;
}

.new-message-btn, .retry-btn {
    background: linear-gradient(135deg, #8B0000, #a50000);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.new-message-btn:hover, .retry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 0, 0, 0.4);
}

.new-message-btn:active, .retry-btn:active {
    transform: translateY(0);
}

/* Loading State for Form */
.form-loading {
    position: relative;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    z-index: 10;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #8B0000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes checkmarkDraw {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Validation Styles */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.field-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.field-error::before {
    content: '⚠️';
    font-size: 0.8rem;
}

/* Responsive Design for Messages */
@media (max-width: 768px) {
    .form-success-container, .form-error-container {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .success-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .detail-item {
        justify-content: center;
    }
    
    .success-title, .error-title {
        font-size: 1.5rem;
    }
    
    .checkmark-circle {
        width: 60px;
        height: 60px;
    }
    
    .checkmark::before {
        font-size: 20px;
    }
}


/* ========================================
   MOBILE-FIRST UX OPTIMIZATION
   FAANG-Level Mobile Experience Design
   ======================================== */

/* Mobile Badge Color Psychology - Trust & Premium Feel */
@media (max-width: 768px) {
    .animated-badge {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        color: white !important;
        padding: 1rem 1.5rem !important;
        border-radius: 25px !important;
        font-size: 0.9rem !important;
        font-weight: 500 !important;
        margin: 0 auto 2rem auto !important;
        max-width: 90% !important;
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        backdrop-filter: blur(10px) !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .animated-badge::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        animation: mobile-badge-shine 3s ease-in-out infinite;
    }
    
    .hero {
        padding: 7rem 0 4rem !important;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%) !important;
    }
    
    .hero-main {
        padding: 0 1rem !important;
    }
    
    .hero-description {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        color: #666 !important;
        margin-bottom: 2rem !important;
        padding: 0 1rem !important;
    }
}

/* Ultra-Mobile Optimization for Small Screens */
@media (max-width: 480px) {
    .hero {
        padding: 6rem 0 3rem !important;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    }
    
    .hero-content {
        padding: 0 1rem !important;
    }
    
    /* Small Screen Badge - Elegant & Minimal */
    .animated-badge {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
        padding: 0.75rem 1.25rem !important;
        font-size: 0.85rem !important;
        border-radius: 20px !important;
        margin: 0 auto 1.5rem auto !important;
        max-width: 95% !important;
        box-shadow: 0 6px 20px rgba(79, 172, 254, 0.3) !important;
        text-align: center !important;
        line-height: 1.4 !important;
    }
    
    .badge-text {
        display: block !important;
        font-weight: 500 !important;
    }
    
    .badge-icon {
        margin-right: 0.5rem !important;
        font-size: 1rem !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.1 !important;
        margin-bottom: 1rem !important;
    }
    
    .title-line-1, .title-line-2, .title-line-3 {
        margin-bottom: 0.25rem !important;
    }
    
    .hero-description {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        padding: 0 0.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .value-prop-card {
        margin: 0 0.5rem !important;
    }
    
    .live-showcase {
        margin: 0 0.5rem !important;
    }
    
    /* Mobile-Specific CTA Optimization */
    .cta-button-modern {
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        margin: 0 1rem !important;
        min-height: 48px !important;
    }
    
    .startup-guarantee {
        margin-top: 1rem !important;
        padding: 0 1rem !important;
    }
}

/* Mobile Badge Animation */
@keyframes mobile-badge-shine {
    0% { left: -100%; }
    50% { left: -100%; }
    100% { left: 100%; }
}

/* Enhanced Mobile Touch Targets - Apple HIG Compliance */
@media (max-width: 768px) {
    .cta-button-modern {
        min-height: 48px !important;
        padding: 1rem 2rem !important;
        font-size: 1.1rem !important;
    }
    
    .nav-links a {
        min-height: 44px !important;
        padding: 0.75rem 1rem !important;
    }
    
    /* Improved Mobile Typography Hierarchy */
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Mobile-Optimized Spacing */
    .hero-container {
        gap: 3rem !important;
        text-align: center !important;
    }
}


/* ========================================
   MOBILE-SPECIFIC ANIMATIONS & MICRO-INTERACTIONS
   Apple-Inspired Delightful Mobile UX
   ======================================== */

/* Mobile-Optimized Floating Elements */
@media (max-width: 768px) {
    .floating-elements {
        opacity: 0.05 !important;
    }
    
    .float-element {
        font-size: 1.5rem !important;
        animation: mobile-float 8s ease-in-out infinite !important;
    }
    
    /* Reduce visual noise on mobile */
    .gradient-orbs {
        opacity: 0.3 !important;
    }
    
    .orb {
        width: 100px !important;
        height: 100px !important;
        filter: blur(20px) !important;
    }
}

@media (max-width: 480px) {
    .floating-elements {
        display: none !important;
    }
    
    .gradient-orbs {
        opacity: 0.2 !important;
    }
    
    /* Mobile-First Visual Hierarchy */
    .hero-visual {
        margin-top: 2rem !important;
    }
    
    .startup-vision-card {
        margin: 0 1rem !important;
        padding: 1.5rem !important;
        border-radius: 20px !important;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08) !important;
    }
    
    .vision-header h3 {
        font-size: 1.3rem !important;
    }
    
    .feature-item {
        padding: 0.5rem 0 !important;
        font-size: 0.9rem !important;
    }
}

/* Mobile Badge Interaction States */
@media (max-width: 768px) {
    .animated-badge:active {
        transform: scale(0.98) !important;
        transition: transform 0.1s ease !important;
    }
}

/* Enhanced Mobile Typography Readability */
@media (max-width: 480px) {
    .hero-description strong {
        color: #4facfe !important;
        font-weight: 600 !important;
    }
    
    /* Mobile-Optimized Word Spacing */
    .word-kincsek {
        color: #4facfe !important;
    }
    
    .kincsek-underline {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
    }
}

/* Mobile-Specific Smooth Scrolling */
@media (max-width: 768px) {
    html {
        scroll-behavior: smooth !important;
    }
    
    /* Improved Mobile Touch Response */
    .cta-button-modern:active {
        transform: scale(0.97) !important;
        transition: transform 0.1s ease !important;
    }
    
    .value-prop-card:active {
        transform: scale(0.98) !important;
        transition: transform 0.1s ease !important;
    }
}

/* Mobile Float Animation - Gentler Movement */
@keyframes mobile-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

/* Mobile-Optimized Loading States */
@media (max-width: 768px) {
    .hero-title .title-line-1,
    .hero-title .title-line-2,
    .hero-title .title-line-3 {
        animation: mobile-slide-up 0.6s ease-out forwards !important;
    }
    
    .title-line-1 { animation-delay: 0.2s !important; }
    .title-line-2 { animation-delay: 0.4s !important; }
    .title-line-3 { animation-delay: 0.6s !important; }
}

@keyframes mobile-slide-up {
    0% { 
        opacity: 0;
        transform: translateY(20px);
    }
    100% { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile-Specific Focus States for Accessibility */
@media (max-width: 768px) {
    .cta-button-modern:focus {
        outline: 3px solid #4facfe !important;
        outline-offset: 2px !important;
    }
    
    .nav-links a:focus {
        outline: 2px solid #4facfe !important;
        outline-offset: 1px !important;
    }
}


/* ========================================
   ADVANCED MOBILE UX PATTERNS & PERFORMANCE
   Google Material Design + Apple HIG Principles
   ======================================== */

/* Mobile-First Performance Optimizations */
@media (max-width: 768px) {
    /* Reduce animations for better performance */
    .hero-background {
        will-change: transform !important;
    }
    
    /* Mobile-Optimized Badge Positioning */
    .animated-badge {
        margin-top: 1rem !important;
        transform: translateZ(0) !important; /* Hardware acceleration */
    }
    
    /* Enhanced Mobile Visual Hierarchy */
    .hero-main {
        z-index: 10 !important;
        position: relative !important;
    }
    
    /* Mobile-Specific Content Spacing */
    .hero-content {
        max-width: 100% !important;
        padding: 0 1.5rem !important;
    }
}

/* Ultra-Wide Mobile Screens (iPhone Pro Max, etc.) */
@media (max-width: 480px) and (min-height: 800px) {
    .hero {
        padding: 8rem 0 4rem !important;
    }
    
    .animated-badge {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }
}

/* Small Mobile Screens (iPhone SE, etc.) */
@media (max-width: 375px) {
    .animated-badge {
        font-size: 0.8rem !important;
        padding: 0.6rem 1rem !important;
        max-width: 98% !important;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .hero-description {
        font-size: 0.9rem !important;
        padding: 0 0.25rem !important;
    }
    
    .hero-content {
        padding: 0 1rem !important;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 4rem 0 2rem !important;
        min-height: 100vh !important;
    }
    
    .animated-badge {
        margin-bottom: 1rem !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-container {
        gap: 2rem !important;
    }
}

/* Mobile-Specific Safe Area Support (iPhone X+) */
@media (max-width: 768px) {
    .hero-content {
        padding-left: max(1.5rem, env(safe-area-inset-left)) !important;
        padding-right: max(1.5rem, env(safe-area-inset-right)) !important;
    }
    
    .animated-badge {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* Mobile Dark Mode Support */
@media (max-width: 768px) and (prefers-color-scheme: dark) {
    .animated-badge {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4) !important;
    }
}

@media (max-width: 480px) and (prefers-color-scheme: dark) {
    .animated-badge {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
        box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4) !important;
    }
}

/* Mobile Reduced Motion Support */
@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
    .animated-badge::before,
    .badge-glow,
    .mobile-float,
    .mobile-slide-up {
        animation: none !important;
    }
    
    .animated-badge {
        animation: none !important;
    }
    
    .floating-elements {
        display: none !important;
    }
}

/* Mobile High Contrast Support */
@media (max-width: 768px) and (prefers-contrast: high) {
    .animated-badge {
        background: #0066cc !important;
        border: 2px solid #ffffff !important;
        color: #ffffff !important;
    }
    
    .hero-title {
        color: #000000 !important;
    }
    
    .hero-description {
        color: #333333 !important;
    }
}

/* Mobile Touch Optimization - Larger Touch Targets */
@media (max-width: 768px) {
    .animated-badge {
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Improved Mobile Navigation */
    .nav-container {
        padding: 0 1rem !important;
        height: 70px !important;
    }
    
    .logo h1 {
        font-size: 1.2rem !important;
    }
    
    .tagline {
        font-size: 0.7rem !important;
    }
}

/* Mobile-Specific Loading Performance */
@media (max-width: 768px) {
    .hero-background {
        transform: translateZ(0) !important;
        backface-visibility: hidden !important;
    }
    
    .orb {
        transform: translateZ(0) !important;
    }
}


/* ========================================
   MOBILE CONTRAST & READABILITY FIXES
   Solving Red Orb Background Interference
   ======================================== */

/* Mobile-Specific Orb Color Fixes - Match New Blue Scheme */
@media (max-width: 768px) {
    .orb-1 {
        background: linear-gradient(45deg, #667eea, #764ba2) !important;
        opacity: 0.4 !important;
    }
    
    .orb-2 {
        background: linear-gradient(45deg, #4facfe, #00f2fe) !important;
        opacity: 0.3 !important;
    }
    
    .orb-3 {
        background: linear-gradient(45deg, #667eea, #4facfe) !important;
        opacity: 0.2 !important;
    }
    
    /* Enhanced Text Readability with Subtle Shadows */
    .hero-title {
        text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8), 
                     0 1px 2px rgba(0, 0, 0, 0.1) !important;
    }
    
    .hero-description {
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9), 
                     0 1px 1px rgba(0, 0, 0, 0.05) !important;
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(5px) !important;
        padding: 1rem !important;
        border-radius: 15px !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }
}

/* Ultra-Mobile Orb Optimization */
@media (max-width: 480px) {
    .orb-1 {
        background: linear-gradient(45deg, #4facfe, #00f2fe) !important;
        opacity: 0.2 !important;
        width: 80px !important;
        height: 80px !important;
    }
    
    .orb-2 {
        background: linear-gradient(45deg, #667eea, #764ba2) !important;
        opacity: 0.15 !important;
        width: 60px !important;
        height: 60px !important;
    }
    
    .orb-3 {
        background: linear-gradient(45deg, #4facfe, #667eea) !important;
        opacity: 0.1 !important;
        width: 50px !important;
        height: 50px !important;
    }
    
    /* Stronger Text Protection for Small Screens */
    .hero-title {
        text-shadow: 0 2px 6px rgba(255, 255, 255, 0.9), 
                     0 1px 3px rgba(0, 0, 0, 0.15),
                     0 0 10px rgba(255, 255, 255, 0.5) !important;
    }
    
    .hero-description {
        background: rgba(255, 255, 255, 0.15) !important;
        backdrop-filter: blur(8px) !important;
        text-shadow: 0 1px 3px rgba(255, 255, 255, 0.95) !important;
    }
    
    /* Enhanced Word Readability */
    .word-kincsek {
        text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8), 
                     0 1px 2px rgba(79, 172, 254, 0.3) !important;
    }
}

/* Alternative High-Contrast Mode for Accessibility */
@media (max-width: 768px) and (prefers-contrast: high) {
    .orb-1, .orb-2, .orb-3 {
        display: none !important;
    }
    
    .hero-title {
        background: rgba(255, 255, 255, 0.95) !important;
        color: #000000 !important;
        padding: 0.5rem 1rem !important;
        border-radius: 10px !important;
        text-shadow: none !important;
    }
    
    .hero-description {
        background: rgba(255, 255, 255, 0.98) !important;
        color: #333333 !important;
        text-shadow: none !important;
    }
}

/* Landscape Mobile - Reduce Orb Impact */
@media (max-width: 768px) and (orientation: landscape) {
    .orb-1, .orb-2, .orb-3 {
        opacity: 0.1 !important;
        filter: blur(30px) !important;
    }
    
    .hero-title {
        background: rgba(255, 255, 255, 0.05) !important;
        backdrop-filter: blur(3px) !important;
        padding: 0.5rem 1rem !important;
        border-radius: 10px !important;
    }
}

/* Dark Mode Orb Adjustments */
@media (max-width: 768px) and (prefers-color-scheme: dark) {
    .orb-1 {
        background: linear-gradient(45deg, #2d3748, #4a5568) !important;
    }
    
    .orb-2 {
        background: linear-gradient(45deg, #1a202c, #2d3748) !important;
    }
    
    .orb-3 {
        background: linear-gradient(45deg, #4a5568, #667eea) !important;
    }
    
    .hero-title {
        color: #ffffff !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 
                     0 1px 2px rgba(255, 255, 255, 0.1) !important;
    }
    
    .hero-description {
        background: rgba(0, 0, 0, 0.3) !important;
        color: #e2e8f0 !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8) !important;
    }
}


/* ========================================
   CTA BUTTON ENHANCED - KEEP THE COOL EFFECTS
   Fix Only the Unwanted Lines, Keep the Awesomeness
   ======================================== */

/* NUCLEAR OPTION - Remove ALL Potential Artifact Sources */
.cta-button-modern {
    /* Remove ALL borders and outlines */
    border: none !important;
    outline: none !important;
    
    /* Simple, clean gradient - NO multiple backgrounds */
    background: linear-gradient(135deg, #CD212A 0%, #8B0000 100%) !important;
    
    /* Simple shadow - NO inset shadows */
    box-shadow: 0 8px 30px rgba(205, 33, 42, 0.4) !important;
    
    /* Clean styling */
    border-radius: 16px !important;
    overflow: hidden !important;
    position: relative !important;
    
    /* Remove any background-image artifacts */
    background-image: none !important;
    background-blend-mode: normal !important;
}

/* ELIMINATE glow element completely - causes multi-color appearance */
.cta-glow {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    background: none !important;
    animation: none !important;
}

/* Clean hover - NO artifacts */
.cta-button-modern:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 40px rgba(205, 33, 42, 0.5) !important;
    background: linear-gradient(135deg, #E6253A 0%, #A50000 100%) !important;
}

/* Remove ALL pseudo-elements that could cause lines */
.cta-button-modern::before,
.cta-button-modern::after {
    display: none !important;
    content: none !important;
}

/* Keep the cool arrow animation */
.cta-arrow {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem;
    backdrop-filter: blur(5px);
}

/* Mobile - Clean and Simple */
@media (max-width: 768px) {
    .cta-button-modern {
        box-shadow: 0 6px 25px rgba(205, 33, 42, 0.35) !important;
        border: none !important;
    }
    
    .cta-button-modern:hover {
        box-shadow: 0 8px 30px rgba(205, 33, 42, 0.45) !important;
        border: none !important;
    }
}

/* New pulse animation */
@keyframes button-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.02); opacity: 0.1; }
}

/* Enhanced glow animation */
@keyframes cta-glow {
    0% { left: -100%; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}


/* ========================================
   SIMPLE BUTTON LINE FIX
   Restore Button and Remove Only the Lines
   ======================================== */

/* Restore button functionality and remove only artifacts */
.cta-button-modern {
    border: none;
    outline: none;
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
}

.cta-button-modern:hover {
    border: none;
    outline: none;
}

.cta-content,
.cta-text,
.cta-subtext,
.cta-arrow {
    border: none;
    outline: none;
}


/* ========================================
   EMERGENCY BUTTON FIX - FORCE VISIBILITY
   Make Button Solid and Visible
   ======================================== */

/* Force button to be visible with solid styling */
.cta-button-modern {
    background: #CD212A !important;
    background-image: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    color: white !important;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: 0 8px 30px rgba(205, 33, 42, 0.4) !important;
    border-radius: 16px !important;
    padding: 0.75rem 2rem !important;
    height: 60px !important;
    align-items: center !important;
    justify-content: space-between !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    margin-bottom: 1.5rem !important;
}

.cta-button-modern:hover {
    background: #E6253A !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 40px rgba(205, 33, 42, 0.5) !important;
}

.cta-content {
    flex: 1 !important;
    color: white !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.cta-text {
    display: block !important;
    font-size: 1rem !important;
    margin-bottom: 0.1rem !important;
    line-height: 1.2 !important;
    color: white !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.cta-subtext {
    display: block !important;
    font-size: 0.8rem !important;
    opacity: 0.9 !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    color: white !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.cta-arrow {
    font-size: 1.2rem !important;
    transition: transform 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    color: white !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.cta-button-modern:hover .cta-arrow {
    transform: translateX(5px) !important;
}
