@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Ubuntu+Sans:ital,wght@0,100..800;1,100..800&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    padding: 1rem 0;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    /* backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3); */
}

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

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

.logo-img {
    height: 40px;
    width: auto;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: url('img/hero-bg.png') center/cover no-repeat;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.4); */
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1150px;
    padding: 0 20px;
}

.hero-title {
    font-family: Outfit, sans-serif;
    font-size: 92px;
    font-weight: 700;
    margin-bottom: 35px;
    line-height: 1.05;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    margin-bottom: 80px;
    /* opacity: 0.95; */
    font-weight: 300;
    text-align: center;
    line-height: 1.25;
    color: #F4F4F4;
}

.cta-button {
    background: #DA2C46;
    color: white;
    border: none;
    padding: 20px 70px;
    font-size: 30px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #b62238;
    /* transform: translateY(-2px); */
}

.cta-button.secondary {
    font-size: 20px;
    background: transparent;
    border: 2px solid #DA2C46;
    color: #DA2C46;
}

.cta-button.secondary:hover {
    background: #b62238;
    color: white;
}

/* Strategy Section */
.strategy {
    padding: 5rem 0;
    background: white;
}

.strategy h2 {
    font-family: Domine, sans-serif;
    font-size: 64px;
    text-align: center;
    margin-bottom: 1.1rem;
    color: #2c3e50;
    font-weight: 700;
}

.strategy p {
    /* font-family: Ubuntu Sans, sans-serif; */
    font-size: 22px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    color: #555;
    line-height: 1.4;
}

