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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #2a2a2a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative; /* This is required for z-index to work */
    z-index: 2;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Utility Classes */
.gradient-text {
    background: linear-gradient(90deg, #3FBFBF, #FF7A59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-reverse {
    background: linear-gradient(90deg, #FF7A59, #3FBFBF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-teal {
    color: #3FBFBF;
}

.text-orange {
    color: #FF7A59;
}

.text-accent {
    color: #FF7A59;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(63, 191, 191, 0.2);
    border: 1px solid rgba(63, 191, 191, 0.3);
    border-radius: 50px;
    padding: 8px 24px;
    font-size: 0.975rem;
    color: #3FBFBF;
    backdrop-filter: blur(10px);
    margin-bottom: 24px;
}

.badge-orange {
    background: rgba(255, 122, 89, 0.2);
    border-color: rgba(255, 122, 89, 0.3);
    color: #FF7A59;
}

.badge-teal {
    background: rgba(63, 191, 191, 0.2);
    border-color: rgba(63, 191, 191, 0.3);
    color: #3FBFBF;
}

.pulse-dot {
    width: 9px;
    height: 9px;
    background: #3FBFBF;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

/* Buttons */
.btn-primary {
    background: #FF7A59;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.938rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #ff6a49;
    transform: scale(1.05);
}

.btn-gradient {
    background: linear-gradient(90deg, #FF7A59, #ff6a49);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    box-shadow: 0 10px 25px rgba(255, 122, 89, 0.5);
    transform: scale(1.05);
}

.btn-gradient i {
    transition: transform 0.3s ease;
}

.btn-gradient:hover i {
    transform: translateX(4px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
}

.overlay-1 {
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.95) 0%, rgba(42, 42, 42, 0.9) 50%, rgba(31, 31, 31, 0.85) 100%);
}

.overlay-2 {
    background: linear-gradient(180deg, #1f1f1f 0%, transparent 50%, #1f1f1f 100%);
}

.overlay-dark {
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.95) 0%, rgba(36, 36, 36, 0.92) 50%, rgba(31, 31, 31, 0.95) 100%);
}

/* Navigation */
.navbar {
    position: relative;
    z-index: 10;
    padding: 24px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: #d1d1d1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3FBFBF;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 100px);
    padding: 80px 0;
}

.hero-text {
    max-width: 1000px;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.25rem;
    color: #d1d1d1;
    margin-bottom: 32px;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    max-width: 800px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #3FBFBF;
    /* margin-bottom: 8px; */
}

.stat-label {
    color: #999;
    font-size: 0.875rem;
    margin-top: auto;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Backgrounds */
.section-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.section-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Business Model Section */
.business-model-section {
    position: relative;
    padding: 128px 0;
    overflow: hidden;
}

.two-column-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.section-title {
    color: white;
    margin-bottom: 24px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Optional: Add a subtle drop shadow to lift it off the background */
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.section-description {
    font-size: 1.125rem;
    color: #d1d1d1;
    margin-bottom: 48px;
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
}

.card-teal:hover {
    border-color: rgba(63, 191, 191, 0.5);
}

.card-orange:hover {
    border-color: rgba(255, 122, 89, 0.5);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.75rem;
    transition: transform 0.3s ease;
}

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

.icon-teal {
    background: linear-gradient(135deg, #3FBFBF, rgba(63, 191, 191, 0.7));
    color: white;
}

.icon-orange {
    background: linear-gradient(135deg, #FF7A59, rgba(255, 122, 89, 0.7));
    color: white;
}

.feature-content h3 {
    color: white;
    margin-bottom: 8px;
}

.feature-content p {
    color: #999;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, rgba(63, 191, 191, 0.2), rgba(255, 122, 89, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 48px;
}

.info-box h3 {
    color: white;
    margin-bottom: 32px;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-item i {
    color: #3FBFBF;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-item p {
    color: #d1d1d1;
}

.mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.mini-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3FBFBF;
    margin-bottom: 4px;
}

.mini-stat-orange {
    color: #FF7A59;
}

.mini-stat-label {
    color: #999;
    font-size: 0.875rem;
}

/* Investment Section */
.investment-section {
    background: #1f1f1f;
    padding: 128px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    color: #cbd5e0; 
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.investment-card {
    position: relative;
    background: linear-gradient(135deg, #242424, #2a2a2a);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.investment-card:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-teal-hover:hover {
    background: linear-gradient(135deg, #242424, rgba(63, 191, 191, 0.1));
}

.card-orange-hover:hover {
    background: linear-gradient(135deg, #242424, rgba(255, 122, 89, 0.1));
}

.investment-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.investment-card:hover .investment-icon {
    transform: scale(1.1);
}

.investment-card h3 {
    color: white;
    margin-bottom: 12px;
}

.investment-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FF7A59;
    margin-bottom: 12px;
}

.investment-card p {
    color: #666;
    font-size: 0.875rem;
    margin-top: auto;
}

.pricing-note {
    background: linear-gradient(90deg, rgba(63, 191, 191, 0.1), rgba(255, 122, 89, 0.1), rgba(63, 191, 191, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    max-width: 1000px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    text-align: center;
}

.pricing-note p {
    color: #d1d1d1;
    margin-bottom: 16px;
}

.pricing-note p:last-child {
    margin-bottom: 0;
}

.note-sub {
    color: #999 !important;
    font-size: 0.875rem;
}

/* Benefits Section */
.benefits-section {
    position: relative;
    padding: 128px 0;
    overflow: hidden;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

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

.benefit-card h3 {
    color: white;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.benefit-card:hover h3 {
    color: #3FBFBF;
}

.benefit-card p {
    color: #999;
}

.card-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover .card-accent {
    opacity: 1;
}

.accent-teal {
    background: linear-gradient(to bottom left, rgba(63, 191, 191, 0.1), transparent);
    border-radius: 0 24px 0 100%;
}

.accent-orange {
    background: linear-gradient(to bottom left, rgba(255, 122, 89, 0.1), transparent);
    border-radius: 0 24px 0 100%;
}

/* CTA Box */
.cta-box {
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, rgba(63, 191, 191, 0.2), rgba(255, 122, 89, 0.2), rgba(63, 191, 191, 0.2));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 48px;
    max-width: 1000px;
    margin: 80px auto 0;
    text-align: center;
}

.cta-box h3 {
    color: white;
    margin-bottom: 16px;
}

.cta-box p {
    color: #d1d1d1;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 128px 0;
    overflow: hidden;
}

.contact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

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

.contact-description {
    font-size: 1.125rem;
    color: #d1d1d1;
    margin-bottom: 32px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-card:nth-child(1):hover {
    border-color: rgba(63, 191, 191, 0.5);
}

.contact-card:nth-child(2):hover {
    border-color: rgba(255, 122, 89, 0.5);
}

.contact-card:nth-child(3):hover {
    border-color: rgba(63, 191, 191, 0.5);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.75rem;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-details h4 {
    color: white;
    margin-bottom: 8px;
}

.contact-details p {
    color: #999;
    margin-bottom: 4px;
}

.contact-details span {
    color: #666;
    font-size: 0.875rem;
}

.trust-box {
    background: linear-gradient(90deg, rgba(63, 191, 191, 0.1), rgba(255, 122, 89, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
}

.trust-box p {
    color: #d1d1d1;
    margin-bottom: 12px;
}

.trust-box p:last-child {
    margin-bottom: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
}

.contact-form-wrapper h3 {
    color: white;
    margin-bottom: 8px;
}

.form-subtitle {
    color: #999;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    color: #d1d1d1;
    margin-bottom: 8px;
    font-size: 0.938rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(31, 31, 31, 0.5);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: inherit;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3FBFBF;
    box-shadow: 0 0 0 3px rgba(63, 191, 191, 0.2);
}

.form-group textarea {
    resize: none;
}

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

.btn-submit {
    background: linear-gradient(90deg, #FF7A59, #ff6a49);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    box-shadow: 0 10px 25px rgba(255, 122, 89, 0.5);
    transform: scale(1.05);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(4px);
}

.form-note {
    color: #666;
    font-size: 0.875rem;
    text-align: center;
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-content p {
    color: #999;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3FBFBF;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .two-column-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .investment-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        padding: 40px 0;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .business-model-section,
    .investment-section,
    .benefits-section,
    .contact-section {
        padding: 64px 0;
    }

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

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .info-box {
        padding: 32px 24px;
    }

    .mini-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 16px;
        
    }

    .btn-gradient,
    .btn-glass,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }

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

    .cta-box {
        padding: 32px 24px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}
