/* Variables */
:root {
    --primary-purple: #5e35b1;
    --primary-green: #00c853;
    --secondary-orange: #ff9100;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f9f9f9;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.debut {
    color: var(--text-dark);
}

.invest {
    color: var(--secondary-orange);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    padding: 8px 0;
    position: relative;
    font-weight: 500;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-purple);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.language-selector {
    display: flex;
    gap: 10px;
}

.language-selector a {
    padding: 5px 8px;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
}

.language-selector a.active {
    background-color: var(--primary-purple);
    color: var(--text-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-green) 100%);
    color: var(--text-light);
    padding: 120px 0 80px;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.highlight {
    color: var(--secondary-orange);
    display: inline-block;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-orange);
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Why Invest Section */
.why-invest {
    padding: 80px 0;
    text-align: center;
}

.why-invest p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.stats-box {
    background-color: var(--primary-green);
    color: var(--text-light);
    border-radius: var(--border-radius);
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.stat-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 1.2rem;
}

.stat-highlight {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Our Solutions Section */
.our-solutions {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon img {
    max-width: 100%;
    max-height: 100%;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--primary-purple);
    color: var(--text-light);
}

.testimonials h2 {
    color: var(--text-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
}

/* Tools Section */
.tools-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.simulator-box {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.simulator-content {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.simulator-inputs {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.simulator-inputs input {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    width: 100%;
    font-size: 1rem;
}

.simulator-results {
    flex: 1;
    background-color: var(--primary-green);
    color: var(--text-light);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.simulator-results h4 {
    font-size: 2rem;
    margin: 10px 0;
}

/* Ready to Start Section */
.ready-to-start {
    padding: 80px 0;
    background-color: var(--primary-green);
    color: var(--text-light);
    text-align: center;
}

.ready-to-start h2,
.ready-to-start p {
    color: var(--text-light);
}

.contact-form {
    max-width: 700px;
    margin: 40px auto 0;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.submit-button {
    background-color: var(--primary-purple);
    color: var(--text-light);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #4527a0;
}

/* Footer */
footer {
    background-color: var(--primary-purple);
    color: var(--text-light);
    padding: 60px 0 30px;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-tagline {
    font-size: 0.9rem;
    margin: 15px 0;
}

.footer-contact {
    font-size: 0.9rem;
}

.footer-contact a {
    display: inline-block;
    margin: 5px 0;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--secondary-orange);
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-orange);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-orange);
}

.social-icons img {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .simulator-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 50px 0;
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .form-row {
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .stats-box {
        padding: 20px;
    }
    
    .stat-title {
        font-size: 1.3rem;
    }
    
    .stat-description {
        font-size: 1rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}