:root {
    --primary-color: #64B5F6;
    --secondary-color: #90CAF9;
    --accent-color: #42A5F5;
    --text-color: #333333;
    --text-color-light: #4A4A4A;
    --background-color: #FFFFFF;
    --card-background: #FFFFFF;
    --navbar-background: rgba(255, 255, 255, 0.8);
    --border-color: #E0E0E0;
    --success-color: #4CAF50;
    --shadow-color: rgba(100, 181, 246, 0.2);
    --gradient-start: #64B5F6;
    --gradient-end: #90CAF9;
    --premium-black: #1A1A1A;
    --premium-gold: #B8860B;
    --premium-gradient: linear-gradient(45deg, #64B5F6, #90CAF9);
    --premium-shadow: 0 10px 30px rgba(184, 134, 11, 0.2);
}

[data-theme="dark"] {
    --text-color: #FFFFFF;
    --text-color-light: #B0B0B0;
    --background-color: #1A1A1A;
    --card-background: #242424;
    --navbar-background: rgba(26, 26, 26, 0.8);
    --border-color: rgba(100, 181, 246, 0.15);
    --shadow-color: rgba(100, 181, 246, 0.2);
    --premium-black: #1A1A1A;
    --premium-gradient: linear-gradient(45deg, #64B5F6, #90CAF9);
}

[data-theme="dark"] .navbar {
    background-color: rgba(26, 26, 26, 0.98);
    box-shadow: 
        0 4px 30px rgba(100, 181, 246, 0.15),
        inset 0 0 20px rgba(100, 181, 246, 0.08),
        inset 0 0 10px rgba(100, 181, 246, 0.04);
    border-bottom: 1px solid rgba(100, 181, 246, 0.15);
}

[data-theme="dark"] .nav-links a {
    color: #FFFFFF;
}

[data-theme="dark"] .hero {
    background: #1A1A1A;
}

[data-theme="dark"] .hero-intro,
[data-theme="dark"] .tagline-item {
    color: #FFFFFF;
}

[data-theme="dark"] .feature-item {
    background: #242424;
    border: 1px solid rgba(100, 181, 246, 0.15);
}

[data-theme="dark"] .stat-card {
    background: #242424;
    border: 1px solid rgba(100, 181, 246, 0.15);
}

[data-theme="dark"] .premium-card {
    background: linear-gradient(145deg, rgba(36, 36, 36, 0.95), rgba(26, 26, 26, 0.98));
    border: 1px solid rgba(100, 181, 246, 0.2);
}

[data-theme="dark"] .disclaimer-card {
    background: #242424;
    border: 1px solid rgba(100, 181, 246, 0.15);
}

[data-theme="dark"] .disclaimer-card h3 {
    color: #FFFFFF;
}

[data-theme="dark"] .disclaimer-text {
    background: #242424;
    border: 1px solid rgba(100, 181, 246, 0.15);
}

[data-theme="dark"] .benefit-card {
    background: #242424;
    border: 1px solid rgba(100, 181, 246, 0.15);
}

[data-theme="dark"] .nav-menu {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(36, 36, 36, 0.95));
}

[data-theme="dark"] .feature-item i {
    background: linear-gradient(145deg, rgba(100, 181, 246, 0.15), rgba(144, 202, 249, 0.1));
}

[data-theme="dark"] .premium-price {
    background: linear-gradient(145deg, rgba(100, 181, 246, 0.15), rgba(144, 202, 249, 0.1));
}

[data-theme="dark"] .slider-container {
    background: linear-gradient(145deg, rgba(36, 36, 36, 0.95), rgba(26, 26, 26, 0.98));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    transition: background-color 0.3s ease;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 
        0 4px 30px rgba(100, 181, 246, 0.15),
        inset 0 0 20px rgba(100, 181, 246, 0.1),
        inset 0 0 10px rgba(100, 181, 246, 0.05);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(100, 181, 246, 0.15);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img {
    content: url('../logo_light_mode.png');
    height: 65px;
    width: auto;
    transition: transform 0.3s ease;
}

[data-theme="dark"] .logo-img {
    content: url('../logo.png');
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
}

[data-theme="dark"] .nav-menu {
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

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

.hamburger {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    margin: 0;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.hamburger:hover {
    background-color: rgba(184, 134, 11, 0.1);
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px 0;
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--primary-color);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        cursor: pointer;
        width: 45px;
        height: 45px;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }

    .bar {
        display: block;
        width: 25px;
        height: 2px;
        margin: 5px auto;
        background-color: var(--primary-color);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 30px rgba(100, 181, 246, 0.15);
        padding: 3rem 0;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }

    [data-theme="dark"] .nav-menu {
        background: rgba(26, 26, 26, 0.98);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 12px 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--premium-gradient);
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: var(--background-color);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    filter: brightness(0.5) contrast(1.1);
    transform: scale(1.02);
    transition: transform 20s ease;
}

[data-theme="dark"] .hero-banner {
    opacity: 0.3;
    filter: brightness(0.7) contrast(1.1);
}

.hero:hover .hero-banner {
    transform: scale(1.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero-pattern.svg') repeat;
    opacity: 0.05;
    z-index: 1;
    animation: subtleFloat 30s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(26, 26, 26, 0.2) 20%,
        rgba(26, 26, 26, 0.4) 40%,
        rgba(26, 26, 26, 0.8) 70%,
        rgb(26, 26, 26) 100%
    );
    z-index: 2;
}

[data-theme="light"] .hero::after {
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(255, 255, 255, 0.2) 20%,
        rgba(255, 255, 255, 0.4) 40%,
        rgba(255, 255, 255, 0.8) 70%,
        rgb(255, 255, 255) 100%
    );
}

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

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(45deg, #FFFFFF, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 30px rgba(100, 181, 246, 0.4),
                 0 0 60px rgba(100, 181, 246, 0.3),
                 0 0 90px rgba(100, 181, 246, 0.2);
}

.hero-tagline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tagline-item {
    font-size: 1.2rem;
    font-weight: 500;
    color: #FFFFFF;
}

.tagline-separator {
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.hero-intro {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    color: var(--text-color);
}

[data-theme="dark"] .hero-intro {
    color: #FFFFFF;
}

.hero-logo {
    margin-bottom: 30px;
    text-align: center;
}

.hero-logo-img {
    height: 150px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

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

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--background-color);
    position: relative;
}

.about-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    align-items: center;
    margin-top: 60px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(100, 181, 246, 0.15);
    aspect-ratio: 1/1;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover .about-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
    color: white;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.overlay-content i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.overlay-content span {
    font-size: 1.2rem;
    font-weight: 500;
}

.about-features {
    margin-top: 40px;
}

.feature-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.feature-item {
    flex: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 25px;
    background: var(--card-background);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(100, 181, 246, 0.2);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(100, 181, 246, 0.15);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: linear-gradient(145deg, rgba(100, 181, 246, 0.1), rgba(144, 202, 249, 0.05));
    padding: 1rem;
    border-radius: 12px;
}

.feature-details {
    text-align: center;
}

.feature-details h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.feature-details p {
    font-size: 0.9rem;
    color: var(--text-color-light);
    line-height: 1.5;
}

/* About Stats */
.about-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: var(--card-background);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(100, 181, 246, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(100, 181, 246, 0.2);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    background: rgba(100, 181, 246, 0.1);
    padding: 15px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color-light);
}

