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

body {
    font-family: 'Space Mono', 'Courier New', monospace, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #3E2723;
    background: #EFDECD;
    min-height: 100vh;
}

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

.header {
    width: 100%;
    background: #EFDECD;
    border-bottom: 1px solid #D4C4B0;
}

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

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #3E2723;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: #6D4C41;
}

.main-content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EFDECD;
    position: relative;
}

.hero {
    max-width: 900px;
    text-align: center;
    animation: fadeInUp 1s ease;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-block;
    background: #8B6F47;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #3E2723;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero .subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 3rem;
    color: #6D4C41;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.smol-section {
    background: #F5EDE4;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(62, 39, 35, 0.08);
    border: 1px solid #D4C4B0;
    margin: 4rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.smol-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #3E2723;
    margin-bottom: 1rem;
    text-align: center;
}

.smol-description {
    color: #6D4C41;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

.cta-section {
    background: transparent;
    border-radius: 0;
    padding: 3rem 0;
    box-shadow: none;
    border: none;
    margin: 3rem 0;
}

.cta-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #3E2723;
    margin-bottom: 1rem;
    text-align: center;
}

.cta-section p {
    color: #6D4C41;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #8B6F47;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 111, 71, 0.3);
    background: #6D4C41;
}

.btn-secondary {
    background: #F5EDE4;
    color: #3E2723;
    border: 2px solid #8B6F47;
}

.btn-secondary:hover {
    background: #8B6F47;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 111, 71, 0.2);
}

.footer {
    background: #3E2723;
    color: #EFDECD;
    padding: 2.5rem 0;
    text-align: center;
}

.footer-content {
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #EFDECD;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.footer-product {
    color: #D4C4B0;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-copyright {
    color: #D4C4B0;
    font-size: 0.85rem;
    opacity: 0.7;
}

.geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.04;
    background-image:
            radial-gradient(circle at 25% 25%, #6D4C41 2px, transparent 2px),
            radial-gradient(circle at 75% 75%, #8B6F47 1px, transparent 1px);
    background-size: 100px 100px, 60px 60px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .smol-section {
        padding: 2rem;
    }

    .smol-section h2 {
        font-size: 1.5rem;
    }

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

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}

/* Modal styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #F5EDE4;
    padding: 2rem;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(62, 39, 35, 0.3);
    border: 1px solid #D4C4B0;
}

.modal h3 {
    color: #3E2723;
    margin-bottom: 1rem;
}

.modal-overlay.show {
    display: block;
}

.modal .btn {
    text-align: center !important;
    justify-content: center !important;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #D4C4B0;
    border-radius: 8px;
    font-size: 1rem;
    background: #EFDECD;
    color: #3E2723;
}

.form-input:focus {
    outline: none;
    border-color: #8B6F47;
    box-shadow: 0 0 0 2px rgba(139, 111, 71, 0.2);
}

.form-textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #D4C4B0;
    border-radius: 8px;
    height: 80px;
    resize: vertical;
    font-family: inherit;
    background: #EFDECD;
    color: #3E2723;
}

.form-textarea:focus {
    outline: none;
    border-color: #8B6F47;
    box-shadow: 0 0 0 2px rgba(139, 111, 71, 0.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}