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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
    line-height: 1.7;
    color: #111827;
    background: radial-gradient(circle at top left, #fdf2ff 0, #eef2ff 35%, #f9fafb 80%);
    min-height: 100vh;
}

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

/* Header */
.header {
    background: rgba(15, 23, 42, 0.9);
    border-bottom: 1px solid rgba(148, 163, 184, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.4);
}

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

.logo {
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(120deg, #f97316 0%, #fb7185 35%, #ec4899 65%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

.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: radial-gradient(circle at top left, #eef2ff 0, #f9fafb 40%, #fef2f2 90%);
    color: #0f172a;
    padding: 4.5rem 0 5.5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 0 0, rgba(129, 140, 248, 0.22) 0, transparent 55%),
                radial-gradient(circle at 100% 0, rgba(248, 113, 113, 0.2) 0, transparent 55%);
    opacity: 1;
}

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

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

.product-main-image {
    position: relative;
    background: radial-gradient(circle at top left, #eef2ff 0, #ffffff 50%, #fef2f2 100%);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 2.4rem;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.25);
}

.product-main-image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    filter: drop-shadow(0 22px 45px rgba(15, 23, 42, 0.35));
}

.product-badge-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(248, 113, 113, 0.98);
    color: #111827;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(248, 113, 113, 0.55);
}

.hero-content {
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(15, 23, 42, 0.04);
    backdrop-filter: blur(12px);
    color: #4b5563;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.hero-content h1 {
    font-size: 3.2rem;
    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.1rem;
    opacity: 0.9;
    margin-bottom: 2.2rem;
    line-height: 1.8;
}

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

.spec-highlight {
    background: #0f172a;
    padding: 1.25rem;
    border-radius: 50px;
    text-align: center;
    border: 1px solid rgba(55, 65, 81, 0.8);
}

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

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

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

.btn-hero-primary {
    display: block;
    background: #0f172a;
    color: #f9fafb;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.45);
    margin-bottom: 1rem;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.6);
    background: #111827;
}

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

.btn-text-sub {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.75;
    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: #0f172a;
    padding: 2.75rem 0;
    border-bottom: 1px solid rgba(30, 64, 175, 0.6);
}

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

.trust-stat {
    text-align: center;
    padding: 1.5rem;
    background: radial-gradient(circle at top, #1e293b 0, #020617 120%);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.35);
    transition: all 0.3s ease;
}

.trust-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.7);
    border-color: #38bdf8;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #e5e7eb;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #9ca3af;
    font-weight: 500;
}

/* 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: 5rem 0;
    background: #020617;
}

.comparison-table {
    background: radial-gradient(circle at top left, #111827 0, #020617 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(15, 23, 42, 1);
    border: 1px solid rgba(55, 65, 81, 0.7);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: linear-gradient(135deg, #f97316 0%, #ec4899 40%, #6366f1 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: rgba(15, 23, 42, 0.85);
}

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

.comparison-value.highlight {
    color: #fbbf24;
    font-weight: 800;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0 5.5rem;
    background: radial-gradient(circle at top, #f9fafb 0, #e5e7eb 35%, #f9fafb 75%);
}

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

.faq-item-large {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 16px 45px rgba(148, 163, 184, 0.4);
    border: 1px solid rgba(209, 213, 219, 0.9);
    transition: all 0.3s ease;
}

.faq-item-large:hover {
    border-color: #6366f1;
    box-shadow: 0 22px 60px rgba(148, 163, 184, 0.75);
    transform: translateY(-3px);
}

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

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

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0 5.5rem;
    background: radial-gradient(circle at top, #0f172a 0, #020617 80%);
    text-align: center;
    color: #fff;
}

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

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.3rem;
}

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

.cta-feature {
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid rgba(148, 163, 184, 0.6);
}

.btn-cta-final {
    background: #f8fafc;
    color: #0f172a;
    padding: 1.4rem 3.6rem;
    border: none;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.7);
}

.btn-cta-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 65px rgba(15, 23, 42, 0.9);
    background: #e5e7eb;
}

/* 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: radial-gradient(circle at top, #020617 0, #020617 75%);
    color: #e5e7eb;
    padding: 4.5rem 0 2.25rem;
}

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

.footer-legal h3 {
    color: #e5e7eb;
    margin-bottom: 2.2rem;
    font-size: 1.9rem;
    font-weight: 800;
}

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

.legal-info p {
    color: #9ca3af;
    margin-bottom: 0.7rem;
    line-height: 1.9;
}

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

.health-notice {
    background: rgba(15, 23, 42, 0.9);
    padding: 2.3rem;
    border-radius: 16px;
    margin-bottom: 2.3rem;
    border: 1px solid rgba(55, 65, 81, 0.9);
}

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

.health-notice p {
    color: #9ca3af;
    line-height: 2;
    font-size: 1.02rem;
}

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

.contact-info-footer p {
    color: #9ca3af;
    margin-bottom: 0.7rem;
    line-height: 1.9;
}

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

.footer-bottom {
    border-top: 2px solid rgba(15, 23, 42, 0.9);
    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: #9ca3af;
    text-decoration: none;
    transition: color 0.25s ease;
    font-weight: 600;
    font-size: 0.96rem;
}

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

.footer-bottom p {
    color: #6b7280;
}

/* 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;
}

