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

html {
}

body {
    font-family: 'Poppins', sans-serif;
    background: #090909;
    color: white;
    overflow-x: hidden;
    padding-top: 80px;
    position: relative;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 50px;
    width: 100%;
    max-width: 100%;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    position: relative;
}

.navbar.scrolled {
    padding: 15px 20px;
}

.navbar.scrolled .navbar-wrapper {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    max-width: 1400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    position: absolute;
    left: 50px;
}

.logo img {
    width: 30px;
    height: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links li {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: #9664ff;
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    right: 50px;
}



.login-btn {
    background: transparent;
    border: none;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: color 0.3s ease;
}

.login-btn:hover {
    color: #9664ff;
}

.cta-btn {
    background: #211738;
    color: #9664ff !important;
    border: 1px solid #9664ff;
    padding: 12px 16px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.cta-btn:hover {
    background: #9664ff;
    color: white !important;
    transform: translateY(-2px);
}

/* Streak Section */
.streak-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 500;
    pointer-events: none;
}

.streak-image {
    max-width: 100%;
    height: auto;
    display: block;
    opacity: 0.4;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 160px 50px 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}





.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: #b8b8b8;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 120px;
}

.hero-buttons .primary-btn,
.hero-buttons .secondary-btn {
    width: 200px;
}

