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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #0A1628;
    background-color: #FFFFFF;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Logo and Branding */
.logo-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A1628;
}

.logo {
    flex-shrink: 0;
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, #00E5A0 0%, #00B88F 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 229, 160, 0.3);
}

.product-button {
    background: #0A1628;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
}

.product-button:hover {
    background: #1a2638;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0A1628 0%, #1a2638 100%);
    color: white;
    padding: 2rem 0 4rem;
}

.hero-header {
    margin-bottom: 3rem;
}

.hero-header .logo-brand .brand-name {
    color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    text-align: center;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #8B95A1;
    line-height: 1.6;
}

.hero-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Price styling */
.product-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-period {
    font-size: 1rem;
    font-weight: 400;
    color: #64748B;
}

/* Product button variations */
.starter-btn {
    background: #00E5A0;
    color: white;
}

.starter-btn:hover {
    background: #00c589;
}

.professional-btn {
    background: #0A1628;
    color: white;
}

.professional-btn:hover {
    background: #1a2638;
}

.enterprise-btn {
    background: transparent;
    color: #0A1628;
    border: 2px solid #0A1628;
}

.enterprise-btn:hover {
    background: #0A1628;
    color: white;
}

/* Benefits section updates */
.benefit-icon {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
}

/* Integrations image */
.integrations-image {
    max-width: 600px;
    margin: 2rem auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.integrations-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Problem Section */
.problem {
    padding: 6rem 0;
    background: #F8FAFC;
    text-align: center;
}

.problem h2 {
    margin-bottom: 3rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: #F1F5F9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
    text-align: center;
}

.features h2 {
    margin-bottom: 3rem;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 229, 160, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: #F8FAFC;
    text-align: center;
}

.how-it-works h2 {
    margin-bottom: 4rem;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #00E5A0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

/* Products Section */
.products {
    padding: 6rem 0;
    text-align: center;
}

.products h2 {
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #E2E8F0;
    text-align: center;
    position: relative;
}

.product-item.featured {
    border-color: #00E5A0;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #00E5A0;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #F1F5F9;
}

.product-features li:last-child {
    border-bottom: none;
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: #F8FAFC;
    text-align: center;
}

.benefits h2 {
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-stats {
    font-size: 3rem;
    font-weight: 700;
    color: #00E5A0;
    margin-bottom: 1rem;
}

/* Use Cases Section */
.use-cases {
    padding: 6rem 0;
    text-align: center;
}

.use-cases h2 {
    margin-bottom: 3rem;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.use-case {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #E2E8F0;
    text-align: center;
}

.use-case-icon {
    width: 80px;
    height: 80px;
    background: #F1F5F9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

/* Integrations Section */
.integrations {
    padding: 6rem 0;
    background: #F8FAFC;
    text-align: center;
}

.integrations h2 {
    margin-bottom: 2rem;
}

.integrations-content {
    max-width: 600px;
    margin: 0 auto;
}

.integration-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.integration-placeholder {
    width: 120px;
    height: 60px;
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #64748B;
}

/* Contacts Section */
.contacts {
    padding: 6rem 0;
    text-align: center;
}

.contacts h2 {
    margin-bottom: 3rem;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 229, 160, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-item p {
    color: #64748B;
    margin: 0;
}

/* Footer */
.footer {
    background: #0A1628;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    flex: 1;
    max-width: 400px;
}

.footer-brand .logo-brand .brand-name {
    color: white;
}

.footer-brand p {
    color: #8B95A1;
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex: 1;
    justify-content: flex-end;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.footer-column a {
    color: #8B95A1;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #00E5A0;
}

.footer-bottom {
    border-top: 1px solid #1a2638;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #8B95A1;
    margin: 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.close:hover {
    color: #000;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #0A1628;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E2E8F0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00E5A0;
}

.submit-button {
    background: #00E5A0;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.submit-button:hover {
    background: #00c589;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0A1628;
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #E2E8F0;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.cookie-accept {
    background: #00E5A0;
    color: white;
}

.cookie-accept:hover {
    background: #00c589;
}

.cookie-reject {
    background: transparent;
    color: #E2E8F0;
    border: 2px solid #E2E8F0;
}

.cookie-reject:hover {
    background: #E2E8F0;
    color: #0A1628;
}

.cookie-customize {
    background: #1a2638;
    color: white;
    border: 2px solid #1a2638;
}

.cookie-customize:hover {
    background: #2a3648;
    border-color: #2a3648;
}

.cookie-link {
    color: #00E5A0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Cookie Customization Panel */
.cookie-customization {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #1a2638;
}

.cookie-customization h3 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.2rem;
}

.cookie-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.cookie-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category-label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    cursor: pointer;
}

.cookie-category-label input[type="checkbox"] {
    margin-right: 0.5rem;
}

.cookie-category-name {
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
}

.cookie-category-desc {
    font-size: 0.85rem;
    color: #8B95A1;
    margin-left: 1.5rem;
}

.cookie-custom-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cookie-save {
    background: #00E5A0;
    color: white;
}

.cookie-save:hover {
    background: #00c589;
}

.cookie-cancel {
    background: transparent;
    color: #E2E8F0;
    border: 2px solid #E2E8F0;
}

.cookie-cancel:hover {
    background: #E2E8F0;
    color: #0A1628;
}
/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-categories {
        grid-template-columns: 1fr;
    }
    
    .cookie-custom-actions {
        flex-direction: column;
    }
    
    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 2rem 0 4rem;
    }
    
    .hero-header {
        margin-bottom: 2rem;
    }
    
    .steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .product-item.featured {
        transform: none;
    }
    
    .integration-logos {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }
}