.about-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color-light);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: var(--card-background);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(100, 181, 246, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    background: rgba(var(--primary-rgb), 0.1);
    padding: 15px;
    border-radius: 12px;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-color-light);
    line-height: 1.5;
}

/* Premium Section */
.pricing-section {
    padding: 100px 0;
    background: var(--background-color);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    display: none;
}

.pricing-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-offer {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.premium-card {
    background: var(--card-background);
    border: 1px solid rgba(100, 181, 246, 0.2);
    box-shadow: 0 8px 32px rgba(100, 181, 246, 0.15);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.premium-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(100, 181, 246, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 5s infinite linear;
    pointer-events: none;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--premium-gradient);
}

.premium-header {
    text-align: center;
}

.premium-label {
    display: inline-block;
    background: var(--premium-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.premium-header h2 {
    text-align: center;
}

.premium-header h3 {
    font-size: 2.2rem;
    margin: 1rem 0;
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.premium-price {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(145deg, rgba(100, 181, 246, 0.1), rgba(144, 202, 249, 0.05));
}

.premium-price .currency {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    vertical-align: top;
    margin-right: 0.2rem;
}

.premium-price .amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.premium-price .period {
    font-size: 1.2rem;
    color: var(--text-color-light);
    margin-left: 0.5rem;
}

.premium-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: linear-gradient(145deg, rgba(100, 181, 246, 0.05), rgba(144, 202, 249, 0.02));
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: linear-gradient(145deg, rgba(100, 181, 246, 0.1), rgba(144, 202, 249, 0.05));
    padding: 1rem;
    border-radius: 12px;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-color-light);
    line-height: 1.5;
}

.premium-action {
    text-align: center;
    margin-top: 3rem;
}

.btn-premium {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background: var(--premium-gradient);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(100, 181, 246, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
    z-index: -1;
}

.btn-premium:hover::before {
    transform: translateX(100%);
}

/* Testimonial Section */
.testimonial-section {
    padding: 100px 0;
    background: var(--background-color);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    display: none;
}

.testimonial-section h2 {
    color: var(--text-color);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.testimonial-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--premium-shadow);
}

.premium-feedback-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.premium-feedback-image:hover {
    transform: scale(1.02);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(100, 181, 246, 0.3);
}

.premium-guarantee {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-color-light);
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 80px 0;
    background: var(--background-color);
    position: relative;
}

.disclaimer-section::before {
    display: none;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.disclaimer-header h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin: 0;
}

.disclaimer-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.disclaimer-card {
    background: var(--card-background);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(100, 181, 246, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(100, 181, 246, 0.1);
}

.disclaimer-card:hover {
    transform: translateY(-5px);
}

.disclaimer-card-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.disclaimer-card h3 {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: #FFFFFF;
}

.disclaimer-card p {
    font-size: 0.95rem;
    color: var(--text-color-light);
    line-height: 1.5;
}

.disclaimer-text {
    background: var(--card-background);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(100, 181, 246, 0.1);
    border: 1px solid rgba(100, 181, 246, 0.1);
}

.disclaimer-warning {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(100, 181, 246, 0.1);
}

.disclaimer-warning i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.disclaimer-warning p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.disclaimer-notice h4 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.disclaimer-notice ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.disclaimer-notice li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--text-color-light);
    line-height: 1.6;
}

