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

:root {
    --primary-color: #4A5568;
    --secondary-color: #2D3748;
    --accent-color: #718096;
    --text-primary: #1A202C;
    --text-secondary: #4A5568;
    --text-light: #718096;
    --background-white: #FFFFFF;
    --background-light: #F7FAFC;
    --background-gray: #EDF2F7;
    --border-color: #E2E8F0;
    --success-color: #38A169;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.5;
    color: var(--text-primary);
    background-color: var(--background-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--primary-color);
}

.section-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

/* Key Points Section */
.key-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.key-point {
    background: var(--background-white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.key-point h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.key-point p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Product Details */
.product-details {
    background: var(--background-light);
    padding: var(--spacing-sm);
    border-radius: 6px;
    margin: var(--spacing-sm) 0;
    font-size: 0.875rem;
}

.product-details p {
    margin: var(--spacing-xs) 0;
    color: var(--text-secondary);
}

.product-details strong {
    color: var(--text-primary);
}

/* Risk Notice */
.risk-notice {
    background: #FFF5F5;
    border: 1px solid #FEB2B2;
    border-radius: 8px;
    padding: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.risk-notice h3 {
    color: #C53030;
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.risk-notice p {
    color: #742A2A;
    margin: 0;
    line-height: 1.6;
}

/* Header */
.header {
    background: var(--background-white);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--border-color);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-svg {
    width: 48px;
    height: 48px;
}

.brand-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

/* Hero Section */
.hero {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-gray) 100%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
}

.hero-image {
    margin: var(--spacing-xl) 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hero-image-placeholder {
    background: var(--background-white);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: var(--spacing-xxl);
    margin: var(--spacing-xl) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.cta-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: background-color 0.2s ease;
}

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

/* About Section */
.about {
    padding: var(--spacing-xxl) 0;
    background: var(--background-white);
}

.about-image {
    margin: var(--spacing-xl) auto 0;
    max-width: 700px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.about-image-placeholder {
    background: var(--background-light);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: var(--spacing-xxl) 0;
    background: var(--background-light);
}

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

.feature-item {
    background: var(--background-white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    background: var(--background-light);
    border-radius: 50%;
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.feature-item p {
    color: var(--text-secondary);
}

/* Products Section */
.products {
    padding: var(--spacing-xxl) 0;
    background: var(--background-white);
}

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

.product-card {
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.product-image {
    margin-bottom: var(--spacing-md);
    border-radius: 8px;
    overflow: hidden;
    background: var(--background-light);
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image-placeholder {
    background: var(--background-light);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.product-title {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.purchase-button {
    background: var(--success-color);
    color: white;
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: background-color 0.2s ease;
    width: 100%;
    justify-content: center;
}

.purchase-button:hover {
    background: #2F855A;
}

/* Security Section */
.security {
    padding: var(--spacing-xxl) 0;
    background: var(--background-light);
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.security-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.compliance-notice {
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: var(--spacing-md);
    margin-top: var(--spacing-lg);
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.notice-icon {
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

.notice-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.security-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.security-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.security-image-placeholder {
    background: var(--background-white);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

/* Why Choose Section */
.why-choose {
    padding: var(--spacing-xxl) 0;
    background: var(--background-white);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.reason-item {
    text-align: center;
    padding: var(--spacing-lg);
}

.reason-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    border-radius: 12px;
    margin: 0 auto var(--spacing-md);
}

.reason-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.reason-item p {
    color: var(--text-secondary);
}

/* Trust Section */
.trust {
    padding: var(--spacing-xxl) 0;
    background: var(--background-light);
}

.trust-content {
    text-align: center;
}

.trust-text {
    margin-bottom: var(--spacing-xl);
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.stat-item {
    background: var(--background-white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto var(--spacing-sm);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: var(--spacing-xxl) 0;
    background: var(--background-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

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

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.contact-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
}

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

.contact-text {
    color: var(--text-secondary);
}

.contact-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.contact-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.contact-image-placeholder {
    background: var(--background-light);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: var(--spacing-xl) 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-lg);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

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

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

.footer-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.footer-links a {
    color: #CBD5E0;
    text-decoration: none;
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 4px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.footer-links a:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-info {
    text-align: right;
    max-width: 400px;
}

.footer-info p {
    color: #CBD5E0;
    margin-bottom: var(--spacing-xs);
}

.footer-disclaimer {
    font-size: 0.875rem;
    color: #A0AEC0;
}

/* Placeholder Styles */
.placeholder-icon, .icon {
    background: var(--accent-color);
    border-radius: 4px;
    display: inline-block;
}

.placeholder-icon {
    width: 64px;
    height: 64px;
}

.icon {
    width: 20px;
    height: 20px;
}

.placeholder-text {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--background-white);
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-md);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-banner-text {
    flex: 1;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

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

.cookie-banner-text a:hover {
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.cookie-btn {
    padding: var(--spacing-xs) var(--spacing-sm);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

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

.cookie-btn-accept:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.cookie-btn-reject {
    background: var(--background-white);
    color: var(--text-secondary);
}

.cookie-btn-reject:hover {
    background: var(--background-light);
}

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

.cookie-btn-customize:hover {
    background: var(--background-light);
}

/* 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: var(--spacing-md);
}

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

.cookie-modal-content {
    background: var(--background-white);
    border-radius: 8px;
    padding: var(--spacing-lg);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    margin-bottom: var(--spacing-md);
}

.cookie-modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.cookie-modal-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-category {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-xs);
}

.cookie-category-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.cookie-category-description {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

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

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

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

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

input:checked + .cookie-slider {
    background-color: var(--primary-color);
}

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

input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-actions {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: flex-end;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

.cookie-modal-btn {
    padding: var(--spacing-xs) var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

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

.cookie-modal-btn-cancel {
    background: var(--background-white);
    color: var(--text-secondary);
}

.cookie-modal-btn-cancel:hover {
    background: var(--background-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .key-points {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
    }
    
    .security-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }
    
    .hero-image-placeholder,
    .hero-image,
    .about-image-placeholder,
    .about-image,
    .security-image-placeholder,
    .security-image,
    .contact-image-placeholder {
    .contact-image {
        height: 250px;
        padding: var(--spacing-lg);
    }
    
    .hero-image img,
    .about-image img,
    .security-image img,
    .contact-image img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-image-placeholder,
    .hero-image,
    .about-image-placeholder,
    .about-image,
    .security-image-placeholder,
    .security-image,
    .contact-image-placeholder {
    .contact-image {
        height: 200px;
        padding: var(--spacing-md);
    }
    
    .hero-image img,
    .about-image img,
    .security-image img,
    .contact-image img {
        height: 200px;
    }
    
    .product-image-placeholder,
    .product-image img {
        height: 150px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-sm);
    }
    
    .cookie-banner-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-modal-content {
        margin: var(--spacing-sm);
        padding: var(--spacing-md);
    }
    
    .cookie-modal-actions {
        flex-direction: column;
    }
}

/* Icon and SVG Styles */
svg {
    display: block;
}

.logo-svg svg,
.footer-logo svg {
    width: 100%;
    height: 100%;
}

.feature-icon svg,
.reason-icon svg,
.stat-icon svg,
.contact-icon svg {
    width: 100%;
    height: 100%;
}

.icon svg {
    width: 100%;
    height: 100%;
}