:root {
    --accent-color: #D96669;
    --text-color: #4F4F4F;
    --bg-light: #F5F7FA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

body.investor-login-bg {
    background: url('assets/investor-login-bg.jpg') center center/cover no-repeat fixed;
    position: relative;
}
body.investor-login-bg::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(30, 34, 44, 0.55);
    z-index: 0;
    pointer-events: none;
}

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

/* Header Styles */
header {
    position: sticky;
    top: 0;
    background: white;
    border-bottom: 1.5px solid #e0e0e0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 32px 10px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.main-logo {
    height: 120px;
    max-height: 120px;
    width: auto;
    display: block;
}

/* Remove old logo styles */
.logo, .logo-icon, .logo-text { display: none !important; }

/* Navigation Styles */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #333333;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-bottom 0.2s;
}

.nav-menu a:hover {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

/* Mega Menu Styles */
.has-mega-menu {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 20px;
    display: none;
    min-width: 600px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    gap: 40px;
}

.has-mega-menu:hover .mega-menu {
    display: flex;
    gap: 30px;
}

.mega-menu-column h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 1rem;
}

.mega-menu-column ul {
    list-style: none;
    margin-bottom: 0;
}

.mega-menu-column a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 5px 0;
}

/* Hero Section */
.hero {
    position: relative;
    background: none;
    min-height: 60vh;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('assets/hero-bg.jpg') center center/cover no-repeat;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(245, 247, 250, 0.60);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 64px 0 72px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: hero-fadein 1.1s cubic-bezier(.4,0,.2,1);
}
.hero h1 {
    color: var(--accent-color);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: none;
}
.hero p {
    max-width: 600px;
    margin: 0 auto 38px;
    font-size: 1.22rem;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
}
@keyframes hero-fadein {
    from { opacity: 0; transform: translateY(32px); }
    to { opacity: 1; transform: none; }
}
.cta-button, .cta-elevated {
    text-decoration: none !important;
    border: none;
    outline: none;
    box-shadow: 0 4px 16px rgba(217,102,105,0.10);
    font-family: inherit;
}
.cta-elevated {
    background: linear-gradient(90deg, #D96669 0%, #4F4F4F 100%);
    color: #fff;
    font-size: 1.18rem;
    padding: 16px 48px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
    display: inline-block;
    cursor: pointer;
    position: relative;
    z-index: 3;
    text-decoration: none !important;
}
.cta-elevated:hover, .cta-elevated:focus {
    background: linear-gradient(90deg, #4F4F4F 0%, #D96669 100%);
    box-shadow: 0 8px 32px rgba(217,102,105,0.18);
    transform: scale(1.045);
    color: #fff;
    text-decoration: none !important;
}
.value-list {
    margin: 32px auto 24px auto;
    max-width: 480px;
    text-align: left;
    color: #333;
    font-size: 1.08rem;
    padding-left: 0;
}
.value-list li {
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
    list-style: none;
}
.value-list li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* Section Styles */
.section {
    padding: 100px 0 80px 0;
}

.section h2 {
    font-size: 2.2rem;
    margin-bottom: 48px;
    font-weight: 700;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.portfolio-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.portfolio-card h3 {
    color: var(--accent-color);
    padding: 20px 20px 10px;
}

.portfolio-card p {
    padding: 0 20px 20px;
    color: var(--text-color);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 65%;
    margin-bottom: 15px;
    border: 3px solid #f5f7fa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.team-member img[src*="team-david-berman.jpg"] { object-position: center 1%; }
.team-member img[src*="team-avi-cohen.jpg"] { object-position: center 1%; }
.team-member img[src*="team-liam-patel.jpg"] { object-position: center 1%; }
.team-member img[src*="team-olivia-garcia.jpg"] { object-position: center 1%; }
.team-member img[src*="team-benjamin-lee.jpg"] { object-position: center 1%; }

.team-member h3 {
    color: var(--accent-color);
    margin-bottom: 5px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

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

/* CTA Button */
.cta-button {
    font-size: 1.1rem;
    padding: 14px 36px;
    border-radius: 6px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(217,102,105,0.08);
}

/* Footer */
footer {
    background: #f8f9fb;
    border-top: 1.5px solid #e0e0e0;
    padding: 40px 0 24px 0;
    text-align: center;
    font-size: 0.98rem;
    color: #7a7a7a;
    box-shadow: 0 -2px 12px rgba(30,34,44,0.04);
    letter-spacing: 0.01em;
    line-height: 1.7;
}
footer .container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .mega-menu {
        min-width: 300px;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .main-logo {
        height: 56px;
        max-height: 56px;
    }
    .header-container {
        padding: 24px 12px 18px 12px;
    }
    footer {
        padding: 28px 0 16px 0;
        font-size: 0.93rem;
    }
}

/* Classy Contact Form */
.classy-form {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    padding: 40px 32px 32px 32px;
    border: 1.5px solid #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
}
.classy-form .form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
}
.classy-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.classy-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}
.classy-form input,
.classy-form textarea {
    background: #f7f8fa;
    border: 1.5px solid #d1d5db;
    border-radius: 6px;
    padding: 14px 12px;
    font-size: 1rem;
    margin-bottom: 0;
    transition: border 0.2s;
}
.classy-form input:focus,
.classy-form textarea:focus {
    border: 1.5px solid var(--accent-color);
    outline: none;
}
.classy-form textarea {
    min-height: 120px;
    resize: vertical;
}
.classy-form .cta-button {
    margin-top: 12px;
    width: 100%;
}
@media (max-width: 700px) {
    .classy-form {
        padding: 24px 10px 18px 10px;
    }
    .classy-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.section, .container, .classy-form, .contact-form {
    position: relative;
    z-index: 1;
}

.news-list {
    margin: 40px auto 0 auto;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.news-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(30,34,44,0.07);
    padding: 32px 28px 24px 28px;
    border: 1.5px solid #e0e0e0;
    position: relative;
}
.news-card h3 {
    margin-bottom: 10px;
    color: var(--accent-color);
    font-size: 1.35rem;
    font-weight: 700;
}
.news-meta {
    font-size: 0.98rem;
    color: #888;
    margin-bottom: 16px;
}
@media (max-width: 600px) {
    .news-card {
        padding: 18px 8px 14px 8px;
    }
}

.job-list {
    margin: 40px auto 0 auto;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.job-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(30,34,44,0.07);
    padding: 32px 28px 24px 28px;
    border: 1.5px solid #e0e0e0;
    position: relative;
}
.job-card h3 {
    margin-bottom: 10px;
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: 700;
}
.job-meta {
    font-size: 0.98rem;
    color: #888;
    margin-bottom: 16px;
}
@media (max-width: 600px) {
    .job-card {
        padding: 18px 8px 14px 8px;
    }
}

.footer-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 0;
    min-height: 64px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-logo {
    height: 36px;
    width: auto;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(30,34,44,0.04);
}
.footer-company {
    font-weight: 700;
    font-size: 1.08rem;
    color: #333;
    letter-spacing: 0.01em;
}
.footer-nav {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.footer-nav a {
    color: #7a7a7a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.18s;
    padding: 2px 0;
    border-bottom: 2px solid transparent;
}
.footer-nav a:hover {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}
.footer-meta {
    text-align: center;
    color: #b0b0b0;
    font-size: 0.97rem;
    margin-top: 18px;
    letter-spacing: 0.01em;
}
@media (max-width: 700px) {
    .footer-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    .footer-nav {
        gap: 14px;
        font-size: 0.98rem;
    }
    .footer-brand {
        margin-bottom: 6px;
    }
}

.story-content {
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.section-spacing {
    margin-top: 2rem;
} 