.disclaimer-notice li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .disclaimer-grid {
        grid-template-columns: 1fr;
    }
    
    .disclaimer-text {
        padding: 30px;
    }
    
    .disclaimer-warning {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo-img {
        height: 45px;
    }
    
    .hero-logo-img {
        height: 100px;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    text-align: center;
    background: var(--background-color);
}

.contact-section h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.contact-intro {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--text-color-light);
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-3px);
    background-color: var(--secondary-color);
}

/* Footer */
.footer {
    padding: 40px 0;
    background-color: var(--card-background);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    text-align: center;
}

.footer-text {
    color: var(--text-color-light);
}

.footer-disclaimer {
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Floating Buttons */
.floating-buttons-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.theme-toggle button,
.back-to-top {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.theme-toggle button:hover,
.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-main {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        height: 70px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--navbar-background);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 2px 10px var(--shadow-color);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 120px 0 60px;
    }

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

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

    .about-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtleFloat {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.price-breakdown {
    text-align: center;
    margin: 20px 0 30px;
    padding: 20px;
    background: linear-gradient(145deg, rgba(100, 181, 246, 0.05), rgba(144, 202, 249, 0.02));
    border-radius: 15px;
    border: 1px solid rgba(100, 181, 246, 0.1);
}

.daily-price {
    font-size: 1.4rem;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.daily-price .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.daily-price .conversion {
    font-size: 1rem;
    color: var(--text-color-light);
    font-style: italic;
}

.value-proposition {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(100, 181, 246, 0.1);
}

.results-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.results h2{
    color: #fff;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(100, 181, 246, 0.2);
    background: var(--background-color);
    margin: 20px 0;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 500px;
}

.slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    margin-top: 2rem;
}

.slider-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(100, 181, 246, 0.15);
    margin: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide:hover .slider-image {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(100, 181, 246, 0.25);
}

.results-slider-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin-top: 2rem;
    margin: 0 auto;
    
}

.slider-navigation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    padding: 10px;
}

.nav-button {
    position: relative !important;
    width: 45px !important;
    height: 45px !important;
    border: none;
    background: var(--primary-color) !important;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(100, 181, 246, 0.2);
    margin: 0 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.nav-button::after {
    font-size: 18px !important;
    color: #FFFFFF;
    font-weight: bold;
}



.nav-button:hover {
    transform: scale(1.1);
    background: var(--secondary-color) !important;
    box-shadow: 0 6px 25px rgba(100, 181, 246, 0.3);
}

.swiper-pagination {
    position: relative !important;
    bottom: 0 !important;
    width: auto !important;
}

.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: rgba(100, 181, 246, 0.3) !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    transform: scale(1.2);
}

