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

body {
    font-family: 'Space Grotesk', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.8;
    color: #0f172a;
    background: #f8fafc;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.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, #0ea5e9 0%, #06b6d4 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4, #3b82f6);
    border-radius: 2px;
}

.logo a {
    text-decoration: none;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #fff;
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(14, 165, 233, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(6, 182, 212, 0.03) 50%, transparent 70%);
    background-size: 100px 100px;
    opacity: 0.5;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #bae6fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(14, 165, 233, 0.3);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.3)); }
    to { filter: drop-shadow(0 0 30px rgba(14, 165, 233, 0.5)); }
}

.subtitle {
    font-size: 1.75rem;
    opacity: 0.95;
    font-weight: 400;
    letter-spacing: -0.5px;
    max-width: 800px;
    margin: 0 auto;
    color: #cbd5e1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Product Section */
.product-section {
    padding: 7rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f1f5f9 100%);
    position: relative;
}

.product-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0ea5e9, transparent);
}

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

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 
        0 25px 50px -12px rgba(14, 165, 233, 0.25),
        0 0 0 1px rgba(14, 165, 233, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

.product-image img:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 35px 70px -12px rgba(14, 165, 233, 0.4),
        0 0 0 1px rgba(14, 165, 233, 0.2);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 24px;
    border: 2px solid rgba(14, 165, 233, 0.2);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.carousel-slide.active {
    display: block;
    animation: slideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: scale(0.9) translateX(20px);
    }
    to { 
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: #ffffff;
    border: none;
    padding: 18px 22px;
    font-size: 32px;
    cursor: pointer;
    border-radius: 16px;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.5);
    background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
}

.carousel-prev {
    left: 24px;
}

.carousel-next {
    right: 24px;
}

.carousel-dots {
    text-align: center;
    padding: 28px 0;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    cursor: pointer;
    height: 14px;
    width: 14px;
    background-color: #cbd5e1;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: #0ea5e9;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot.active::before,
.dot:hover::before {
    width: 100%;
    height: 100%;
}

.dot.active,
.dot:hover {
    border-color: #0ea5e9;
    transform: scale(1.3);
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: #fff;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
    position: relative;
    overflow: hidden;
}

.product-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.product-badge:hover::before {
    left: 100%;
}

.product-info h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #0f172a;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.2;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-description {
    margin-bottom: 3rem;
    color: #475569;
    line-height: 2;
    font-size: 1.2rem;
}

.product-features {
    margin-bottom: 3.5rem;
    display: grid;
    gap: 1.25rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.feature:hover::before {
    transform: scaleY(1);
}

.feature:hover {
    border-color: #0ea5e9;
    transform: translateX(12px);
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.2);
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
}

.feature-icon {
    color: #0ea5e9;
    font-weight: bold;
    font-size: 1.75rem;
    min-width: 32px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(14, 165, 233, 0.3));
}

.product-specs {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 2px solid rgba(14, 165, 233, 0.2);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
    position: relative;
}

.product-specs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4, #3b82f6);
    border-radius: 20px 20px 0 0;
}

.product-specs h3 {
    margin-bottom: 1.5rem;
    color: #0f172a;
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-specs p {
    color: #475569;
    line-height: 2;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

.price-label {
    font-size: 2rem;
    font-weight: 900;
    color: #0f172a;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #3b82f6 100%);
    color: #fff;
    padding: 1.5rem 4rem;
    border: none;
    border-radius: 100px;
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.4);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(14, 165, 233, 0.5);
    background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 50%, #06b6d4 100%);
}

/* How It Works Section */
.how-it-works {
    padding: 7rem 0;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0ea5e9, transparent);
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 6rem;
    color: #0f172a;
    font-weight: 900;
    letter-spacing: -3px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4, #3b82f6);
    border-radius: 3px;
}

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

.comparison-item {
    background: #ffffff;
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
    border: 2px solid rgba(14, 165, 233, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.comparison-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.comparison-item:hover::before {
    transform: scaleX(1);
}

.comparison-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.25);
    border-color: rgba(14, 165, 233, 0.3);
}

.comparison-item h3 {
    margin-bottom: 2rem;
    color: #0f172a;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.comparison-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.comparison-item p {
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 2;
    font-size: 1.125rem;
}

/* Benefits Section */
.benefits-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

