/* Custom CSS for Kundai Coming Soon - Enhanced Design */

:root {
    --primary-color: #9F0000;
    --primary-gradient: linear-gradient(135deg, #9F0000 0%, #7A0000 100%);
    --secondary-color: #FFD611;
    --accent-color: #F4EFEA;
    --primary-soft: #fdf2f2;
    --secondary-soft: #fffbeb;
    --accent-soft: #fefefe;
    --neutral-50: #F4EFEA;
    --neutral-100: #f3f4f6;
    --neutral-200: #e5e7eb;
    --neutral-600: #4b5563;
    --neutral-700: #374151;
    --neutral-800: #1f2937;
    --neutral-900: #111827;
    --glass-bg: rgba(244, 239, 234, 0.1);
    --glass-border: rgba(159, 0, 0, 0.1);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--neutral-800);
    background-color: var(--neutral-50);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-accent {
    color: var(--neutral-800) !important;
}

.bg-primary {
    background: var(--primary-gradient) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    font-weight: 600;
    letter-spacing: -0.025em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7A0000 0%, #5A0000 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border: none;
    color: white;
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: #E6C200;
    transform: translateY(-2px);
}

.bg-primary-soft {
    background-color: var(--primary-soft);
}

.bg-secondary-soft {
    background-color: var(--secondary-soft);
}

.bg-accent-soft {
    background-color: var(--accent-soft);
}

/* Navigation */
.navbar {
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.8) !important;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(244, 239, 234, 0.8) 50%, rgba(255, 214, 17, 0.1) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(159, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 214, 17, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(244, 239, 234, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%239F0000" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.badge {
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(159, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

.display-4 {
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, var(--neutral-900) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.signup-form {
    /* max-width: 500px; */
    position: relative;
}

.form-control-lg {
    border-radius: 16px;
    border: 2px solid var(--neutral-200);
    padding: 16px 20px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-control-lg:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(159, 0, 0, 0.1);
    background-color: white;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 25px;
}

.btn-lg {
    padding: 16px 32px;
}

.btn {
    border-radius: 16px;
    ;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* New Hero Design - Large Social Icons */
.social-icons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 400px;
    margin: 0 auto 3rem;
    position: relative;
}

.social-icon-large {
    width: 160px;
    height: 160px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: float 4s ease-in-out infinite;
}

.social-icon-large i {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.social-icon-large span {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.instagram-icon {
    background: linear-gradient(135deg, #E4405F, #C13584);
    color: white;
    animation-delay: 0s;
}

.linkedin-icon {
    background: linear-gradient(135deg, #0077B5, #005885);
    color: white;
    animation-delay: 0.5s;
}

.twitter-icon {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
    color: white;
    animation-delay: 1s;
}

.facebook-icon {
    background: linear-gradient(135deg, #1877F2, #166fe5);
    color: white;
    animation-delay: 1.5s;
}

.social-icon-large:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.hero-center-element {
    position: relative;
    margin-top: 2rem;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--secondary-color), #E6C200);
    color: var(--neutral-800);
    padding: 1.5rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 214, 17, 0.3);
    animation: pulse 2s infinite;
}

.ai-badge i {
    font-size: 2rem;
}

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

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

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

/* Problem Section */
.problem-section {
    background: linear-gradient(135deg, #ffffff 0%, rgba(244, 239, 234, 0.3) 100%);
    position: relative;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23FFD611" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.problem-card {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    background: rgba(255, 255, 255, 0.9);
}

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

.problem-icon {
    position: relative;
    margin-bottom: 2rem;
}

.problem-icon i {
    background: linear-gradient(135deg, var(--primary-color), #7A0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(159, 0, 0, 0.3));
}

/* Solution Section */
.solution-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, rgba(159, 0, 0, 0.02) 100%);
    position: relative;
}

.features-list {
    max-width: 500px;
}

.feature-item {
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.feature-icon i {
    color: white;
    font-size: 20px;
}

.workflow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

.workflow-step {
    text-align: center;
    flex: 0 0 auto;
    animation: fadeInUp 0.6s ease-out;
}

.workflow-step:nth-child(1) { animation-delay: 0.1s; }
.workflow-step:nth-child(3) { animation-delay: 0.2s; }
.workflow-step:nth-child(5) { animation-delay: 0.3s; }

.step-circle {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.step-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

.workflow-step span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-700);
}

.workflow-diagram .bi-arrow-right {
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Audience Section */
.audience-section {
    background: linear-gradient(135deg, rgba(255, 214, 17, 0.1) 0%, #ffffff 100%);
    position: relative;
}

.audience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagon" width="28" height="24" patternUnits="userSpaceOnUse"><polygon points="14,2 26,8 26,16 14,22 2,16 2,8" fill="none" stroke="%239F0000" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagon)"/></svg>');
    pointer-events: none;
}

.audience-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
    background: rgba(255, 255, 255, 0.95);
}

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

.audience-icon {
    position: relative;
    margin-bottom: 2rem;
}

.audience-icon i {
    background: linear-gradient(135deg, var(--primary-color), #7A0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(159, 0, 0, 0.3));
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="5" cy="5" r="0.5" fill="white" opacity="0.1"/><circle cx="15" cy="15" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    animation: twinkle 4s ease-in-out infinite;
}

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

.cta-section .btn-light {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary-color);
    font-weight: 700;
}

.cta-section .btn-light:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(159, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--neutral-900) 0%, var(--neutral-800) 100%) !important;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Enhanced Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Stagger Animation Delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* Success Message */
.alert {
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    animation: slideInUp 0.5s ease-out;
}

.alert-success {
    background: linear-gradient(135deg, rgba(244, 239, 234, 0.9), rgba(244, 239, 234, 0.7));
    color: var(--primary-color);
    border-color: rgba(159, 0, 0, 0.2);
}

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

/* Responsive Design */
/* Countdown Timer Styles */
.countdown-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.countdown-timer {
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 80px;
}

.countdown-number {
    background: linear-gradient(135deg, var(--neutral-700), var(--neutral-800));
    color: white;
    font-size: 2rem;
    font-weight: 800;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    margin-bottom: 0.5rem;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 576px) {
    .countdown-timer {
        gap: 1rem !important;
    }
    
    .countdown-item {
        min-width: 70px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
        padding: 0.75rem;
        min-height: 60px;
    }
}
/* Mobile Navigation Layout */
.navbar-nav-mobile {
    display: none !important;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
}

.navbar-nav-desktop {
    display: flex !important;
}

@media (max-width: 991px) {
    .navbar-nav-mobile {
        display: flex !important;
    }
    
    .navbar-nav-desktop {
        display: none !important;
    }
    
    .navbar .container {
        justify-content: space-between;
        align-items: center;
    }
    
    .navbar-nav-mobile {
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: wrap;
        width: auto;
    }
    
    .navbar-nav-mobile small {
        font-size: 0.75rem;
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
        order: 2;
    }
    
    .navbar-nav-mobile button {
        order: 1;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 4rem;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .display-4 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .countdown-container {
        padding: 1.5rem 1rem;
    }
    
    .countdown-timer {
        gap: 1rem !important;
    }
    
    .countdown-item {
        min-width: 65px;
    }
    
    .countdown-number {
        font-size: 1.25rem;
        padding: 0.75rem 0.5rem;
        min-height: 55px;
    }
    
    .signup-form .col-md-8,
    .signup-form .col-md-4 {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .social-icons-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        max-width: 280px;
    }
    
    .social-icon-large {
        width: 120px;
        height: 120px;
    }
    
    .social-icon-large i {
        font-size: 2.5rem;
    }
    
    .ai-badge {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .ai-badge i {
        font-size: 1.5rem;
    }
    
    .problem-card {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .feature-item {
        padding: 1.25rem;
    }
    
    .workflow-diagram {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .workflow-diagram .bi-arrow-right {
        transform: rotate(90deg);
        font-size: 1.2rem;
    }
    
    .step-circle {
        width: 70px;
        height: 70px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .display-4 {
        font-size: 1.75rem;
    }
    
    .navbar-brand img {
        height: 35px;
    }
    
    .countdown-timer {
        gap: 0.75rem !important;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-number {
        font-size: 1rem;
        padding: 0.5rem;
        min-height: 45px;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .social-icons-grid {
        max-width: 240px;
        gap: 0.75rem;
    }
    
    .social-icon-large {
        width: 100px;
        height: 100px;
    }
    
    .social-icon-large i {
        font-size: 2rem;
    }
    
    .social-icon-large span {
        font-size: 0.75rem;
    }
    
    .ai-badge {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .ai-badge i {
        font-size: 1.25rem;
    }
    
    .problem-card {
        padding: 1.5rem 1rem;
    }
    
    .problem-icon i {
        font-size: 3rem !important;
    }
    
    .feature-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-bottom: 1rem;
        margin-right: 0 !important;
    }
    
    .audience-card .card-body {
        padding: 2rem 1.5rem;
    }
    
    .workflow-diagram {
        padding: 1rem;
    }
    
    .step-circle {
        width: 60px;
        height: 60px;
        font-size: 1.1rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        padding-top: 2rem;
    }
    
    .min-vh-100 {
        min-height: auto;
    }
    
    .social-icons-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 400px;
    }
    
    .social-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .social-icon-large i {
        font-size: 1.75rem;
    }
    
    .social-icon-large span {
        font-size: 0.65rem;
    }
}

/* Touch Improvements */
@media (hover: none) and (pointer: coarse) {
    .social-icon-large:hover,
    .problem-card:hover,
    .audience-card:hover,
    .feature-item:hover {
        transform: none;
    }
    
    .btn {
        min-height: 44px;
    }
    
    .form-control {
        min-height: 44px;
    }
}

/* Enhanced Loading States */
.btn .spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 2px;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading .spinner-border {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: currentColor;
}

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

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

/* Performance Optimizations */
.floating-card,
.problem-card,
.audience-card,
.feature-item {
    will-change: transform;
}

.hero-section,
.problem-section,
.solution-section,
.audience-section,
.cta-section {
    contain: layout style paint;
}

/* Enhanced Focus States */
.btn:focus,
.form-control:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn:focus:not(:focus-visible),
.form-control:focus:not(:focus-visible) {
    outline: none;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--neutral-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

/* Additional Enhancements */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Loading Animation */
.loading-dots {
    display: inline-block;
}

.loading-dots::after {
    content: '.';
    animation: dots 1.5s steps(5, end) infinite;
}

@keyframes dots {
    0%, 20% { color: rgba(0,0,0,0); text-shadow: .25em 0 0 rgba(0,0,0,0), .5em 0 0 rgba(0,0,0,0); }
    40% { color: var(--primary-color); text-shadow: .25em 0 0 rgba(0,0,0,0), .5em 0 0 rgba(0,0,0,0); }
    60% { text-shadow: .25em 0 0 var(--primary-color), .5em 0 0 rgba(0,0,0,0); }
    80%, 100% { text-shadow: .25em 0 0 var(--primary-color), .5em 0 0 var(--primary-color); }
}