/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #1a1a1a;
    line-height: 1.6;
}

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

/* Header Styles */
.header {
    /* background-color: #ffffff; */
    /* border-bottom: 2px solid #e5e7eb; */
    padding: 16px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    /* gap: 8px; */
    font-weight: 600;
    font-size: 20px;
    color: #1a1a1a;
}

.logo-icon {
    width: 32px;
    height: 32px;
    /* background-color: #16a34a; */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-symbol {
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    color: #4b5563;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.nav-item:hover {
    color: #1a1a1a;
}

.dropdown-arrow {
    font-size: 12px;
    color: #9ca3af;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Button Styles */
.btn-text {
    background: none;
    border: none;
    color: #4b5563;
    font-weight: 500;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-text:hover {
    color: #1a1a1a;
    background-color: #f3f4f6;
}

.btn-primary {
    background-color: #16a34a;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #15803d;
}

.btn-primary.large {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
}

.btn-secondary {
    background-color: white;
    color: #374151;
    border: 1px solid #d1d5db;
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    border-color: #9ca3af;
    background-color: #f9fafb;
}

.btn-secondary.large {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
}


.hero {
    /* background: linear-gradient(135deg, rgba(22, 163, 74, 0.1) 0%, rgba(248, 249, 250, 0.9) 100%), 
                url('./lockimage.png'); */
    /* background-size: cover;
    background-position: center;
    background-attachment: fixed; */
    padding: 20px 0 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #1a2d52;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: radial-gradient(circle at 30% 20%, rgba(22, 163, 74, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%); */
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ecfdf5;
    color: #166534;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    border: 1px solid #bbf7d0;
}

.badge-icon {
    font-size: 14px;
}

.hero-title {
    font-size: 64px;
    font-weight: 500;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: #16a34a;
    text-decoration: underline;
    text-decoration-color: #16a34a;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.hero-description {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

/* Companies Section */
.companies {
    background-color: white;
    padding: 60px 0;
    border-top: 1px solid #e5e7eb;
}

.companies .container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.companies-text {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.4;
    flex-shrink: 0;
}

.companies-logos {
    display: flex;
    align-items: center;
    gap: 48px;
    flex: 1;
}

.logo-item {
    color: #9ca3af;
    font-size: 18px;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.logo-item:hover {
    opacity: 1;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-item {
    text-align: center;
    background-color: #fff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-description {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Newsletter Section */

.newsletter-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 400px;
    margin: 32px auto 0; 
    border-radius: 12px;
    padding: 4px;
    border: 2px solid #6b7280;
}

.email-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 20px;
    color: #1d355a;
    font-size: 16px;
    outline: none;
    border-radius: 8px;
}

.email-input::placeholder {
    color: #182b4b;
    font-size: 16px;
}

.btn-notify {
    background-color: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-notify:hover {
    background-color: #e5e7eb;
}

.newsletter-note {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: #6c757d;
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #e5e7eb;
    margin-top: 80px;
}

.footer p {
    color: #6b7280;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navigation {
        display: none;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary.large,
    .btn-secondary.large {
        width: 100%;
        max-width: 280px;
    }
    
    .companies .container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .companies-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .companies-logos {
        gap: 16px;
    }
    
    .logo-item {
        font-size: 16px;
    }
}

/* Responsive Newsletter */
@media (max-width: 480px) {
    .newsletter-form {
        max-width: 320px;
        flex-direction: column;
        gap: 8px;
        padding: 8px;
    }
    
    .email-input {
        width: 100%;
        text-align: center;
    }
    
    .btn-notify {
        width: 100%;
    }
}