.primary-btn {
    background: #211738;
    color: #9664ff;
    border: 1px solid #9664ff;
    padding: 16px 20px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.primary-btn:hover {
    background: #9664ff;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(150, 100, 255, 0.3);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #888;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #4E4E4E;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* App Preview Section */
.app-preview {
    display: flex;
    justify-content: center;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.app-preview::before {
    content: '';
    position: absolute;
    top: 27%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 200%;
    background-image: 
        linear-gradient(rgba(150, 100, 255, 0.2) 2px, transparent 2px),
        linear-gradient(90deg, rgba(150, 100, 255, 0.2) 2px, transparent 2px);
    background-size: 60px 60px;
    mask: radial-gradient(ellipse 45% 35% at center, rgba(0,0,0,1) 10%, rgba(0,0,0,0.6) 25%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 80%);
    -webkit-mask: radial-gradient(ellipse 45% 35% at center, rgba(0,0,0,1) 10%, rgba(0,0,0,0.6) 25%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 80%);
    z-index: -10;
    border-radius: 20px;
    pointer-events: none;
}



.app-image {
    max-width: 1000px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 80px rgba(0, 0, 0, 0.4);
    transform: translateY(50px);
}

/* Features Section */
.features-section {
    padding: 150px 50px 150px;
    background: #090909;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -20%;
    width: 600px;
    height: 800px;
    background: radial-gradient(circle, rgba(150, 100, 255, 0.25) 0%, rgba(150, 100, 255, 0.12) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.features-section::after {
    content: '';
    position: absolute;
    top: 30%;
    right: -25%;
    width: 700px;
    height: 600px;
    background: radial-gradient(circle, rgba(150, 100, 255, 0.2) 0%, rgba(150, 100, 255, 0.08) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.features-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-subtitle {
    font-size: 18px;
    color: #b8b8b8;
    margin-bottom: 80px;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(150, 100, 255, 0.3);
    box-shadow: 0 20px 40px rgba(150, 100, 255, 0.1);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9664ff 0%, #7c4dff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    font-size: 15px;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #9664ff;
    font-weight: bold;
}

.wip-badge {
    display: inline-block;
    background: rgba(150, 100, 255, 0.2);
    color: #9664ff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin-left: 8px;
}

/* Back Link Section */
.back-link-section {
    padding: 20px 50px 0 0px;
    max-width: 1400px;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #b8b8b8;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-link:hover {
    color: #9664ff;
    background: rgba(150, 100, 255, 0.1);
    border-color: rgba(150, 100, 255, 0.3);
    transform: translateX(-5px);
}

.back-link i {
    font-size: 14px;
}

/* Product Section */
.product-section {
    padding: 20px 50px 150px;
    background: #090909;
    position: relative;
    overflow: hidden;
}

.product-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -20%;
    width: 600px;
    height: 800px;
    background: radial-gradient(circle, rgba(150, 100, 255, 0.25) 0%, rgba(150, 100, 255, 0.12) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.product-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 600;
}

.product-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Product Media */
.product-media {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-carousel {
    position: relative;
}

.product-carousel .carousel-container {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 350px;
    z-index: 600;
}

.product-carousel .carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 601;
}

.carousel-slide.active {
    opacity: 1;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    z-index: 602;
    position: relative;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #9664ff;
    border-color: #9664ff;
}

.indicator:hover {
    border-color: #9664ff;
}

/* Video Container (inside carousel) */
.carousel-slide .video-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.carousel-slide .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

/* Product Details */
.product-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-header {
    text-align: left;
}

.product-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 0;
    background: linear-gradient(135deg, #ffffff 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Product Variants */
.product-variants {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.variants-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

.variant-options {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.variant-option {
    position: relative;
}

.variant-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.variant-option label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin-top: 10px;
}



.variant-option input[type="radio"]:checked + label {
    border-color: #9664ff;
    background: rgba(150, 100, 255, 0.1);
}

.variant-option label:hover {
    border-color: rgba(150, 100, 255, 0.5);
}

.variant-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.variant-duration {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-left: 20px;
}

.variant-price {
    font-size: 20px;
    font-weight: 700;
    color: #9664ff;
    margin-left: auto;
    margin-right: 20px;
    position: relative;
}

.variant-period {
    font-size: 14px;
    color: #b8b8b8;
}

.variant-savings {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #1d3227;
    color: #4CAF50;
    padding: 2px 6px;
    border-radius: 12px;
    border: 1px solid #4CAF50;
    font-size: 10px;
    font-weight: 500;
    z-index: 10;
    backdrop-filter: blur(6px);
    min-width: 28px;
    text-align: center;
}

/* Checkout Section */
.checkout-section {
    text-align: center;
}

.checkout-btn {
    width: 100%;
    background: #9664ff;
    color: white;
    border: none;
    padding: 18px 24px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.checkout-btn:hover {
    background: #8052ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(150, 100, 255, 0.3);
}

.checkout-security {
    text-align: center;
    font-size: 14px;
    color: #b8b8b8;
    margin: 0;
    line-height: 1.4;
}

.checkout-security a {
    color: #9664ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.checkout-security a:hover {
    color: #b584ff;
    text-decoration: underline;
}

/* Product Description */
.product-description {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.warning-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ff4444;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 12px;
}

.warning-notice i {
    font-size: 16px;
    color: #ff4444;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-section {
    display: flex;
    flex-direction: column;
}

.system-requirements {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.description-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.description-title:not(:first-child) {
    margin-top: 32px;
}

.description-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.description-list li {
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
    font-size: 16px;
}

.description-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #9664ff;
    font-weight: bold;
}

/* About Section */
.about-section {
    padding: 80px 50px 150px;
    background: #090909;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -20%;
    width: 600px;
    height: 800px;
    background: radial-gradient(circle, rgba(150, 100, 255, 0.25) 0%, rgba(150, 100, 255, 0.12) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 30%;
    right: -25%;
    width: 700px;
    height: 600px;
    background: radial-gradient(circle, rgba(150, 100, 255, 0.2) 0%, rgba(150, 100, 255, 0.08) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 18px;
    color: #b8b8b8;
    margin-bottom: 60px;
    font-weight: 400;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-text p {
    color: #b8b8b8;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
}

/* Terms of Service Section */
.tos-section {
    padding: 80px 50px 150px;
    background: #090909;
    position: relative;
    overflow: hidden;
}

.tos-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -20%;
    width: 600px;
    height: 800px;
    background: radial-gradient(circle, rgba(150, 100, 255, 0.25) 0%, rgba(150, 100, 255, 0.12) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.tos-section::after {
    content: '';
    position: absolute;
    top: 30%;
    right: -25%;
    width: 700px;
    height: 600px;
    background: radial-gradient(circle, rgba(150, 100, 255, 0.2) 0%, rgba(150, 100, 255, 0.08) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
}

.tos-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.tos-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tos-subtitle {
    font-size: 18px;
    color: #b8b8b8;
    margin-bottom: 60px;
    font-weight: 400;
}

.tos-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.tos-text h3 {
    color: #9664ff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 35px;
}

.tos-text h3:first-child {
    margin-top: 0;
}

.tos-text p {
    color: #b8b8b8;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
}

/* Reviews Section */
.reviews-section {
    padding: 120px 50px;
    background: #090909;
    position: relative;
    overflow: hidden;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.reviews-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-subtitle {
    font-size: 18px;
    color: #b8b8b8;
    margin-bottom: 80px;
    font-weight: 400;
}

.carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    height: 400px;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    align-items: center;
    will-change: transform;
}

.review-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 25px;
    width: 320px;
    height: 280px;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0.7;
    transform: scale(0.9);
}

.review-card.center-review {
    width: 400px;
    height: 320px;
    opacity: 1;
    transform: scale(1);
    border-color: rgba(150, 100, 255, 0.3);
    box-shadow: 0 15px 25px rgba(150, 100, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

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

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(150, 100, 255, 0.3);
}

.center-review .reviewer-avatar {
    width: 48px;
    height: 48px;
    border-color: rgba(150, 100, 255, 0.5);
}

.reviewer-name {
    font-weight: 600;
    color: white;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    transition: font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.center-review .reviewer-name {
    font-size: 18px;
}

.review-stars {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.review-stars i {
    color: #9664ff;
    font-size: 14px;
    transition: font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-stars i.fa-star-o {
    color: rgba(150, 100, 255, 0.3);
}

.center-review .review-stars i {
    font-size: 16px;
}

.review-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    text-align: left;
}

.review-content p {
    color: #b8b8b8;
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.center-review .review-content p {
    font-size: 16px;
    color: #d0d0d0;
}

.review-date {
    color: #888;
    font-size: 12px;
    font-weight: 400;
    text-align: left;
    margin-top: 15px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    transition: font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.center-review .review-date {
    font-size: 13px;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    pointer-events: none;
    z-index: 10;
}

.left-gradient {
    left: 0;
    background: linear-gradient(to right, #090909 0%, #090909 20%, rgba(9, 9, 9, 0.8) 60%, rgba(9, 9, 9, 0.3) 80%, transparent 100%);
}

.right-gradient {
    right: 0;
    background: linear-gradient(to left, #090909 0%, #090909 20%, rgba(9, 9, 9, 0.8) 60%, rgba(9, 9, 9, 0.3) 80%, transparent 100%);
}

@keyframes slideLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-350px);
    }
}

/* Pricing Section */
.pricing-section {
    padding: 100px 50px;
    background: #090909;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pricing-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #b8b8b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-subtitle {
    font-size: 18px;
    color: #b8b8b8;
    margin-bottom: 60px;
    font-weight: 400;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 25px;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(150, 100, 255, 0.3);
    box-shadow: 0 20px 40px rgba(150, 100, 255, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #9664ff 0%, #7c4dff 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    margin-bottom: 30px;
    margin-top: 20px;
}

.billing-info {
    font-size: 13px;
    color: #888;
    margin-top: 5px;
    font-weight: 400;
}

.pricing-tier {
    font-size: 24px;
    font-weight: 700;
    color: #9664ff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: white;
}

.price-period {
    font-size: 16px;
    color: #b8b8b8;
    font-weight: 400;
}

.savings {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    line-height: 1.8;
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    font-size: 15px;
}

.pricing-features li.included {
    color: #b8b8b8;
}

.pricing-features li.included::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #9664ff;
    font-weight: bold;
    font-size: 16px;
}

.pricing-features li.excluded {
    color: #666;
}

.pricing-features li.excluded::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ff4444;
    font-weight: bold;
    font-size: 16px;
}

.pricing-btn {
    width: 100%;
    background: #211738;
    color: #9664ff;
    border: 1px solid #9664ff;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    box-sizing: border-box;
}

.pricing-btn:hover {
    background: #9664ff;
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.footer-logo img {
    width: 32px;
    height: 32px;
}

.footer-description {
    color: #b8b8b8;
    line-height: 1.6;
    font-size: 15px;
    max-width: 300px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #b8b8b8;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #9664ff;
}

/* Responsive Design */
@media (min-width: 1025px) {
    .product-carousel .carousel-container {
        width: 880px;
        height: 550px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .features-grid {
        max-width: 800px;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .navbar-wrapper {
        padding: 15px 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        position: static;
    }
    
    .nav-actions {
        position: static;
    }

    .navbar.scrolled {
        padding: 10px;
    }

    .navbar.scrolled .navbar-wrapper {
        max-width: calc(100% - 20px);
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -320px;
        width: 280px;
        height: 100vh;
        background: rgba(9, 9, 9, 0.95);
        backdrop-filter: blur(20px);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 1001;
        visibility: hidden;
    }

    .nav-links.active {
        right: 0;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 10px 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-actions {
        position: absolute;
        bottom: 30px;
        left: 30px;
        right: 30px;
    }

    .nav-actions .cta-btn {
        width: 100%;
        justify-content: center;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-btn, .secondary-btn {
        width: 100%;
        max-width: 200px;
    }

    .app-image {
        width: 90%;
    }

    .features-section {
        padding: 100px 20px 120px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .pricing-section {
        padding: 80px 20px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .reviews-section {
        padding: 100px 20px;
    }

    .carousel-container {
        height: 350px;
    }

    .review-card {
        width: 280px;
        height: 250px;
        padding: 25px 20px;
    }

    .review-card.center-review {
        width: 320px;
        height: 280px;
    }

    .reviewer-avatar {
        width: 35px;
        height: 35px;
    }

    .center-review .reviewer-avatar {
        width: 40px;
        height: 40px;
    }

    .carousel-track {
        gap: 25px;
    }

    .back-link-section {
        padding: 20px 20px 0 10px;
        max-width: calc(100% - 40px);
    }

    .about-section {
        padding: 80px 20px 120px;
    }

    .tos-section {
        padding: 80px 20px 120px;
    }

    /* Product Page Responsive - Tablet */
    .product-section {
        padding: 20px 20px 100px;
    }

    .product-layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-media {
        display: contents;
    }
    
    .product-carousel {
        order: 1;
    }
    
    .product-details {
        order: 2;
    }
    
    .product-description {
        order: 3;
    }
    
    .system-requirements {
        order: 4;
    }

    .product-title {
        font-size: 32px;
    }



    .product-carousel .carousel-container {
        aspect-ratio: 16 / 10;
    }

    .checkout-btn {
        font-size: 17px;
        padding: 17px 22px;
    }

    .variant-duration {
        font-size: 17px;
    }

    .variant-price {
        font-size: 20px;
    }

    .variants-title {
        font-size: 22px;
    }

    .description-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .navbar-wrapper {
        padding: 10px 15px;
    }

    .navbar.scrolled {
        padding: 10px;
    }

    .navbar.scrolled .navbar-wrapper {
        max-width: calc(100% - 20px);
    }

    .nav-links {
        width: 100%;
        right: -100%;
        padding: 80px 20px 20px;
    }

    .nav-actions {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

    body {
        padding-top: 60px;
    }

    .features-section {
        padding: 80px 15px 100px;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .features-subtitle {
        margin-bottom: 60px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .feature-header {
        gap: 12px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .feature-title {
        font-size: 20px;
    }

    .pricing-section {
        padding: 60px 15px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .price-amount {
        font-size: 32px;
    }

    .reviews-section {
        padding: 80px 15px;
    }

    .carousel-container {
        height: 300px;
        max-width: 350px;
    }

    .review-card {
        width: 250px;
        height: 220px;
        padding: 20px 15px;
    }

    .review-card.center-review {
        width: 280px;
        height: 250px;
    }

    .reviewer-name {
        font-size: 14px;
    }

    .center-review .reviewer-name {
        font-size: 16px;
    }

    .review-content p {
        font-size: 14px;
    }

    .center-review .review-content p {
        font-size: 15px;
    }

    .gradient-overlay {
        width: 100px;
    }

    .carousel-track {
        gap: 20px;
    }

    .back-link-section {
        padding: 20px 15px 0 5px;
        max-width: calc(100% - 30px);
    }

    .about-section {
        padding: 80px 15px 100px;
    }

    .tos-section {
        padding: 80px 15px 100px;
    }

    /* Product Page Responsive - Mobile */
    .product-section {
        padding: 20px 15px 80px;
    }

    .product-layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-media {
        display: contents;
    }
    
    .product-carousel {
        order: 1;
    }
    
    .product-details {
        order: 2;
    }
    
    .product-description {
        order: 3;
    }
    
    .system-requirements {
        order: 4;
    }

    .product-title {
        font-size: 26px;
    }



    .product-carousel .carousel-container {
        aspect-ratio: 16 / 10;
    }

    .checkout-btn {
        font-size: 16px;
        padding: 16px 20px;
    }

    .variant-duration {
        font-size: 16px;
    }

    .variant-price {
        font-size: 18px;
    }

    .variants-title {
        font-size: 20px;
    }

    .description-title {
        font-size: 18px;
    }

    .product-variants {
        padding: 25px 20px;
    }

    .product-description {
        padding: 25px 20px;
    }

    .variant-option label {
        padding: 18px 15px;
    }

    .variant-info {
        gap: 12px;
    }

    .description-list li {
        font-size: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
