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

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

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

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

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

.logo {
    font-size: 2.25rem;
    font-weight: 900;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.header-nav {
    display: flex;
    gap: 2.5rem;
}

.header-nav a {
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.header-nav a:hover {
    color: #2563eb;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.header-nav a:hover::after {
    width: 100%;
}

/* Hero Section - Product Focused */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
    color: #fff;
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="3" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-product-visual {
    position: relative;
}

.product-main-image {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.product-main-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.product-badge-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(16, 185, 129, 0.95);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.hero-content {
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-content h1 {
    font-size: 3.75rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
}

.hero-subtitle-main {
    font-size: 2.5rem;
    font-weight: 400;
    opacity: 0.95;
}

.hero-rating-large {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stars-large {
    font-size: 2rem;
    color: #fbbf24;
    letter-spacing: 4px;
}

.rating-details {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.rating-score {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.rating-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.rating-total {
    font-size: 1rem;
    opacity: 0.9;
}

.rating-sales {
    font-size: 0.875rem;
    opacity: 0.8;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-specs-highlight {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.spec-highlight {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.spec-highlight strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.spec-highlight span {
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero-cta-section {
    margin-top: 2.5rem;
}

.btn-hero-primary {
    display: block;
    background: #ffffff;
    color: #2563eb;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.btn-hero-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    background: #f8fafc;
}

.btn-text-main {
    display: block;
    font-size: 1.5rem;
}

.btn-text-sub {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.trust-indicators-inline {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    opacity: 0.9;
}

.trust-indicators-inline span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Trust Bar */
.trust-bar {
    background: #f8fafc;
    padding: 3rem 0;
    border-bottom: 2px solid #e2e8f0;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-stat {
    text-align: center;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.trust-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 600;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0f172a;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
}

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

.product-gallery {
    position: sticky;
    top: 120px;
}

.gallery-main {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.carousel-container {
    position: relative;
    width: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    background: #f8fafc;
}

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

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

@keyframes fadeIn {
    from { opacity: 0; transform: scale(1.05); }
    to { opacity: 1; transform: scale(1); }
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #2563eb;
    border: none;
    padding: 20px 24px;
    font-size: 36px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.carousel-prev {
    left: 25px;
}

.carousel-next {
    right: 25px;
}

.carousel-dots {
    text-align: center;
    padding: 30px 0;
    background: #ffffff;
}

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

.dot.active,
.dot:hover {
    background-color: #2563eb;
    transform: scale(1.4);
}

.product-details-content {
    padding: 2rem 0;
}

.details-header {
    margin-bottom: 2.5rem;
}

.details-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0f172a;
    font-weight: 800;
}

.certification-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.specs-table {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    border: 2px solid #e2e8f0;
}

.spec-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 1.25rem;
    border-bottom: 1px solid #e2e8f0;
    align-items: center;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row.highlight {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 12px;
    margin: 0.5rem 0;
    border: 2px solid #bfdbfe;
}

.spec-label {
    font-weight: 600;
    color: #475569;
}

.spec-value {
    font-weight: 700;
    color: #0f172a;
    text-align: right;
}

.key-features-box {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    border: 2px solid #e2e8f0;
}

.key-features-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
    font-weight: 800;
}

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

.features-list li {
    padding: 1rem;
    color: #475569;
    line-height: 1.8;
    font-size: 1.05rem;
    border-bottom: 1px solid #e2e8f0;
}

.features-list li:last-child {
    border-bottom: none;
}

.btn-primary-large {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #fff;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
}

/* Key Benefits Section */
.key-benefits-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

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

.benefit-card-large {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefit-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.benefit-icon-large {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.benefit-card-large h3 {
    margin-bottom: 1.25rem;
    color: #0f172a;
    font-size: 1.75rem;
    font-weight: 800;
}

.benefit-description {
    color: #64748b;
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.benefit-detail {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #1e40af;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
}

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

.steps-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.step-number-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.step-content h3 {
    margin-bottom: 1rem;
    color: #0f172a;
    font-size: 1.5rem;
    font-weight: 800;
}

.step-content p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.05rem;
}

.step-arrow {
    font-size: 3rem;
    color: #2563eb;
    font-weight: 900;
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

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

.review-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.review-stars {
    color: #fbbf24;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.review-author {
    font-weight: 700;
    color: #0f172a;
}

.review-text {
    color: #475569;
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.review-verified {
    color: #10b981;
    font-size: 0.875rem;
    font-weight: 600;
}

.reviews-cta {
    text-align: center;
}

.btn-secondary {
    background: #ffffff;
    color: #2563eb;
    padding: 1.25rem 3rem;
    border: 2px solid #2563eb;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

/* Comparison Section */
.comparison-section {
    padding: 6rem 0;
    background: #ffffff;
}

.comparison-table {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #fff;
    padding: 2rem;
    font-weight: 800;
    font-size: 1.125rem;
}

.comparison-feature {
    font-weight: 800;
}

.comparison-product {
    text-align: center;
}

.comparison-product.highlight {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.5rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
    align-items: center;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:nth-child(even) {
    background: #f8fafc;
}

.comparison-value {
    text-align: center;
    font-weight: 600;
    color: #475569;
}

.comparison-value.highlight {
    color: #2563eb;
    font-weight: 800;
    font-size: 1.125rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item-large {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item-large:hover {
    border-color: #2563eb;
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    transform: translateX(5px);
}

.faq-item-large h3 {
    color: #0f172a;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 800;
}

.faq-item-large p {
    color: #64748b;
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.cta-content p {
    font-size: 1.5rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-final {
    background: #ffffff;
    color: #2563eb;
    padding: 1.5rem 4rem;
    border: none;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta-final:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    background: #f8fafc;
}

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

.contact-intro {
    text-align: center;
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2.5rem;
}

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

.contact-item {
    text-align: center;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 20px;
    min-width: 250px;
    border: 2px solid #bfdbfe;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.contact-item strong {
    display: block;
    font-size: 1.4rem;
    color: #1e40af;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

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

/* Footer */
.footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    padding: 5rem 0 2rem;
}

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

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

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

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

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

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

.health-notice h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 800;
}

.health-notice p {
    color: #cbd5e1;
    line-height: 2;
    font-size: 1.05rem;
}

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

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

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

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

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
}

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

.footer-bottom p {
    color: #94a3b8;
}

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

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 3.5rem;
    color: #0f172a;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.legal-page section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #e2e8f0;
}

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

.legal-page h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
    font-weight: 800;
}

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

.legal-page p {
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 2;
    font-size: 1.1rem;
}

.legal-page ul {
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.legal-page ul li {
    margin-bottom: 0.75rem;
    color: #475569;
    line-height: 2;
}

.legal-page a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-page a:hover {
    color: #1e40af;
    text-decoration: underline;
}

.withdrawal-form {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    border: 2px solid #e2e8f0;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-details-grid {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        position: static;
    }
}

@media (max-width: 1024px) {
    .benefits-grid-large,
    .reviews-grid,
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-specs-highlight {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 1.5rem;
    }

    .header-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

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

    .hero-subtitle-main {
        font-size: 1.75rem;
    }

    .hero-rating-large {
        flex-direction: column;
        text-align: center;
    }

    .rating-details {
        flex-direction: column;
        gap: 0.5rem;
    }

    .benefits-grid-large,
    .reviews-grid,
    .faq-grid,
    .trust-stats {
        grid-template-columns: 1fr;
    }

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

    .steps-visual {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .comparison-product,
    .comparison-value {
        text-align: left;
    }

    .carousel-slides {
        height: 450px;
    }

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

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

    .hero-specs-highlight {
        grid-template-columns: 1fr;
    }
}

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

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

