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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #E5E7EB;
    background: #000000;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(96, 165, 250, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: #60A5FA;
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.5));
}

.nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: #9CA3AF;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #60A5FA, #818CF8);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #FFFFFF;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: rgba(96, 165, 250, 0.15);
    color: #60A5FA;
    border: 1px solid rgba(96, 165, 250, 0.3);
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.1);
}

.btn-primary:hover {
    background: rgba(96, 165, 250, 0.25);
    border-color: rgba(96, 165, 250, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(96, 165, 250, 0.3);
}

.btn-gradient {
    background: linear-gradient(135deg, #60A5FA 0%, #818CF8 50%, #A78BFA 100%);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.4);
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #3B82F6 0%, #6366F1 50%, #8B5CF6 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(96, 165, 250, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(96, 165, 250, 0.2);
    color: #E5E7EB;
}

.btn-outline:hover {
    background: rgba(96, 165, 250, 0.1);
    border-color: rgba(96, 165, 250, 0.4);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.125rem 2.75rem;
    font-size: 1rem;
    border-radius: 1rem;
}

/* Hero Section */
.hero {
    padding: 12rem 0 8rem;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(96, 165, 250, 0.15) 0%, rgba(129, 140, 248, 0.08) 30%, transparent 70%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

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

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(96, 165, 250, 0.15);
    color: #60A5FA;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
    border: 1px solid rgba(96, 165, 250, 0.3);
    box-shadow: 0 0 30px rgba(96, 165, 250, 0.2);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(96, 165, 250, 0.2); }
    50% { box-shadow: 0 0 40px rgba(96, 165, 250, 0.4); }
}

.badge-icon {
    font-size: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    color: #FFFFFF;
    letter-spacing: -0.04em;
}

.gradient-text {
    background: linear-gradient(135deg, #60A5FA 0%, #818CF8 30%, #A78BFA 60%, #C084FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.25rem;
    color: #9CA3AF;
    line-height: 1.8;
    letter-spacing: -0.01em;
}

.hero-badges {
    display: flex;
    gap: 1rem;
}

.mini-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.875rem 1.5rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #E5E7EB;
    transition: all 0.3s ease;
}

.mini-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(96, 165, 250, 0.3);
    transform: translateY(-2px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.hero-image img,
.hero-image video {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(96, 165, 250, 0.2);
    transition: transform 0.5s ease;
}

.hero-image:hover img,
.hero-image:hover video {
    transform: scale(1.02) translateY(-5px);
}

/* Stats Section */
.stats {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
    border-top: 1px solid rgba(96, 165, 250, 0.1);
    border-bottom: 1px solid rgba(96, 165, 250, 0.1);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.5), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(96, 165, 250, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(96, 165, 250, 0.2);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #60A5FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 1rem;
    color: #9CA3AF;
    letter-spacing: -0.01em;
}

/* Section Styles */
section {
    padding: 8rem 0;
}

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

.section-badge {
    display: inline-block;
    background: rgba(96, 165, 250, 0.12);
    color: #60A5FA;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(96, 165, 250, 0.25);
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.15);
}

.section-badge.purple {
    background: rgba(167, 139, 250, 0.12);
    color: #A78BFA;
    border-color: rgba(167, 139, 250, 0.25);
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.15);
}

.section-badge.red {
    background: rgba(248, 113, 113, 0.12);
    color: #F87171;
    border-color: rgba(248, 113, 113, 0.25);
    box-shadow: 0 0 20px rgba(248, 113, 113, 0.15);
}

.section-badge.yellow {
    background: rgba(251, 191, 36, 0.12);
    color: #FBBF24;
    border-color: rgba(251, 191, 36, 0.25);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.15);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    letter-spacing: -0.03em;
}

.section-description {
    font-size: 1.25rem;
    color: #9CA3AF;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.8;
    letter-spacing: -0.01em;
}

/* Features Section */
.features {
    background: #000000;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse at left, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.feature-image {
    position: relative;
}

.feature-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
}

.feature-image img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(96, 165, 250, 0.2);
    transition: transform 0.5s ease;
}

.feature-image:hover img {
    transform: scale(1.03) rotate(1deg);
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.08), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(96, 165, 250, 0.4);
    transform: translateX(10px);
    box-shadow: 0 20px 50px rgba(96, 165, 250, 0.15);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    font-size: 1.75rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon.blue {
    background: rgba(96, 165, 250, 0.2);
    box-shadow: 0 0 30px rgba(96, 165, 250, 0.3);
}

.feature-icon.purple {
    background: rgba(167, 139, 250, 0.2);
    box-shadow: 0 0 30px rgba(167, 139, 250, 0.3);
}

.feature-icon.cyan {
    background: rgba(34, 211, 238, 0.2);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.3);
}

.feature-icon.green {
    background: rgba(52, 211, 153, 0.2);
    box-shadow: 0 0 30px rgba(52, 211, 153, 0.3);
}

