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

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #122029;
    background: #fff;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(18, 32, 41, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(18, 32, 41, 0.1);
}

.nav-logo h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #122029;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #122029;
    font-weight: 400;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu a:hover {
    color: #2E3B44;
}

.nav-btn {
    background: #122029;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #2E3B44;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #122029;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #122029 0%, #2E3B44 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #BBC5CA;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #BBC5CA;
    color: #122029;
}

.btn-primary:hover {
    background: #A6B1B7;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(187, 197, 202, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

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

.btn-outline {
    background: transparent;
    color: #122029;
    border-color: #122029;
}

.btn-outline:hover {
    background: #122029;
    color: white;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 300px;
    height: 300px;
    background: rgba(187, 197, 202, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(187, 197, 202, 0.2);
}

.hero-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 50%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #122029;
}

.section-header p {
    font-size: 1.25rem;
    color: #39464F;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #E5EBED;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(18, 32, 41, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(18, 32, 41, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(18, 32, 41, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #122029, #2E3B44);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #122029;
}

.feature-card p {
    color: #39464F;
    line-height: 1.6;
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
}

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

.solution-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(18, 32, 41, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(18, 32, 41, 0.05);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(18, 32, 41, 0.15);
}

.solution-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #122029, #2E3B44);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #122029;
}

.solution-card p {
    color: #39464F;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solution-link {
    color: #122029;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.solution-link:hover {
    color: #2E3B44;
    transform: translateX(5px);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #E5EBED;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(18, 32, 41, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(18, 32, 41, 0.05);
    position: relative;
}

.pricing-card.featured {
    border: 2px solid #122029;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #122029;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #122029;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: #39464F;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #122029;
}

.period {
    font-size: 1rem;
    color: #39464F;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #39464F;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-features i {
    color: #2E3B44;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #122029;
}

.about-text p {
    font-size: 1.125rem;
    color: #39464F;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #122029;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #39464F;
    font-size: 0.875rem;
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8rem;
    color: #122029;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #122029 0%, #2E3B44 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Footer */
.footer {
    background: #122029;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #BBC5CA;
}

.footer-section p {
    color: #E5EBED;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #E5EBED;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #BBC5CA;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #2E3B44;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #39464F;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #2E3B44;
    padding-top: 2rem;
    text-align: center;
    color: #BBC5CA;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .solutions-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

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

/* Button Hover Effects */
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(18, 32, 41, 0.2);
}

/* Card Hover Effects */
.feature-card:hover,
.solution-card:hover,
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(18, 32, 41, 0.15);
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success/Error States */
.success {
    color: #2E3B44;
}

.error {
    color: #39464F;
}

.warning {
    color: #BBC5CA;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #122029;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E5EBED;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

/* Table Styles */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.table th,
.table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #E5EBED;
}

.table th {
    background: #E5EBED;
    font-weight: 600;
    color: #122029;
}

/* Alert Styles */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #E5EBED;
    color: #122029;
    border: 1px solid #BBC5CA;
}

.alert-error {
    background: #E5EBED;
    color: #122029;
    border: 1px solid #BBC5CA;
}

.alert-warning {
    background: #E5EBED;
    color: #122029;
    border: 1px solid #BBC5CA;
}

.alert-info {
    background: #E5EBED;
    color: #122029;
    border: 1px solid #BBC5CA;
}

/* Beta Signup Section */
.beta-signup {
    padding: 80px 0;
    background: linear-gradient(135deg, #122029 0%, #2E3B44 100%);
    color: white;
}

.beta-signup .section-header h2 {
    color: white;
}

.beta-signup .section-header p {
    color: #BBC5CA;
}

.beta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.beta-features h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

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

.beta-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #BBC5CA;
}

.beta-features i {
    color: #BBC5CA;
    width: 20px;
    text-align: center;
}

.beta-pricing {
    margin-top: 2rem;
}

.beta-price-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.beta-price-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
}

.beta-price-card .price {
    margin-bottom: 1rem;
}

.beta-price-card .currency {
    font-size: 1.25rem;
    color: #BBC5CA;
}

.beta-price-card .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.beta-price-card .period {
    font-size: 1rem;
    color: #BBC5CA;
}

.beta-note {
    font-size: 0.875rem;
    color: #BBC5CA;
    font-style: italic;
}

.beta-signup-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    color: #122029;
}

.beta-signup-form h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #122029;
    text-align: center;
}

.card-element {
    padding: 0.75rem;
    border: 2px solid #E5EBED;
    border-radius: 8px;
    background: white;
    min-height: 40px;
}

.card-element.StripeElement--focus {
    border-color: #122029;
}

.card-element.StripeElement--invalid {
    border-color: #e53e3e;
}

.card-errors {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.125rem;
}

.checkbox-label a {
    color: #122029;
    text-decoration: underline;
}

.btn-large {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    position: relative;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

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

.security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #E5EBED;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #39464F;
}

.security-badge i {
    font-size: 1rem;
}

/* Responsive Design for Beta Section */
@media (max-width: 768px) {
    .beta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .beta-signup-form {
        padding: 1.5rem;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Founder Section in About */
.founder-section {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    border: 1px solid rgba(18, 32, 41, 0.1);
}

.founder-section h3 {
    color: #122029;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.founder-info {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.founder-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #122029 0%, #2E3B44 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.founder-avatar i {
    color: white;
    font-size: 2rem;
}

.founder-details {
    flex: 1;
}

.founder-details h4 {
    color: #122029;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.founder-title {
    color: #2E3B44;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
}

.founder-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #122029;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(18, 32, 41, 0.1);
}

.credential i {
    color: #2E3B44;
    font-size: 1rem;
}

.founder-bio {
    color: #39464F;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design for Founder Section */
@media (max-width: 768px) {
    .founder-info {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-credentials {
        justify-content: center;
    }
    
    .founder-section {
        padding: 1.5rem;
    }
}

/* Contact Us Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(18, 32, 41, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(18, 32, 41, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #122029 0%, #2E3B44 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.25rem;
}

.contact-details h3 {
    color: #122029;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #39464F;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(18, 32, 41, 0.05);
}

.contact-form h3 {
    color: #122029;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #122029;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E5EBED;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.alert {
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.alert p {
    margin-bottom: 0.5rem;
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}