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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    min-height: 100vh;
}

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

/* Header */
.header {
    background: #ffffff;
    border-bottom: 2px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.25rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.subtitle {
    font-size: 1.375rem;
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: -0.3px;
    max-width: 700px;
    margin: 0 auto;
}

/* Product Section */
.product-section {
    padding: 5rem 0;
    background: #ffffff;
}

.product-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-image img:hover {
    transform: translateY(-4px);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 12px;
    background: #f8f8f8;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    background: #ffffff;
    padding: 20px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 14px 18px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.carousel-prev {
    left: 16px;
}

.carousel-next {
    right: 16px;
}

.carousel-dots {
    text-align: center;
    padding: 20px 0;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 6px;
    background-color: #d0d0d0;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: #1a1a1a;
    transform: scale(1.3);
}

.product-badge {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.product-description {
    margin-bottom: 2rem;
    color: #4a4a4a;
    line-height: 1.8;
    font-size: 1.05rem;
}

.product-features {
    margin-bottom: 2.5rem;
    display: grid;
    gap: 0.875rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem;
    background: #f8f8f8;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid #1a1a1a;
}

.feature:hover {
    background: #f0f0f0;
    transform: translateX(4px);
}

.feature-icon {
    color: #1a1a1a;
    font-weight: bold;
    font-size: 1.3rem;
    min-width: 24px;
}

.product-specs {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid #e8e8e8;
}

.product-specs h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-size: 1.375rem;
    font-weight: 700;
}

.product-specs p {
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.product-price {
    margin-bottom: 2rem;
}

.price-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.btn-primary {
    background: #1a1a1a;
    color: #fff;
    padding: 1.125rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 16px rgba(26, 26, 26, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26, 26, 26, 0.4);
    background: #2d2d2d;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: #f8f8f8;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.comparison-item {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.comparison-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.comparison-item h3 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
}

.comparison-image {
    margin-bottom: 1.5rem;
}

.comparison-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.comparison-item p {
    margin-bottom: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    border-color: #1a1a1a;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.benefit-card p {
    color: #4a4a4a;
    line-height: 1.7;
}

/* Social Responsibility Section */
.social-responsibility {
    padding: 5rem 0;
    background: #f8f8f8;
}

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

.responsibility-image {
    margin-bottom: 2.5rem;
}

.responsibility-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.responsibility-content p {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.9;
}

/* Guarantee Section */
.guarantee {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
    color: #fff;
}

.guarantee .section-title {
    color: #fff;
}

.guarantee p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #ffffff;
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #1a1a1a;
    box-shadow: 0 4px 16px rgba(26, 26, 26, 0.1);
}

.faq-item h3 {
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.faq-item p {
    color: #4a4a4a;
    line-height: 1.9;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #f8f8f8;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    min-width: 200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-item strong {
    display: block;
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-item span {
    color: #666;
    font-size: 0.95rem;
}

.contact-item a {
    color: #1a1a1a;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 0 1.5rem;
}

.footer-legal {
    margin-bottom: 2.5rem;
}

.footer-legal h3 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.legal-info {
    margin-bottom: 2rem;
}

.legal-info p {
    color: #d0d0d0;
    margin-bottom: 0.75rem;
    line-height: 1.9;
}

.legal-info strong {
    color: #fff;
    font-weight: 600;
}

.health-notice {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.health-notice h4 {
    color: #fff;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.health-notice p {
    color: #d0d0d0;
    line-height: 1.9;
}

.contact-info-footer {
    margin-bottom: 2rem;
}

.contact-info-footer p {
    color: #d0d0d0;
    margin-bottom: 0.75rem;
    line-height: 1.9;
}

.contact-info-footer strong {
    color: #fff;
    font-weight: 600;
}

.contact-info-footer a {
    color: #d0d0d0;
    text-decoration: none;
}

.contact-info-footer a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom p {
    color: #999;
}

/* Legal Pages */
.legal-page {
    padding: 5rem 0;
    min-height: 60vh;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 2.75rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -1px;
}

.legal-page section {
    margin-bottom: 3.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e8e8e8;
}

.legal-page section:last-child {
    border-bottom: none;
}

.legal-page h2 {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-page p {
    margin-bottom: 1.25rem;
    color: #4a4a4a;
    line-height: 1.9;
    font-size: 1.05rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.25rem;
}

.legal-page ul li {
    margin-bottom: 0.75rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.legal-page a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 1px solid #1a1a1a;
}

.legal-page a:hover {
    color: #2d2d2d;
    border-bottom-color: #2d2d2d;
}

.withdrawal-form {
    background: #f8f8f8;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2.5rem 0;
    border: 1px solid #e8e8e8;
}

.withdrawal-form p {
    margin-bottom: 1.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 1rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .carousel-slides {
        height: 400px;
    }

    .legal-page h1 {
        font-size: 2rem;
    }
}

/* Image Placeholders */
img {
    max-width: 100%;
    height: auto;
}

/* Ensure images don't break layout if missing */
.product-image img,
.comparison-image img,
.advisor-image img {
    background-color: #f0f0f0;
    min-height: 200px;
    display: block;
}
