/* Modern Design System */
:root {
    /* Primary Colors */
    --primary: #FF8435;
    --primary-light: #FFB800;
    --primary-dark: #E66B1C;
    
    /* Neutral Colors */
    --text-primary: #1A1F36;
    --text-secondary: #4F566B;
    --bg-cream: #FFF9F0;
    
    /* Accent Colors */
    --success: #36B37E;
    --warning: #FFAB00;
    --info: #00B8D9;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    --gradient-dark: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.4s ease;
}

/* Base Styles */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: #FFFFFF;
}

/* Enhanced Navigation */
.nav-link {
    position: relative;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #FFB800, #FF8435);
    transition: width 0.3s ease;
}

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

.signup-button {
    position: relative;
    overflow: hidden;
}

.signup-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.signup-button:hover::before {
    opacity: 1;
}

/* Enhanced CTA Button */
.nav-button, .btn-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition-normal);
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(255, 132, 53, 0.25);
}

.nav-button::after, .btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: var(--transition-fast);
}

.nav-button:hover::after, .btn-primary:hover::after {
    opacity: 1;
}

.nav-button:hover, .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 132, 53, 0.35);
}

/* Value Driver Cards */
.value-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-md);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

.value-metric {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

/* AI Feature Highlights */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    transform: rotate(-5deg);
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: rotate(0deg) scale(1.1);
}

/* Modern Timeline */
.timeline-item {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 2rem;
}

/* Enhanced Stats Display */
.stats-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stats-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-label {
    color: var(--text-secondary);
    font-size: 1.125rem;
    font-weight: 500;
}

/* Modern Section Headers */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: var(--gradient-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 4rem;
}

/* Enhanced Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(79, 86, 107, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition-fast);
    background: white;
}

input[type="text"]:focus,
input[type="email"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255,132,53,0.1);
}

/* Modern Device Frames */
.device-frame {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 
        0 50px 100px -20px rgba(0,0,0,0.15),
        0 30px 60px -30px rgba(0,0,0,0.2);
    position: relative;
}

.device-screen {
    background: #F7FAFC;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

/* Footer Redesign */
footer {
    background: var(--bg-cream);
    position: relative;
}

footer nav h4 {
    position: relative;
    display: inline-block;
}

footer nav h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 24px;
    height: 2px;
    background: linear-gradient(to right, #FFB800, #FF8435);
    border-radius: 2px;
}

footer .social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 184, 0, 0.1);
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    background: rgba(255, 184, 0, 0.2);
    transform: translateY(-2px);
}

footer nav ul li a {
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
}

footer nav ul li a:hover {
    padding-left: 8px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 184, 0, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 184, 0, 0.1);
    transform: translateY(-1px);
}

.trust-badge i {
    color: var(--primary-light);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    footer .grid {
        gap: 2rem;
    }
    
    footer nav h4::after {
        width: 20px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Animation Enhancements */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,132,53,0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255,132,53,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,132,53,0); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Value Proposition Enhancement */
.value-prop {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-normal);
}

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

.value-prop-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

.value-prop-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.value-prop-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Call-to-Action Enhancement */
.cta-container {
    text-align: center;
    padding: 4rem 0;
    background: var(--bg-cream);
    border-radius: 24px;
    margin: 4rem 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(to right, #FFB800, #FF8435);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(255, 184, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 184, 0, 0.3);
    color: white;
}

.quick-action-btn {
    transition: all 0.3s ease;
}

.quick-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 184, 0, 0.2);
}

/* Mobile Menu */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
}

@media (max-width: 768px) {
    header nav {
        display: none;
    }
}

/* Hero Section */
.hero-gradient {
    background: linear-gradient(135deg, var(--bg-cream) 0%, #fff 100%);
}

/* Modern Card Styles */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    border-radius: 24px;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(31, 38, 135, 0.15);
}

/* Modern Button Styles */
.btn-scale {
    transition: transform 0.2s ease;
}

.btn-scale:hover {
    transform: scale(1.05);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    padding: 1rem;
    background: white;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 999;
}

.cookie-banner.show {
    bottom: 0;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Device Frame Styles */
.laptop-frame {
    aspect-ratio: 16/10;
    padding: 20px 20px 40px 20px;
}

.laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* Founder's Edition Card */
.founders-card {
    position: relative;
    overflow: hidden;
}

.founders-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    transform: rotate(30deg);
}

/* Founder's Edition Section Redesign */
.founders-section {
    background: linear-gradient(135deg, var(--text-primary) 0%, #2A3356 100%);
    border-radius: 32px;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    margin: 6rem 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.founders-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFB800' fill-opacity='0.05'%3E%3Cpath d='M36 34h-2v-4h2v4zm0-8h-2v-4h2v4zm0-8h-2v-4h2v4zm-4 0h-2v-4h2v4zm0 8h-2v-4h2v4zm0 8h-2v-4h2v4zm-4-4h-2v-4h2v4zm0-8h-2v-4h2v4zm0-8h-2v-4h2v4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.1;
}

.founders-badge {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: white;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(255, 132, 53, 0.25);
}

.founders-badge i {
    font-size: 1.25rem;
}

.founders-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.founders-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 3rem;
    max-width: 700px;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.founders-benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.founders-benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.benefit-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.benefit-list li i {
    color: var(--primary-light);
}

.founders-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.founders-form-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.founders-form-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 2rem;
}

.mc-field-group {
    margin-bottom: 1.25rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.founders-form input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    width: 100%;
    margin-bottom: 0;
}

.founders-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.founders-form input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.1);
}

.founders-submit {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: white;
    width: 100%;
    padding: 1.25rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(255, 132, 53, 0.25);
}

.founders-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 132, 53, 0.35);
}

.founders-slots {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2rem;
    font-weight: 500;
}

.founders-slots strong {
    color: var(--primary-light);
    font-weight: 700;
}

.founders-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.founders-guarantee i {
    color: var(--primary-light);
    font-size: 1.25rem;
}

/* Responsive Design for Founders Section */
@media (max-width: 768px) {
    .founders-section {
        margin: 3rem 1rem;
        padding: 3rem 1.5rem;
    }

    .founders-title {
        font-size: 2.5rem;
    }

    .founders-subtitle {
        font-size: 1.25rem;
    }

    .founders-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .founders-form {
        padding: 1.5rem;
    }
}

/* Animation for Founders Section */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.founders-section {
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

/* Modal Styles */
[id$="-modal"] {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

[id$="-modal"]:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

[id$="-modal"] > div:first-child {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

[id$="-modal"]:not(.hidden) > div:first-child {
    opacity: 1;
    transform: scale(1);
}

[id$="-modal"] .prose {
    max-width: none;
}

[id$="-modal"] .prose h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

[id$="-modal"] .prose h4 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

[id$="-modal"] .prose p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

[id$="-modal"] .prose ul {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

[id$="-modal"] .prose li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    position: relative;
}

[id$="-modal"] .prose li::before {
    content: '•';
    color: var(--primary-light);
    position: absolute;
    left: -1.25rem;
}

/* Contact Form Styles */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.1);
}

.contact-form button[type="submit"] {
    background: var(--gradient-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 184, 0, 0.25);
}

.contact-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Modal Responsive Styles */
@media (max-width: 768px) {
    [id$="-modal"] > div:last-child {
        width: 90%;
        margin: 1rem;
    }

    [id$="-modal"] .prose h3 {
        font-size: 1.25rem;
    }

    [id$="-modal"] .prose h4 {
        font-size: 1.125rem;
    }
} 