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

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #f59e0b;
    --accent: #10b981;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f1f5f9;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.logo i {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.btn-nav {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.badge i {
    color: var(--white);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin: 20px 0 30px;
    max-width: 540px;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.hero-feature i {
    color: var(--accent);
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.old-price {
    text-decoration: line-through;
    color: var(--gray-light);
    font-size: 1.1rem;
}

.new-price {
    font-size: 2rem;
    font-weight: 800;
    color: #f00;
}

.trust-badges {
    display: flex;
    gap: 30px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.9rem;
}

.trust-badge i {
    color: var(--accent);
}

/* Sphere Animation */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sphere-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
    border: 3px solid rgba(99, 102, 241, 0.3);
}

.sphere-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient);
    filter: blur(40px);
    opacity: 0.5;
    animation: pulse 3s ease-in-out infinite;
}

.sphere-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sphere-inner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.sphere-ring {
    position: absolute;
    width: 120%;
    height: 120%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

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

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

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

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    font-size: 1.2rem;
    animation: float 4s ease-in-out infinite;
}

.icon-1 {
    top: 10%;
    left: 10%;
    color: #ef4444;
    animation-delay: 0s;
}

.icon-2 {
    top: 20%;
    right: 5%;
    color: var(--primary);
    animation-delay: 1s;
}

.icon-3 {
    bottom: 20%;
    left: 5%;
    color: var(--secondary);
    animation-delay: 2s;
}