/* What We Look For Section */
.what-we-look-for {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.section-image {
    width: 100%;
    height: auto;
    /* border-radius: 10px; */
}

.text-section h2 {
    font-family: Domine, sans-serif;
    font-size: 48px;
    text-align: left;
    margin-bottom: 1.1rem;
    color: #2c3e50;
    font-weight: 700;
}

.text-section p {
    font-size: 22px;
    margin-bottom: 1rem;
    color: #555;
}

.criteria-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.criteria-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.criteria-list li:last-child {
    border-bottom: none;
}

.list-icon {
    width: 6px;
    height: 6px;
    background: #2c3e50;
    border-radius: 50%;
    margin-top: 12px;
    flex-shrink: 0;
}

.criteria-content {
    flex: 1;
}

.criteria-content strong {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.criteria-content span {
    color: #666;
    font-size: 0.95rem;
}

/* Microcap IPOs Section */
.microcap-ipos {
    padding: 5rem 0;
    background: #091C2D;
    color: white;
    text-align: center;
}

.microcap-ipos h2 {
    font-family: Domine, sans-serif;
    font-size: 64px;
    margin-bottom: 2rem;
    font-weight: 700;
}

.microcap-ipos p {
    font-size: 22px;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.9;
}

/* Comparison Section */
.comparison {
    padding: 90px 0 140px 0;
    background: url('img/why-companies-bg.png') center/cover no-repeat;
    position: relative;
}

.comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.comparison .container {
    position: relative;
    z-index: 1;
}

.comparison h2 {
    font-family: Domine, sans-serif;
    font-size: 64px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    font-weight: 700;
    margin-bottom: 4.5rem;
    margin-top: 0.5rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.comparison-card {
    padding: 2.5rem;
    /* border-radius: 15px; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
}

.ipo-card {
    background: #b62238;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(182, 34, 56, 0.3);
    position: relative;
    z-index: 2;
}

.vc-card {
    background: white;
    color: #333;
}

.comparison-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.comparison-metrics {
    margin-bottom: 1.5rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.vc-card .metric {
    border-bottom: 1px solid #eee;
}

.metric:last-child {
    border-bottom: none;
}

.metric-label {
    font-weight: 400;
    font-size: 0.95rem;
}

.metric-value {
    font-weight: 600;
    font-size: 1rem;
}

.ipo-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.ipo-note p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.vc-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.vc-note p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    color: #666;
}

/* How It Works Section */
.how-it-works {
    /* background-color: #34495e; */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 0;
    background: white;
    text-align: center;
    justify-content: center;
}

.how-it-works h2 {
    font-size: 64px;    
    font-family: Domine, sans-serif;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.how-it-works .subtitle {
    /* background-color: #b62238; */
    text-align: center;
    max-width: 800px;
    font-size: 22px;
    margin: 0 auto 3rem auto;
    color: #555;
}

.how-it-works-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.how-it-works-image {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.process-image {
    width: 100%;
    height: auto;
    max-width: 400px;
}

.steps-content {
    text-align: left;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #DA2C46;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.step-text p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #f8f9fa;
}

.faq h2 {
    font-size: 64px;
    font-family: Domine, sans-serif;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 700;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #eee;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.faq-question {
    /* background-color: #b62238; */
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #2c3e50;
    transition: background-color 0.3s ease;
}

.faq-question-text {
    padding-right: 10px;
    /* background-color: #3888d7; */
}



.faq-question:hover {
    background: #f8f9fa;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #e74c3c;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #091C2D;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    opacity: 0.7;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: #DA2C46;
}

/* Ensure navbar container has relative positioning for mobile dropdown */
.nav-container {
    position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 58px;
    }
    
    .hero-subtitle {
        font-size: 25px;
    }

    h2 {
        font-size: 25px;
        line-height: 1.2;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .how-it-works-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .steps-content {
        text-align: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.mobile-active {
        display: flex !important;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #DA2C46;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(218, 44, 70, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #b62238;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(218, 44, 70, 0.4);
}

.scroll-to-top svg {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-1px);
}

/* Contact Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 15px;
}

.close:hover,
.close:focus {
    color: #DA2C46;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-family: Domine, sans-serif;
    font-size: 1.8rem;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: white;
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.submit-btn {
    width: 100%;
    background: #DA2C46;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #b62238;
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }
}

/* Roadmap Page Styles */
.roadmap-hero {
    background: linear-gradient(135deg, #DA2C46 0%, #b62238 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.roadmap-hero h1 {
    font-family: Domine, sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.roadmap-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.roadmap-timeline {
    padding: 6rem 0;
    background: #f8f9fa;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #DA2C46;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: #DA2C46;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(218, 44, 70, 0.3);
}

.timeline-number {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.timeline-content {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 30px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid white;
}

.timeline-header h2 {
    font-family: Domine, sans-serif;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
}

.timeline-section {
    margin-bottom: 2rem;
}

.timeline-section:last-child {
    margin-bottom: 0;
}

.timeline-section h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mcapital-support {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #DA2C46;
}

.mcapital-support h3 {
    color: #DA2C46;
}

.timeline-section ul {
    list-style: none;
    padding: 0;
}

.timeline-section li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #555;
}

.timeline-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #DA2C46;
    font-weight: bold;
    font-size: 1.2rem;
}

.important-notes {
    padding: 5rem 0;
    background: white;
}

.important-notes h2 {
    font-family: Domine, sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 700;
}

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

.note-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #DA2C46;
}

.note-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.note-card p {
    color: #555;
    line-height: 1.6;
}

.roadmap-cta {
    background: #091C2D;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.roadmap-cta h2 {
    font-family: Domine, sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

/* Active navigation state */
.nav-menu a.active {
    /* color: #DA2C46; */
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

/* Responsive Design for Roadmap */
@media (max-width: 768px) {
    .roadmap-hero h1 {
        font-size: 2.5rem;
    }
    
    .roadmap-hero p {
        font-size: 1.1rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        left: 0;
    }
    
    .timeline-number {
        font-size: 1.2rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content::before {
        left: -10px;
        border-right-width: 10px;
        border-top-width: 10px;
        border-bottom-width: 10px;
    }
    
    .timeline-header h2 {
        font-size: 1.5rem;
    }
    
    .notes-grid {
        grid-template-columns: 1fr;
    }
}

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