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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #1e1e1e 0%, #000000 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 4rem;
}

.products-story {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.story-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.story-section h3 {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.story-section .vision {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.products-section {
    width: 100%;
}

.products-section h3 {
    font-size: 1.5rem;
    font-weight: normal;
    text-align: center;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.product-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.product-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon svg {
    width: 100%;
    height: 100%;
}

.product-card h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.product-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

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

h2 {
    font-size: 1.1rem;
    font-weight: normal;
    letter-spacing: 0em;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.trust-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: -2rem;
}

.trust-text {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.boulders-logo {
    height: 18px;
    width: auto;
    opacity: 1;
}

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

.cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    font-weight: 500;
    text-align: left;
}

.cta-button-disabled {
    padding: 1rem 2rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    cursor: not-allowed;
    white-space: nowrap;
    text-align: left;
}

.cta-button:hover {
    background: #fff;
    color: #000;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.modal-close:hover {
    opacity: 1;
}

.modal-content h3 {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 1.5rem;
    color: #fff;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
}

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

.modal-content .cta-button {
    width: 100%;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .logo {
        max-width: 300px;
    }
    
    .container {
        gap: 3rem;
        min-height: auto;
        padding: 3rem 1.5rem;
    }
    
    h2 {
        font-size: 1rem;
    }
    
    .trust-line {
        margin-top: -1.5rem;
    }
    
    .cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .products-story {
        padding: 4rem 1.5rem;
        gap: 4rem;
    }
    
    .story-section h3,
    .products-section h3 {
        font-size: 1.25rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .product-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 250px;
    }
    
    h2 {
        font-size: 0.9rem;
    }
    
    .trust-line {
        margin-top: -1rem;
    }
    
    .trust-text {
        font-size: 0.65rem;
    }
    
    .boulders-logo {
        height: 16px;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 1.5rem 1rem;
    }
    
    .copyright,
    .footer-nav {
        font-size: 0.7rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .modal-content h3 {
        font-size: 1.25rem;
    }
    
    .products-story {
        padding: 3rem 1rem;
        gap: 3rem;
    }
    
    .story-section p {
        font-size: 1rem;
    }
}