.icon-4 {
    bottom: 10%;
    right: 15%;
    color: var(--accent);
    animation-delay: 3s;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--gray);
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Problem Section */
.problem {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

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

.problem h2 {
    margin-bottom: 50px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.problem-item {
    padding: 30px;
    background: var(--dark-light);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
}

.problem-item i {
    font-size: 3rem;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.problem-item p {
    font-size: 1.1rem;
    color: var(--gray-light);
}

.solution {
    background: var(--gradient);
    padding: 40px;
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.solution h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.solution p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.solution .btn {
    margin-top: 10px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-tag {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    position: relative;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-card.featured {
    background: var(--gradient);
    color: var(--white);
}

.feature-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
}

.feature-card.featured .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray);
}

.feature-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.step {
    text-align: center;
    flex: 1;
    max-width: 250px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 10px;
}

.step p {
    color: var(--gray);
}

.step-arrow {
    color: var(--gray-light);
    font-size: 2rem;
}

/* Usage Section */
.usage {
    padding: 100px 0;
    background: var(--light);
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.usage-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
}

.usage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.usage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.usage-card h3 {
    margin-bottom: 15px;
}

.usage-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.usage-tag {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

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

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-image {
    width: 100%;
    height: 200px;
    margin: -30px -30px 20px -30px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.testimonial-stars {
    color: var(--secondary);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-info strong {
    display: block;
}

.author-info span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Specs Section */
.specs {
    padding: 100px 0;
    background: var(--light);
}

.specs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.specs-list {
    margin-top: 30px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.spec-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

.spec-item span {
    font-weight: 500;
}

.specs-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.package-box {
    width: 300px;
    height: 300px;
    background: var(--gradient);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
    flex-shrink: 0;
}

.box-content {
    font-size: 5rem;
    color: var(--white);
}

/* Delivery Section */
.delivery {
    padding: 100px 0;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.delivery-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.delivery-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
}

.delivery-card h3 {
    margin-bottom: 10px;
}

.delivery-card p {
    color: var(--gray);
    margin-bottom: 15px;
}

.delivery-detail {
    background: var(--gradient);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Order Section */
.order {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.order-info h2 {
    margin-bottom: 20px;
}

.order-info p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.order-benefits {
    margin-bottom: 30px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.benefit i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.countdown {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.countdown p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.countdown-timer {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.time-block {
    background: var(--gradient);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
}

.time-block span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

.time-block small {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Order Form */
.order-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.order-form {
    color: var(--dark);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    margin-bottom: 10px;
}

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

.price-old {
    text-decoration: line-through;
    color: var(--gray-light);
    font-size: 1.2rem;
}

.price-new {
    font-size: 2rem;
    font-weight: 800;
    color: #f00;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--gray);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--light);
}

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

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--gray);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-brand p {
    margin-top: 15px;
    opacity: 0.8;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--gray-light);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--gray-light);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--dark-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--dark-light);
    color: var(--gray-light);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.modal-content h3 {
    margin-bottom: 15px;
}

.modal-content p {
    color: var(--gray);
    margin-bottom: 25px;
}

/* CTA Bar */
.cta-bar {
    padding: 40px 0;
    background: var(--light);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cta-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-bar-text h3 {
    margin-bottom: 5px;
}

.cta-bar-text p {
    color: var(--gray);
    font-size: 1.15rem;
}

.discount-highlight {
    background: linear-gradient(135deg, #ff0844 0%, #ff6b35 30%, #ffd700 60%, #ff0844 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.6rem;
    font-weight: 800;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite, gradientShift 3s ease infinite;
}

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

.cta-bar-action {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cta-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cta-price-old {
    text-decoration: line-through;
    color: var(--gray-light);
    font-size: 1rem;
}

.cta-price-new {
    font-size: 2rem;
    font-weight: 800;
    color: #f00;
}

/* CTA Block */
.cta-block {
    padding: 100px 0;
    background: var(--light);
}

.cta-block-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-block-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.cta-block-badge i {
    animation: bounce 2s infinite;
}

.cta-block-content h2 {
    margin-bottom: 15px;
}

.cta-block-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.cta-block-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.cta-feature i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* CTA Emotional */
.cta-emotional {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.cta-emotional-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-emotional-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
    animation: pulse 3s ease-in-out infinite;
}

.cta-emotional-content h2 {
    margin-bottom: 20px;
}

.cta-emotional-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-emotional-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

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

/* CTA Social */
.cta-social {
    padding: 60px 0;
    background: rgba(99, 102, 241, 0.05);
}

.cta-social-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-social-text {
    flex: 1;
}

.cta-social-text h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.cta-social-text h3 i {
    color: var(--primary);
}

.cta-social-text p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 2px solid var(--primary);
}

.mobile-sticky-bar.visible {
    transform: translateY(0);
}

.mobile-sticky-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 15px;
}

.mobile-sticky-price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-price-badge {
    background: linear-gradient(135deg, #ff0844 0%, #ff6b35 30%, #ffd700 60%, #ff0844 100%);
    background-size: 200% 200%;
    padding: 6px 12px;
    border-radius: 20px;
    animation: gradientShift 3s ease infinite;
}

.mobile-price-badge .discount-highlight {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--white);
    background-clip: unset;
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    animation: none;
}

.mobile-price-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-old-price {
    text-decoration: line-through;
    color: var(--gray-light);
    font-size: 0.85rem;
}

.mobile-new-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f00;
    line-height: 1;
}

.mobile-sticky-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin: 20px auto 30px;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .sphere-container {
        width: 300px;
        height: 300px;
    }

    .sphere {
        width: 200px;
        height: 200px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .usage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-image {
        height: 250px;
    }

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

    .specs-text {
        text-align: center;
        order: 1;
    }

    .specs-visual {
        order: 2;
        margin-top: 40px;
    }

    .specs-text .section-header {
        text-align: center;
    }

    .spec-item {
        justify-content: center;
    }

    .order-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-emotional-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-block-features {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .mobile-sticky-bar {
        display: block;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

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

    .steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .usage-grid {
        grid-template-columns: 1fr;
    }

    .delivery-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .cta-bar-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-bar-action {
        flex-direction: column;
        gap: 20px;
    }

    .cta-price {
        align-items: center;
    }

    .cta-social-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-block-features {
        flex-direction: column;
        gap: 15px;
    }

    .package-box {
        width: 200px;
        height: 200px;
        margin: 0 auto;
        animation: none;
    }

    .box-content {
        font-size: 3rem;
    }

    .specs-visual {
        margin-top: 50px;
        width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-features {
        flex-direction: column;
        gap: 10px;
    }

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

    .trust-badges {
        flex-direction: column;
        gap: 10px;
    }

    .countdown-timer {
        justify-content: center;
    }

    .order-form-wrapper {
        padding: 25px;
    }

    .package-box {
        width: 150px;
        height: 150px;
        margin: 0 auto;
        animation: none;
    }

    .box-content {
        font-size: 2.5rem;
    }

    .specs {
        padding: 60px 0;
    }

    .specs-visual {
        margin-top: 40px;
        width: 100%;
        padding: 0 20px;
    }

    .specs-list {
        margin-top: 20px;
        margin-bottom: 30px;
    }
}
