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

@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;600;700&display=swap');

body {
    font-family: 'Roboto Mono', monospace;
    background: #f5f0e8;
    color: #000;
    line-height: 1.6;
    position: relative;
}

/* Gradient Border on Left */
body::before {
    content: '';
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 12px;
    background: linear-gradient(180deg, 
        #ffc107 0%, 
        #ff9800 25%, 
        #ff5722 50%, 
        #e91e63 75%,
        #9c27b0 100%
    );
    z-index: 1000;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px 80px 40px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin-bottom: 80px;
}

.logo-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-logo {
    width: 50px;
    height: 50px;
}

h1 {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 50px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    font-size: 1rem;
    font-family: 'Courier New', Courier, monospace;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #000;
    color: #f5f0e8;
    border: 3px solid #000;
}

.btn-primary:hover {
    background: #333;
    border-color: #333;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #000;
    border: 3px solid #000;
}

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

/* Trust Stats */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

.stat-card {
    background: #f5f0e8;
    border: 3px solid #000;
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    body::before {
        width: 8px;
    }

    .hero {
        padding: 40px 20px 60px 20px;
    }

    h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }

    .hero-logo {
        width: 40px;
        height: 40px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        padding: 15px 30px;
    }

    .trust-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-card {
        padding: 40px 30px;
    }

    .stat-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }
}

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

    .logo-title {
        flex-direction: column;
        gap: 10px;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-card {
        padding: 35px 25px;
        border-radius: 25px;
    }
}
