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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    line-height: 1.5;
    color: #6b7280;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: #4F46E5;
    color: white;
    border-color: #4F46E5;
}

.btn-primary:hover {
    background-color: #3730A3;
    border-color: #3730A3;
}

.btn-secondary {
    background-color: transparent;
    color: #4F46E5;
    border-color: #4F46E5;
}

.btn-secondary:hover {
    background-color: #4F46E5;
    color: white;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.brand-name {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Problem Solution */
.problem-solution {
    padding: 80px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.problem-card, .solution-card {
    padding: 32px;
    border-radius: 16px;
    text-align: center;
}

.problem-card {
    background-color: #fef2f2;
    border: 2px solid #fee2e2;
}

.solution-card {
    background-color: #eff6ff;
    border: 2px solid #dbeafe;
}

.problem-card .icon, .solution-card .icon {
    margin-bottom: 24px;
}

.problem-card h3, .solution-card h3 {
    margin-bottom: 16px;
    color: #1f2937;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    margin-bottom: 16px;
    color: #1f2937;
}

.section-header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.bento-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.bento-item.large {
    grid-column: span 2;
}

.bento-item.wide {
    grid-column: span 2;
}

.bento-item .icon {
    margin-bottom: 16px;
}

.bento-item h3 {
    margin-bottom: 12px;
    color: #1f2937;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #4F46E5;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step h3 {
    margin-bottom: 16px;
    color: #1f2937;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.product-image {
    width: 100%;
    height: 200px;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    margin-bottom: 12px;
    color: #1f2937;
}

.product-info p {
    margin-bottom: 16px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4F46E5;
    margin-bottom: 16px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.feature-tag {
    background-color: #e0e7ff;
    color: #4F46E5;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Business Benefits */
.business-benefits {
    padding: 80px 0;
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.content-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefits-list {
    list-style: none;
    margin: 24px 0;
}

.benefits-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #6b7280;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4F46E5;
    font-weight: bold;
}

/* Privacy Section */
.privacy-security {
    padding: 80px 0;
    background-color: #f8fafc;
}

.privacy-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.privacy-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.privacy-card .icon {
    margin-bottom: 24px;
}

.privacy-card h3 {
    margin-bottom: 16px;
    color: #1f2937;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

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

.testimonial-card {
    background-color: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.testimonial-card p {
    font-size: 1.125rem;
    margin-bottom: 24px;
    color: #1f2937;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #1f2937;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Use Cases */
.use-cases {
    padding: 80px 0;
    background-color: #f8fafc;
}

.use-case-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    border-bottom: 1px solid #e5e7eb;
}

.tab-btn {
    padding: 16px 24px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: #4F46E5;
    border-bottom-color: #4F46E5;
}

.tab-panel {
    display: none;
    padding: 32px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    margin-bottom: 16px;
    color: #1f2937;
}

/* Contact Section */
.contacts {
    padding: 80px 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.contact-card {
    text-align: center;
    padding: 32px;
    background-color: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.contact-card .icon {
    margin-bottom: 16px;
}

.contact-card h3 {
    margin-bottom: 12px;
    color: #1f2937;
}

.contact-card p {
    color: #6b7280;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand .logo-section {
    margin-bottom: 16px;
}

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

.footer-brand p {
    color: #9ca3af;
    margin-bottom: 16px;
}

.footer-brand .hero-subtitle {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.4;
    margin-bottom: 0;
}
.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
    color: #9ca3af;
}

.footer-column ul li a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
}

/* Centered Content */
.centered-content {
    text-align: center;
}

.centered-content .container {
    text-align: center;
}

.centered-content .section-header,
.centered-content .bento-grid,
.centered-content .steps,
.centered-content .product-grid,
.centered-content .privacy-features,
.centered-content .testimonial-grid,
.centered-content .use-case-tabs {
    text-align: center;
}

.centered-content .content-split {
    text-align: left;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-text h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.cookie-text p {
    margin: 0;
    color: #e5e7eb;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-size: 0.875rem;
}

.cookie-btn-primary {
    background-color: #4F46E5;
    color: white;
}

.cookie-btn-primary:hover {
    background-color: #3730A3;
}

.cookie-btn-secondary {
    background-color: transparent;
    color: #e5e7eb;
    border: 1px solid #6b7280;
}

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

.cookie-btn-tertiary {
    background-color: #374151;
    color: #e5e7eb;
    border: 1px solid #4b5563;
}

.cookie-btn-tertiary:hover {
    background-color: #4b5563;
    border-color: #6b7280;
}

.cookie-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    white-space: nowrap;
}

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

/* Cookie Customization Panel */
.cookie-customization {
    background-color: #374151;
    border-top: 1px solid #4b5563;
    padding: 24px;
    margin-top: 16px;
}

.cookie-custom-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-custom-content h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.cookie-categories {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.cookie-category {
    background-color: #4b5563;
    padding: 16px;
    border-radius: 8px;
}

.cookie-category-header {
    margin-bottom: 8px;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: white;
    font-weight: 500;
}

.cookie-toggle input[type="checkbox"] {
    position: relative;
    width: 44px;
    height: 24px;
    appearance: none;
    background-color: #6b7280;
    border-radius: 12px;
    transition: background-color 0.2s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
    background-color: #4F46E5;
}

.cookie-toggle input[type="checkbox"]:disabled {
    background-color: #4F46E5;
    opacity: 0.7;
}

.cookie-toggle input[type="checkbox"]::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
    transform: translateX(20px);
}

.cookie-category-desc {
    color: #d1d5db;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

.cookie-custom-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .hero-img {
        height: 250px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .content-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .content-img {
        height: 200px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .bento-item.large,
    .bento-item.wide {
        grid-column: span 1;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .cookie-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .cookie-custom-actions {
        flex-direction: column;
    }
    
    .cookie-categories {
        gap: 12px;
    }
}