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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, 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 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
}

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

p {
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Colors */
:root {
    --primary: #2563EB;
    --primary-dark: #1d4ed8;
    --secondary: #64748b;
    --accent: #DC2626;
    --success: #16A34A;
    --warning: #D97706;
    --error: #DC2626;
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
}

/* Buttons */
.cta-button, .call-button, .product-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-button.primary, .product-button {
    background-color: var(--primary);
    color: white;
}

.cta-button.primary:hover, .product-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.cta-button.secondary:hover {
    background-color: var(--primary);
    color: white;
}

.call-button {
    background-color: var(--accent);
    color: white;
    font-size: 14px;
    padding: 10px 20px;
}

.call-button:hover {
    background-color: #b91c1c;
}

/* Icons */
.icon {
    width: 20px;
    height: 20px;
}

.feature-icon, .step-icon svg, .category-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

/* Image Placeholders */
.image-placeholder {
    background-color: var(--neutral-200);
    border: 2px dashed var(--neutral-400);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-500);
    font-weight: 500;
    min-height: 200px;
}

.image-placeholder.small {
    min-height: 60px;
    width: 60px;
    border-radius: 50%;
    font-size: 12px;
}

/* Header */
.header {
    background-color: white;
    border-bottom: 1px solid var(--neutral-200);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-800);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--neutral-50) 0%, white 100%);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--neutral-800);
}

.highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--neutral-600);
    margin-bottom: 32px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--neutral-700);
    font-weight: 500;
}

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

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

.section-title {
    color: var(--neutral-800);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--neutral-50);
}

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

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon-wrapper .feature-icon {
    color: white;
    width: 32px;
    height: 32px;
}

.feature-title {
    color: var(--neutral-800);
    margin-bottom: 12px;
}

.feature-description {
    color: var(--neutral-600);
    margin-bottom: 0;
}

/* About Section */
.about {
    padding: 80px 0;
}

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

.about-description {
    font-size: 1.125rem;
    color: var(--neutral-600);
    margin-bottom: 24px;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    color: var(--neutral-600);
    font-size: 0.875rem;
    font-weight: 500;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: var(--neutral-50);
}

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

.step {
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.step-icon svg {
    color: white;
    width: 40px;
    height: 40px;
}

.step-title {
    color: var(--neutral-800);
    margin-bottom: 12px;
}

.step-description {
    color: var(--neutral-600);
    margin-bottom: 0;
}

/* Products Section */
.products {
    padding: 80px 0;
}

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

.product-card {
    background: white;
    border: 2px solid var(--neutral-200);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.product-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-header {
    margin-bottom: 32px;
}

.product-title {
    color: var(--neutral-800);
    margin-bottom: 8px;
}

.product-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.product-price span {
    font-size: 1rem;
    color: var(--neutral-500);
}

.product-features {
    margin-bottom: 32px;
    text-align: left;
}

.feature {
    padding: 8px 0;
    color: var(--neutral-700);
    border-bottom: 1px solid var(--neutral-100);
}

.feature:last-child {
    border-bottom: none;
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background-color: var(--neutral-50);
}

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

.category-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.category-card:hover {
    transform: translateY(-2px);
}

.category-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.category-icon svg {
    color: white;
    width: 24px;
    height: 24px;
}

.category-title {
    color: var(--neutral-800);
    margin-bottom: 8px;
}

.category-description {
    color: var(--neutral-600);
    font-size: 0.875rem;
    margin-bottom: 0;
}

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

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

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--neutral-700);
    font-size: 1.125rem;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-name {
    font-weight: 600;
    color: var(--neutral-800);
}

.author-title {
    color: var(--neutral-500);
    font-size: 0.875rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--neutral-50);
}

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

.contact-description {
    font-size: 1.125rem;
    color: var(--neutral-600);
    margin-bottom: 32px;
}

.contact-details {
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    color: white;
    width: 24px;
    height: 24px;
}

.contact-label {
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 4px;
}

.contact-value {
    color: var(--neutral-600);
    text-decoration: none;
}

.contact-value:hover {
    color: var(--primary);
}

/* Footer */
.footer {
    background-color: var(--neutral-800);
    color: var(--neutral-300);
    padding: 64px 0 24px;
}

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

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

.footer-description {
    color: var(--neutral-400);
    margin-top: 16px;
}

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

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

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

.footer-list li {
    margin-bottom: 8px;
}

.footer-list a {
    color: var(--neutral-400);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-list a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--neutral-700);
}

.footer-copyright p {
    color: var(--neutral-500);
    margin-bottom: 0;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--neutral-400);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-phone:hover {
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid var(--primary);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

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

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

.cookie-banner-text {
    flex: 1;
    color: var(--neutral-700);
    font-size: 14px;
    line-height: 1.4;
}

.cookie-banner-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cookie-btn.accept {
    background-color: var(--primary);
    color: white;
}

.cookie-btn.accept:hover {
    background-color: var(--primary-dark);
}

.cookie-btn.reject {
    background-color: var(--neutral-200);
    color: var(--neutral-700);
}

.cookie-btn.reject:hover {
    background-color: var(--neutral-300);
}

.cookie-btn.customize {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.cookie-btn.customize:hover {
    background-color: var(--primary);
    color: white;
}

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

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 12px;
    padding: 32px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    margin-bottom: 24px;
}

.cookie-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 8px;
}

.cookie-modal-description {
    color: var(--neutral-600);
    font-size: 14px;
    line-height: 1.5;
}

.cookie-category {
    margin-bottom: 24px;
    padding: 20px;
    border: 1px solid var(--neutral-200);
    border-radius: 8px;
}

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

.cookie-category-title {
    font-weight: 600;
    color: var(--neutral-800);
    margin: 0;
}

.cookie-toggle {
    position: relative;
    width: 48px;
    height: 24px;
    background: var(--neutral-300);
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cookie-toggle.active {
    background: var(--primary);
}

.cookie-toggle.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.2s;
}

.cookie-toggle.active::after {
    transform: translateX(24px);
}

.cookie-category-description {
    color: var(--neutral-600);
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

.cookie-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--neutral-200);
}

.cookie-modal-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-modal-btn.primary {
    background-color: var(--primary);
    color: white;
}

.cookie-modal-btn.primary:hover {
    background-color: var(--primary-dark);
}

.cookie-modal-btn.secondary {
    background-color: var(--neutral-200);
    color: var(--neutral-700);
}

.cookie-modal-btn.secondary:hover {
    background-color: var(--neutral-300);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content img,
    .about-content img,
    .contact-content img {
        height: 250px !important;
    }
    
    .testimonial-card img {
        width: 50px !important;
        height: 50px !important;
    }
    
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-content img,
    .about-content img,
    .contact-content img {
        height: 200px !important;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .cookie-banner-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-modal-content {
        padding: 24px;
        margin: 10px;
    }
    
    .cookie-modal-actions {
        flex-direction: column;
    }
}