.benefits-section .section-title {
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #bae6fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 5rem;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 249, 255, 0.95) 100%);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    border-color: #0ea5e9;
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 12px rgba(14, 165, 233, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.benefit-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
    font-weight: 900;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-card p {
    color: #475569;
    line-height: 2;
    font-size: 1.125rem;
}

/* Social Responsibility Section */
.social-responsibility {
    padding: 7rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

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

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

.responsibility-image img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(14, 165, 233, 0.25);
}

.responsibility-content p {
    font-size: 1.375rem;
    color: #475569;
    line-height: 2.2;
}

/* Guarantee Section */
.guarantee {
    padding: 7rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.guarantee::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

.guarantee .section-title {
    color: #fff;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #bae6fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guarantee .section-title::after {
    background: linear-gradient(90deg, #ffffff, #e0f2fe, #ffffff);
}

.guarantee p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto;
    line-height: 2.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

/* FAQ Section */
.faq {
    padding: 7rem 0;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
}

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

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid rgba(14, 165, 233, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.1);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item:hover {
    border-color: #0ea5e9;
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.2);
    transform: translateX(8px);
}

.faq-item h3 {
    color: #0f172a;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-item p {
    color: #475569;
    line-height: 2.2;
    font-size: 1.125rem;
}

/* Contact Section */
.contact-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

.contact-section .section-title {
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #bae6fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-section .section-title::after {
    background: linear-gradient(90deg, #ffffff, #e0f2fe, #ffffff);
}

.contact-section p {
    color: #cbd5e1;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    margin: 4rem 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.contact-item {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 249, 255, 0.95) 100%);
    border-radius: 20px;
    min-width: 240px;
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.25);
    border: 2px solid rgba(14, 165, 233, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(14, 165, 233, 0.35);
    border-color: #0ea5e9;
}

.contact-item strong {
    display: block;
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.contact-item a {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.contact-item a:hover {
    color: #06b6d4;
    border-bottom-color: #06b6d4;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    padding: 6rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 0%, rgba(14, 165, 233, 0.1) 0%, transparent 70%),
        linear-gradient(180deg, transparent 0%, rgba(6, 182, 212, 0.05) 100%);
}

.footer-legal {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-legal h3 {
    color: #fff;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #bae6fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.legal-info p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 2.2;
    font-size: 1.125rem;
}

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

.health-notice {
    background: rgba(14, 165, 233, 0.15);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 2px solid rgba(14, 165, 233, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

.health-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    border-radius: 20px 20px 0 0;
}

.health-notice h4 {
    color: #fff;
    margin-bottom: 1.75rem;
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.health-notice p {
    color: #e2e8f0;
    line-height: 2.2;
    font-size: 1.125rem;
}

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

.contact-info-footer p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 2.2;
    font-size: 1.125rem;
}

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

.contact-info-footer a {
    color: #0ea5e9;
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.contact-info-footer a:hover {
    color: #06b6d4;
    border-bottom-color: #06b6d4;
}

.footer-bottom {
    border-top: 2px solid rgba(14, 165, 233, 0.2);
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    position: relative;
    padding-bottom: 4px;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    transition: width 0.3s;
}

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

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 1rem;
}

/* Legal Pages */
.legal-page {
    padding: 7rem 0;
    min-height: 60vh;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
}

.legal-page h1 {
    font-size: 4rem;
    margin-bottom: 5rem;
    color: #0f172a;
    font-weight: 900;
    letter-spacing: -3px;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 2rem;
}

.legal-page h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4, #3b82f6);
    border-radius: 3px;
}

.legal-page section {
    margin-bottom: 5rem;
    padding-bottom: 4rem;
    border-bottom: 2px solid rgba(14, 165, 233, 0.2);
    background: #ffffff;
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.1);
    border: 2px solid rgba(14, 165, 233, 0.1);
    position: relative;
}

.legal-page section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    border-radius: 20px 20px 0 0;
}

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

.legal-page h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0f172a;
    font-weight: 900;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-page h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    color: #0f172a;
    font-weight: 900;
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.legal-page ul li {
    margin-bottom: 1.25rem;
    color: #475569;
    line-height: 2;
    font-size: 1.2rem;
}

.legal-page a {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.legal-page a:hover {
    color: #06b6d4;
    border-bottom-color: #06b6d4;
}

.withdrawal-form {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 3.5rem;
    border-radius: 20px;
    margin: 3.5rem 0;
    border: 2px solid rgba(14, 165, 233, 0.2);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
}

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

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

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

    .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: 3rem;
    }

    .subtitle {
        font-size: 1.3rem;
    }

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

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

    .carousel-slides {
        height: 400px;
    }

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

    .product-info h2 {
        font-size: 2.25rem;
    }

    .container {
        padding: 0 20px;
    }
}

/* 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: #f0f9ff;
    min-height: 200px;
    display: block;
}