.slider-btn.active {
    background: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(100, 181, 246, 0.25);
    border-color: transparent;
}

@media (max-width: 768px) {
    .results-slider-container {
        padding: 10px;
    }

    .slider-image {
        max-width: 80%;
        max-height: 80%;
    }

    .slide {
        padding: 20px;
    }

    .results-slider-container {
        max-width: 100%;
        margin: 0 1rem;
    }
}

.about-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.financing-section {
    padding: 100px 0;
    background: var(--background-color);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.financing-section::before {
    display: none;
}

.financing-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

.financing-intro {
    text-align: center;
    color: var(--text-color-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

[data-theme="dark"] .financing-section {
    background-color: var(--background-color);
}

[data-theme="dark"] .financing-section h2 {
    color: #FFFFFF;
}

/* Remove the benefits section styles */
.benefits-section,
.benefits-grid,
.benefit-card,
.benefit-icon,
.benefit-card h3,
.benefit-card p {
    display: none;
}

.financing-info {
    padding: 80px 0;
    background: var(--background-color);
    border-top: 1px solid rgba(100, 181, 246, 0.1);
}

.financing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.financing-card {
    background: var(--card-background);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(100, 181, 246, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(100, 181, 246, 0.1);
}

.financing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(100, 181, 246, 0.25);
}

.financing-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: linear-gradient(145deg, rgba(100, 181, 246, 0.1), rgba(144, 202, 249, 0.05));
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.financing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.financing-card p {
    color: var(--text-color-light);
    line-height: 1.6;
}

.financing-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
    background: var(--card-background);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(100, 181, 246, 0.1);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-desc {
    color: var(--text-color-light);
    font-size: 0.9rem;
}

[data-theme="dark"] .financing-card {
    background: var(--card-background);
    border: 1px solid rgba(100, 181, 246, 0.2);
}

[data-theme="dark"] .financing-card h3 {
    color: #FFFFFF;
}

[data-theme="dark"] .stat-label {
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .financing-grid {
        grid-template-columns: 1fr;
    }
    
    .financing-stats {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

.about-section,
.testimonial-section,
.pricing-section,
.disclaimer-section,
.contact-section,
.financing-section {
    position: relative;
}

.testimonial-section::before,
.pricing-section::before,
.disclaimer-section::before,
.contact-section::before,
.financing-section::before,
.about-section::after,
.testimonial-section::after,
.pricing-section::after,
.disclaimer-section::after,
.contact-section::after,
.financing-section::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(100, 181, 246, 0.2),
        var(--primary-color),
        rgba(100, 181, 246, 0.2),
        transparent
    );
    box-shadow: 
        0 0 10px rgba(100, 181, 246, 0.3),
        0 0 20px rgba(100, 181, 246, 0.2),
        0 0 30px rgba(100, 181, 246, 0.1);
}

.testimonial-section::before,
.pricing-section::before,
.disclaimer-section::before,
.contact-section::before,
.financing-section::before {
    top: 0;
}

.about-section::after,
.testimonial-section::after,
.pricing-section::after,
.disclaimer-section::after,
.contact-section::after,
.financing-section::after {
    bottom: 0;
}

/* Adjust the line width for mobile */
@media (max-width: 768px) {
    .testimonial-section::before,
    .pricing-section::before,
    .disclaimer-section::before,
    .contact-section::before,
    .financing-section::before,
    .about-section::after,
    .testimonial-section::after,
    .pricing-section::after,
    .disclaimer-section::after,
    .contact-section::after,
    .financing-section::after {
        width: 90%;
    }
}

/* Social Navigation */
.social-nav {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-left: 3rem;
}

@media screen and (max-width: 768px) {
    .social-nav {
        justify-content: center;
        padding-left: 0;
    }
}

.social-link {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: var(--transition);
    font-family: var(--body-font);
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .social-nav {
        justify-content: center;
    }
}

.social-nav .social-link {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: var(--transition);
    opacity: 0.7;
    font-family: var(--body-font);
}

.social-nav .social-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    opacity: 1;

[data-theme="dark"] .social-link {
    color: #9CA3AF;
}

@@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--glass-background);
        backdrop-filter: var(--glass-blur);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: 0.5s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .social-nav {
        border-left: none;
        padding-left: 0;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 2rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 2rem;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        padding: 2rem 0;
    }

    .social-nav .social-link {
        font-size: 1.5rem;
    }
}
