/* Reset and Base Styles */
* {
    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: #2A2A2A;
    background-color: #FAFAFA;
}

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: #6B7280;
}

a {
    color: #4ECDC4;
    text-decoration: none;
}

a:hover {
    color: #FF6B47;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #FF6B47, #4ECDC4);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 71, 0.3);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #2A2A2A;
    padding: 12px 24px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: #4ECDC4;
    color: #4ECDC4;
}

.btn-outline {
    background: transparent;
    color: #4ECDC4;
    padding: 8px 16px;
    border: 1px solid #4ECDC4;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: #4ECDC4;
    color: white;
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.centered-section .container > * {
    margin-left: auto;
    margin-right: auto;
}

.centered-section .container > * {
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1F2937;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    color: white;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 60px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.brand-name {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.hero-headline {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #D1D5DB;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.placeholder-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #374151, #4B5563);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    font-weight: 500;
    border: 1px solid #6B7280;
}

/* Services Section */
.services {
    background: white;
}

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

.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #FAFAFA;
    border: 1px solid #E5E7EB;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

/* How It Works */
.how-it-works {
    background: #F9FAFB;
}

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

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FF6B47;
    margin-bottom: 1rem;
}

/* Products Section */
.products {
    background: white;
}

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

.product-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-card .placeholder-image {
    height: 200px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
    color: #6B7280;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: #FF6B47;
    margin: 1rem 0;
}

.product-cta {
    margin-top: 1rem;
}

/* Why Choose Section */
.why-choose {
    background: #F9FAFB;
}

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

.feature {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

/* Technology Section */
.technology {
    background: white;
}

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

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tech-feature h3 {
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.tech-visual .placeholder-image {
    height: 400px;
    background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
    color: #6B7280;
}

/* Client Portal Section */
.client-portal {
    background: #F9FAFB;
}

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

.portal-feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

/* Pricing Section */
.pricing {
    background: white;
}

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

.pricing-card {
    padding: 2rem;
    background: #FAFAFA;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    text-align: center;
}

.pricing-card h3 {
    color: #1F2937;
    margin-bottom: 1rem;
}

/* Contacts Section */
.contacts {
    background: #F9FAFB;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-item h3 {
    color: #1F2937;
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
}

.contact-item a {
    color: #4ECDC4;
    font-weight: 500;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .brand {
    margin-bottom: 1rem;
}

.footer-brand .brand-name {
    color: white;
    font-size: 1.5rem;
}

.footer-brand p {
    color: #D1D5DB;
    max-width: 400px;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-contact h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-contact p {
    color: #D1D5DB;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: #D1D5DB;
}

.footer-contact a:hover {
    color: #4ECDC4;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #D1D5DB;
}

.footer-section ul li a:hover {
    color: #4ECDC4;
}

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

.footer-bottom p {
    color: #9CA3AF;
    margin: 0;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1F2937;
    color: white;
    padding: 1.5rem 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 2px solid #4ECDC4;
}

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

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

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

.cookie-text p {
    margin: 0;
    color: #D1D5DB;
}

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

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

.cookie-accept {
    background: #4ECDC4;
    color: white;
}

.cookie-accept:hover {
    background: #45B7B8;
}

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

.cookie-reject:hover {
    background: #E55A3C;
}

.cookie-customize {
    background: transparent;
    color: #D1D5DB;
    border: 1px solid #6B7280;
}

.cookie-customize:hover {
    background: #374151;
    border-color: #9CA3AF;
    color: white;
}

.cookie-save {
    background: #4ECDC4;
    color: white;
}

.cookie-save:hover {
    background: #45B7B8;
}

.cookie-cancel {
    background: transparent;
    color: #D1D5DB;
    border: 1px solid #6B7280;
}

.cookie-cancel:hover {
    background: #374151;
    border-color: #9CA3AF;
    color: white;
}

.cookie-link {
    color: #4ECDC4;
    text-decoration: underline;
    font-size: 0.9rem;
}

.cookie-link:hover {
    color: #FF6B47;
}

/* Cookie Customization */
.cookie-customization {
    max-width: 1200px;
    margin: 1rem auto 0;
    padding: 0 20px;
    border-top: 1px solid #374151;
    padding-top: 1rem;
}

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

.cookie-category {
    background: #374151;
    padding: 1rem;
    border-radius: 8px;
}

.cookie-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.cookie-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid #6B7280;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #4ECDC4;
    border-color: #4ECDC4;
}

.cookie-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.cookie-checkbox input[type="checkbox"]:disabled + .checkmark {
    background: #6B7280;
    border-color: #6B7280;
}

.cookie-info strong {
    color: white;
    display: block;
    margin-bottom: 0.25rem;
}

.cookie-info p {
    color: #D1D5DB;
    font-size: 0.875rem;
    margin: 0;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero {
        min-height: 70vh;
        padding: 40px 0;
    }
    
    .hero-image {
        max-width: 100%;
        height: 250px;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .tech-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .services-grid,
    .process-grid,
    .products-grid,
    .features-grid,
    .portal-features,
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-categories {
        grid-template-columns: 1fr;
    }
    
    .cookie-custom-actions {
        flex-direction: column;
        align-items: center;
    }
}