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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #F8FAFC;
    background-color: #0F172A;
    overflow-x: hidden;
}

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

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

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #CBD5E1;
}

/* Images */
.feature-image, .product-image {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-image {
    height: 300px;
}

.feature-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
}

.product-image {
    height: 200px;
}

.product-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(255, 127, 127, 0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    color: white;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.35);
}

.btn-secondary {
    background: transparent;
    color: #6366F1;
    border: 2px solid #6366F1;
}

.btn-secondary:hover {
    background: #6366F1;
    color: white;
}

.btn-product {
    background: linear-gradient(135deg, #FF7F7F, #FF6B9D);
    color: white;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-product:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 127, 127, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.9) 50%, rgba(15, 23, 42, 0.8) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F8FAFC;
    letter-spacing: -0.025em;
}

.hero-content {
    max-width: 800px;
    width: 100%;
}

.hero-title {
    margin-bottom: 24px;
    background: linear-gradient(135deg, #F8FAFC 0%, #CBD5E1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    background: linear-gradient(135deg, #6366F1, #FF7F7F);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 80px 0;
}

.centered-section {
    text-align: center;
}

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

.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.feature-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.feature-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.feature-card h3 {
    margin-bottom: 16px;
    color: #F8FAFC;
}

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

.content-left, .content-right {
    padding: 0;
}

.feature-list {
    margin: 32px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.feature-bullet {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #6366F1, #FF7F7F);
    border-radius: 50%;
}

.image-placeholder {
    background: linear-gradient(135deg, #1E293B, #334155);
    border: 2px dashed rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    font-size: 1.125rem;
    font-weight: 500;
}

/* Products Section */
.products {
    background: rgba(30, 41, 59, 0.3);
}

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

.product-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.product-image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #1E293B, #334155);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    font-weight: 500;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.product-content {
    padding: 24px;
}

.product-content h3 {
    margin-bottom: 12px;
    color: #F8FAFC;
}

.product-content p {
    margin-bottom: 16px;
    font-size: 1rem;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: #6366F1;
    margin-bottom: 16px;
}

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

.feature-tag {
    background: rgba(99, 102, 241, 0.1);
    color: #A5B4FC;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.step {
    text-align: center;
    padding: 32px 24px;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 24px;
}

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

/* Analytics Section */
.analytics {
    background: rgba(30, 41, 59, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6366F1;
    margin-bottom: 8px;
}

.stat-label {
    color: #CBD5E1;
    font-size: 0.875rem;
}

/* SDK Integration */
.sdk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.sdk-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 32px;
}

.sdk-card h3 {
    margin-bottom: 16px;
    color: #F8FAFC;
}

.sdk-card p {
    margin-bottom: 24px;
}

.sdk-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sdk-features span {
    color: #94A3B8;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background: rgba(30, 41, 59, 0.3);
}

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

.contact-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.contact-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.contact-card h3 {
    margin-bottom: 16px;
    color: #F8FAFC;
}

.contact-card a {
    color: #6366F1;
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    color: #8B5CF6;
}

.contact-card p {
    color: #CBD5E1;
    font-size: 1rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    padding: 20px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.cookie-text {
    color: #CBD5E1;
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
}

.cookie-link {
    color: #6366F1;
    text-decoration: none;
    font-weight: 500;
    margin-left: 12px;
}

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

.cookie-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

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

.cookie-btn.accept {
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    color: white;
}

.cookie-btn.accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.cookie-btn.reject {
    background: #DC2626;
    color: white;
}

.cookie-btn.reject:hover {
    background: #B91C1C;
    transform: translateY(-1px);
}

.cookie-btn.customize {
    background: transparent;
    color: #6366F1;
    border: 1px solid #6366F1;
}

.cookie-btn.customize:hover {
    background: rgba(99, 102, 241, 0.1);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal-content {
    background: #1E293B;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.cookie-modal-header h3 {
    color: #F8FAFC;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    color: #94A3B8;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #F8FAFC;
}

.cookie-modal-body {
    padding: 24px;
}

.cookie-category {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cookie-category-header h4 {
    color: #F8FAFC;
    margin: 0;
}

.cookie-required {
    background: #10B981;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #475569;
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .toggle-slider {
    background-color: #6366F1;
}

.cookie-toggle input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.cookie-category p {
    color: #94A3B8;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-modal-footer {
    padding: 24px;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Footer */
.footer {
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    padding: 64px 0 32px;
}

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

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

.footer-brand p {
    font-size: 1rem;
    color: #64748B;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-column h4 {
    color: #F8FAFC;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: #94A3B8;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #6366F1;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.footer-bottom p {
    color: #64748B;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .container {
        padding: 0 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .split-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-modal-content {
        margin: 10px;
        max-height: 90vh;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 48px 0;
    }
    
    .features-grid,
    .products-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}