.feature-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.feature-content p {
    color: #9CA3AF;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

/* Heart Health Section */
.heart-health {
    background: rgba(248, 113, 113, 0.02);
    border-top: 1px solid rgba(248, 113, 113, 0.1);
    border-bottom: 1px solid rgba(248, 113, 113, 0.1);
    position: relative;
}

.heart-health::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse at right, rgba(248, 113, 113, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.heart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.heart-image {
    position: relative;
    order: 2;
}

.heart-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(248, 113, 113, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
}

.heart-image img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: 0 30px 80px rgba(248, 113, 113, 0.3);
    border: 1px solid rgba(248, 113, 113, 0.2);
    transition: transform 0.5s ease;
}

.heart-image:hover img {
    transform: scale(1.03) rotate(-1deg);
}

.heart-content {
    order: 1;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #E5E7EB;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(52, 211, 153, 0.3);
    transform: translateX(10px);
}

.check {
    width: 1.75rem;
    height: 1.75rem;
    background: rgba(52, 211, 153, 0.2);
    color: #34D399;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.3);
}

/* Technology Section */
.technology {
    background: #000000;
    position: relative;
}

.technology::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse at left, rgba(167, 139, 250, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.tech-image {
    position: relative;
}

.tech-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
}

.tech-image img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: 0 30px 80px rgba(167, 139, 250, 0.3);
    border: 1px solid rgba(167, 139, 250, 0.2);
    transition: transform 0.5s ease;
}

.tech-image:hover img {
    transform: scale(1.03) rotate(1deg);
}

/* Testimonials Section */
.testimonials {
    background: rgba(251, 191, 36, 0.02);
    border-top: 1px solid rgba(251, 191, 36, 0.1);
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.stars {
    color: #FBBF24;
    font-size: 1.75rem;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

.rating-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
}

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

.testimonial-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #60A5FA, #818CF8, #A78BFA);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 25px 50px rgba(96, 165, 250, 0.2);
}

.testimonial-text {
    font-style: italic;
    color: #9CA3AF;
    margin: 1.5rem 0;
    line-height: 1.8;
    letter-spacing: -0.01em;
}

.testimonial-author {
    font-weight: 600;
    color: #E5E7EB;
}

/* Specifications Section */
.specifications {
    background: #000000;
}

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

.spec-card {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    transition: all 0.4s ease;
}

.spec-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(96, 165, 250, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(96, 165, 250, 0.15);
}

.spec-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.spec-item span:first-child {
    color: #9CA3AF;
}

.spec-item span:last-child {
    font-weight: 600;
    color: #E5E7EB;
}

.compatibility {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(96, 165, 250, 0.08);
    border-radius: 1rem;
    border: 1px solid rgba(96, 165, 250, 0.15);
}

.compatibility h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.compatibility p {
    color: #9CA3AF;
    font-size: 0.875rem;
}

/* CTA Section */
.cta {
    padding: 8rem 0;
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
    border-top: 1px solid rgba(96, 165, 250, 0.1);
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.price-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 4rem;
    background: rgba(96, 165, 250, 0.08);
    border-radius: 2rem;
    border: 1px solid rgba(96, 165, 250, 0.25);
    margin: 2.5rem 0;
    box-shadow: 0 20px 60px rgba(96, 165, 250, 0.2);
    transition: all 0.4s ease;
}

.price-box:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(96, 165, 250, 0.3);
}

.price-current {
    font-size: 4rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.03em;
}

.price-old {
    font-size: 1.75rem;
    text-decoration: line-through;
    color: #6B7280;
    margin-top: 0.5rem;
}

.price-save {
    font-size: 1rem;
    margin-top: 1rem;
    color: #60A5FA;
    font-weight: 700;
    padding: 0.5rem 1rem;
    background: rgba(96, 165, 250, 0.15);
    border-radius: 9999px;
}

/* Footer */
.footer {
    background: #000000;
    color: #9CA3AF;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(96, 165, 250, 0.1);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.footer-col h3 {
    color: #E5E7EB;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.875rem;
}

.footer-col a {
    color: #9CA3AF;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-col a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #60A5FA;
    transition: width 0.3s ease;
}

.footer-col a:hover {
    color: #60A5FA;
}

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

.footer-col p {
    color: #9CA3AF;
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
}

.disclaimer {
    font-size: 0.75rem;
    color: #6B7280;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.copyright {
    font-size: 0.75rem;
    color: #6B7280;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: rgba(96, 165, 250, 0.4);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(96, 165, 250, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-content,
    .features-grid,
    .heart-grid,
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .heart-content {
        order: 1;
    }

    .heart-image {
        order: 2;
    }

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

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

    .stats-grid,
    .testimonials-grid,
    .specs-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .container {
        padding: 0 1rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .price-current {
        font-size: 3rem;
    }
}