 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } :root { --bg-primary: #0a0a0f; --bg-secondary: #12121a; --bg-card: rgba(20, 20, 35, 0.6); --bg-card-hover: rgba(25, 25, 45, 0.7); --accent-primary: #00d4aa; --accent-secondary: #7c3aed; --accent-glow: #00ffcc; --accent-success: #10b981; --text-primary: #ffffff; --text-secondary: rgba(255, 255, 255, 0.75); --text-muted: rgba(255, 255, 255, 0.5); --gradient-hero: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%); --gradient-glow: radial-gradient(ellipse at center, rgba(0, 212, 170, 0.15) 0%, transparent 70%); --gradient-card: linear-gradient(145deg, rgba(124, 58, 237, 0.1) 0%, rgba(0, 212, 170, 0.05) 100%); --gradient-border: linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(0, 212, 170, 0.5)); --gradient-text: linear-gradient(135deg, #00d4aa, #7c3aed); --section-padding: 100px 0; --section-padding-mobile: 60px 0; --container-max: 1200px; --container-padding: 24px; --radius-sm: 8px; --radius-md: 12px; --radius-lg: 16px; --radius-xl: 24px; --shadow-glow: 0 0 30px rgba(0, 212, 170, 0.3); --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4); --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.2); --transition-fast: 0.2s ease; --transition-normal: 0.3s ease; --transition-slow: 0.5s ease; } body { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 16px; line-height: 1.7; color: var(--text-primary); background: var(--bg-primary); overflow-x: hidden; } h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; } h1 { font-size: clamp(2rem, 5vw, 3rem); } h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); } h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); } h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); } p { color: var(--text-secondary); max-width: 65ch; } .mono { font-family: 'Space Mono', monospace; } .text-gradient { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .text-accent { color: var(--accent-primary); } .text-muted { color: var(--text-muted); } .container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); } .container--narrow { max-width: 800px; } section { padding: var(--section-padding); position: relative; } @media (max-width: 768px) { section { padding: var(--section-padding-mobile); } } .noise-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 9999; opacity: 0.04; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"); } .glow-orb { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 0; } .glow-orb--primary { width: 600px; height: 600px; background: radial-gradient(circle, rgba(0, 212, 170, 0.2) 0%, transparent 70%); } .glow-orb--secondary { width: 400px; height: 400px; background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%); } .btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 18px 40px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.1rem; font-weight: 600; text-decoration: none; border: none; border-radius: var(--radius-md); cursor: pointer; transition: all var(--transition-normal); } .btn--primary { background: var(--accent-primary); color: #0a0a0f; box-shadow: 0 0 20px rgba(0, 212, 170, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3); } .btn--primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(0, 212, 170, 0.6), 0 8px 25px rgba(0, 0, 0, 0.4); } .btn--primary:active { transform: translateY(0); } .btn--large { padding: 22px 50px; font-size: 1.2rem; border-radius: var(--radius-lg); } .btn--full { width: 100%; } .card { background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: var(--radius-lg); padding: 32px; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); transition: all var(--transition-normal); } .card--glass { background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%); border: 1px solid rgba(255, 255, 255, 0.1); } .card--glow { box-shadow: 0 0 0 1px rgba(0, 212, 170, 0.1), 0 0 30px rgba(0, 212, 170, 0.05); } .card--glow:hover { box-shadow: 0 0 0 1px rgba(0, 212, 170, 0.2), 0 0 40px rgba(0, 212, 170, 0.1); } .section-header { text-align: center; margin-bottom: 60px; } .section-header h2 { margin-bottom: 16px; } .section-header p { margin: 0 auto; font-size: 1.1rem; } .badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; font-size: 0.85rem; font-weight: 500; background: rgba(0, 212, 170, 0.1); color: var(--accent-primary); border: 1px solid rgba(0, 212, 170, 0.2); border-radius: 50px; } .badge--free { background: rgba(16, 185, 129, 0.15); color: var(--accent-success); border-color: rgba(16, 185, 129, 0.3); } @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } @keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 170, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3); } 50% { box-shadow: 0 0 35px rgba(0, 212, 170, 0.5), 0 4px 15px rgba(0, 0, 0, 0.3); } } .animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; } .animate-on-scroll.visible { opacity: 1; transform: translateY(0); } .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; } .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; } .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; } .animate-on-scroll:nth-child(5) { transition-delay: 0.4s; } .animate-on-scroll:nth-child(6) { transition-delay: 0.5s; } .hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px 24px 80px; background: var(--gradient-hero); position: relative; overflow: hidden; } .hero .glow-orb--primary { top: -200px; left: 50%; transform: translateX(-50%); } .hero .glow-orb--secondary { bottom: -100px; right: -100px; } .hero__logo { font-family: 'Space Mono', monospace; font-size: 0.9rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 40px; display: flex; align-items: center; gap: 16px; position: relative; z-index: 1; } .hero__logo::before, .hero__logo::after { content: ''; width: 40px; height: 1px; background: linear-gradient(90deg, transparent, var(--text-muted)); } .hero__logo::after { background: linear-gradient(90deg, var(--text-muted), transparent); } .vsl-container { width: 100%; max-width: 600px; margin: 0 auto 40px; position: relative; z-index: 1; } @media (max-width: 576px) { .vsl-container { max-width: 100%; padding: 0; } } .vsl-frame { background: transparent; border: none; border-radius: var(--radius-md); padding: 0; box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5); } .vsl-wrapper { position: relative; width: 100%; border-radius: var(--radius-md); overflow: hidden; line-height: 0; } .vsl-wrapper iframe, .vsl-wrapper video, .vsl-wrapper vturb-smartplayer { width: 100%; border: none; } .vsl-placeholder { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0f 100%); color: var(--text-muted); gap: 16px; } .vsl-placeholder__icon { width: 80px; height: 80px; border-radius: 50%; background: rgba(0, 212, 170, 0.1); border: 2px solid rgba(0, 212, 170, 0.3); display: flex; align-items: center; justify-content: center; font-size: 2rem; cursor: pointer; transition: all var(--transition-normal); } .vsl-placeholder__icon:hover { background: rgba(0, 212, 170, 0.2); border-color: var(--accent-primary); transform: scale(1.05); } .hero__content { text-align: center; max-width: 700px; position: relative; z-index: 1; } .hero__headline { margin-bottom: 20px; } .hero__subheadline { font-size: 1.2rem; margin-bottom: 40px; max-width: 550px; margin-left: auto; margin-right: auto; } .hero__cta { margin-bottom: 24px; } .hero__trust { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.9rem; color: var(--text-muted); } .hero__trust svg { width: 16px; height: 16px; color: var(--accent-primary); } .problem { background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%); } .problem__header { text-align: center; margin-bottom: 48px; } .problem__card { max-width: 700px; margin: 0 auto 48px; } .problem__list { list-style: none; display: flex; flex-direction: column; gap: 20px; } .problem__item { display: flex; align-items: flex-start; gap: 16px; font-size: 1.1rem; color: var(--text-secondary); line-height: 1.6; } .problem__item::before { content: ''; flex-shrink: 0; width: 8px; height: 8px; margin-top: 10px; background: var(--accent-secondary); border-radius: 50%; box-shadow: 0 0 10px var(--accent-secondary); } .problem__reassurance { text-align: center; font-size: 1.25rem; font-weight: 500; color: var(--text-primary); max-width: 500px; margin: 0 auto; } .mechanism { background: var(--bg-secondary); position: relative; } .mechanism .glow-orb--primary { top: 50%; left: -300px; transform: translateY(-50%); opacity: 0.5; } .mechanism__header { text-align: center; margin-bottom: 40px; } .mechanism__header h2 span { background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-shadow: 0 0 40px rgba(0, 212, 170, 0.3); } .mechanism__intro { display: flex; align-items: flex-start; gap: 24px; max-width: 700px; margin: 0 auto 48px; text-align: left; } .mechanism__icon { flex-shrink: 0; width: 64px; height: 64px; background: var(--gradient-card); border: 1px solid rgba(0, 212, 170, 0.2); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; } .mechanism__text { font-size: 1.1rem; line-height: 1.8; } .mechanism__divider { width: 100%; max-width: 300px; height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent); margin: 0 auto 48px; } .mechanism__description { text-align: center; max-width: 600px; margin: 0 auto 60px; font-size: 1.1rem; line-height: 1.9; } .mechanism__features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 600px; margin: 0 auto; } @media (max-width: 576px) { .mechanism__features { grid-template-columns: 1fr; max-width: 250px; } } .mechanism__feature { text-align: center; padding: 24px; background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: var(--radius-md); } .mechanism__feature-icon { font-size: 2rem; margin-bottom: 12px; } .mechanism__feature-label { font-size: 0.95rem; font-weight: 600; color: var(--text-secondary); } .included { background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%); } .included__card { max-width: 700px; margin: 0 auto; padding: 48px; } @media (max-width: 576px) { .included__card { padding: 32px 24px; } } .included__mockup { width: 200px; height: 200px; margin: 0 auto 40px; background: var(--gradient-card); border: 1px solid rgba(0, 212, 170, 0.2); border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 60px rgba(0, 212, 170, 0.1), 0 20px 40px rgba(0, 0, 0, 0.3); position: relative; } .included__mockup::before { content: ''; position: absolute; inset: -1px; border-radius: var(--radius-xl); background: var(--gradient-border); z-index: -1; opacity: 0.5; } .included__mockup-icon { font-size: 4rem; filter: drop-shadow(0 0 20px rgba(0, 212, 170, 0.5)); } .included__list { list-style: none; display: flex; flex-direction: column; gap: 24px; } .included__item { display: flex; align-items: flex-start; gap: 16px; } .included__check { flex-shrink: 0; width: 24px; height: 24px; background: rgba(0, 212, 170, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent-primary); font-size: 0.9rem; margin-top: 2px; } .included__item-content h4 { margin-bottom: 4px; font-weight: 600; } .included__item-content p { font-size: 0.95rem; color: var(--text-muted); margin: 0; } .bonuses { background: var(--bg-primary); } .bonuses__grid { display: grid; gap: 24px; max-width: 900px; margin: 0 auto; } .bonus-card { display: grid; grid-template-columns: 120px 1fr; gap: 24px; align-items: center; } @media (max-width: 576px) { .bonus-card { grid-template-columns: 1fr; text-align: center; } } .bonus-card__image { width: 120px; height: 120px; background: var(--gradient-card); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; } @media (max-width: 576px) { .bonus-card__image { margin: 0 auto; } } .bonus-card__content h4 { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; } @media (max-width: 576px) { .bonus-card__content h4 { justify-content: center; } } .bonus-card__label { font-family: 'Space Mono', monospace; font-size: 0.75rem; color: var(--accent-primary); background: rgba(0, 212, 170, 0.1); padding: 4px 10px; border-radius: 4px; } .bonus-card__content p { font-size: 0.95rem; margin-bottom: 12px; } .bonus-card__price { font-family: 'Space Mono', monospace; font-size: 0.9rem; } .bonus-card__price-old { text-decoration: line-through; color: var(--text-muted); margin-right: 12px; } .bonus-card__price-new { color: var(--accent-success); font-weight: 700; } .pricing { background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%); position: relative; } .pricing .glow-orb--primary { top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.4; } .pricing__card { max-width: 600px; margin: 0 auto; padding: 48px; text-align: center; position: relative; z-index: 1; } @media (max-width: 576px) { .pricing__card { padding: 32px 24px; } } .pricing__stack { margin-bottom: 32px; text-align: left; } .pricing__stack-item { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); font-size: 0.95rem; } .pricing__stack-item span:last-child { font-family: 'Space Mono', monospace; color: var(--text-muted); } .pricing__stack-total { display: flex; justify-content: space-between; padding: 16px 0; font-weight: 700; font-size: 1.1rem; border-top: 2px solid rgba(255, 255, 255, 0.1); margin-top: 8px; } .pricing__stack-total span:last-child { font-family: 'Space Mono', monospace; text-decoration: line-through; color: var(--text-muted); } .pricing__divider { width: 100%; height: 2px; background: var(--gradient-border); margin: 32px 0; border-radius: 2px; } .pricing__label { font-size: 1rem; color: var(--text-muted); margin-bottom: 8px; } .pricing__price { font-family: 'Space Mono', monospace; font-size: 4rem; font-weight: 700; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -0.02em; line-height: 1; margin-bottom: 8px; } .pricing__price-currency { font-size: 1.5rem; vertical-align: super; margin-right: 4px; } .pricing__note { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 32px; } .pricing__cta { margin-bottom: 24px; } .pricing__cta .btn { animation: pulse-glow 2s infinite; } .pricing__security { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; } .pricing__cards { display: flex; align-items: center; justify-content: center; gap: 12px; opacity: 0.6; } .pricing__cards img { height: 24px; width: auto; } .pricing__cards span { font-size: 0.85rem; color: var(--text-muted); padding: 4px 8px; background: rgba(255, 255, 255, 0.05); border-radius: 4px; } .guarantee { background: var(--bg-primary); } .guarantee__content { max-width: 600px; margin: 0 auto; text-align: center; } .guarantee__badge { width: 140px; height: 140px; margin: 0 auto 32px; background: linear-gradient(145deg, rgba(0, 212, 170, 0.1), rgba(124, 58, 237, 0.1)); border: 2px solid rgba(0, 212, 170, 0.3); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; } .guarantee__badge::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid rgba(0, 212, 170, 0.1); } .guarantee__days { font-family: 'Space Mono', monospace; font-size: 2.5rem; font-weight: 700; color: var(--accent-primary); line-height: 1; } .guarantee__text { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); } .guarantee__content h2 { margin-bottom: 24px; } .guarantee__content p { font-size: 1.1rem; margin: 0 auto 40px; line-height: 1.8; } .faq { background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%); } .faq__list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; } .faq__item { background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: var(--radius-md); overflow: hidden; } .faq__question { width: 100%; padding: 24px; background: none; border: none; text-align: left; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--text-primary); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: color var(--transition-fast); } .faq__question:hover { color: var(--accent-primary); } .faq__icon { flex-shrink: 0; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--text-muted); transition: transform var(--transition-normal); } .faq__item.active .faq__icon { transform: rotate(180deg); } .faq__answer { max-height: 0; overflow: hidden; transition: max-height var(--transition-normal); } .faq__answer-inner { padding: 0 24px 24px; color: var(--text-secondary); line-height: 1.7; } .faq__item.active .faq__answer { max-height: 500px; } .final-cta { background: var(--gradient-hero); position: relative; overflow: hidden; } .final-cta .glow-orb--primary { bottom: -200px; left: 50%; transform: translateX(-50%); opacity: 0.6; } .final-cta__content { max-width: 600px; margin: 0 auto; text-align: center; position: relative; z-index: 1; } .final-cta h2 { margin-bottom: 20px; line-height: 1.3; } .final-cta__sub { font-size: 1.15rem; margin-bottom: 40px; } .final-cta__cta { margin-bottom: 24px; } .final-cta__trust { font-size: 0.9rem; color: var(--text-muted); } .footer { background: var(--bg-primary); border-top: 1px solid rgba(255, 255, 255, 0.05); padding: 60px 24px 40px; } .footer__content { max-width: 800px; margin: 0 auto; text-align: center; } .footer__copyright { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; } .footer__links { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; } .footer__links a { font-size: 0.85rem; color: var(--text-muted); text-decoration: none; transition: color var(--transition-fast); } .footer__links a:hover { color: var(--accent-primary); } .footer__separator { color: rgba(255, 255, 255, 0.2); } .footer__disclaimer { font-size: 0.8rem; color: var(--text-muted); line-height: 1.7; max-width: 600px; margin: 0 auto; opacity: 0.7; } @media (max-width: 768px) { .mechanism__content { text-align: center; } .btn { padding: 16px 32px; font-size: 1rem; } .btn--large { padding: 18px 36px; font-size: 1.05rem; } .pricing__amount, .pricing-initial__amount { font-size: 3rem; } .pricing-initial__content { flex-direction: column; text-align: center; } .pricing-initial__mockup { margin-bottom: 24px; } .product-card--main { grid-template-columns: 1fr; text-align: center; } .product-card--main .product-card__image { margin: 0 auto; } } .hero { min-height: auto; padding: 60px 24px 40px; } .pricing-initial { background: var(--bg-primary); padding: 40px 0 80px; } .pricing-initial__content { display: flex; align-items: center; justify-content: center; margin-bottom: 40px; } .pricing-initial__info { text-align: center; } .pricing-initial__old { margin-bottom: 8px; } .pricing-initial__label { font-family: 'Space Mono', monospace; font-size: 0.9rem; color: var(--text-muted); margin-right: 8px; } .pricing-initial__old-price { font-family: 'Space Mono', monospace; font-size: 1.5rem; color: var(--text-muted); text-decoration: line-through; text-decoration-thickness: 2px; text-shadow: 0 0 10px rgba(255, 255, 255, 0.2); opacity: 0.8; } .pricing-initial__current { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin-top: 8px; margin-bottom: 8px; } .pricing-initial__currency { font-family: 'Space Mono', monospace; font-size: 2.5rem; font-weight: 700; color: var(--accent-primary); text-shadow: 0 0 15px rgba(0, 212, 170, 0.4); } .pricing-initial__amount { font-family: 'Space Mono', monospace; font-size: 5.5rem; font-weight: 700; color: var(--accent-primary); text-shadow: 0 0 25px rgba(0, 212, 170, 0.6); line-height: 0.9; } .pricing-initial__cta { max-width: 500px; margin: 0 auto; text-align: center; } .pricing-initial__cta .btn { animation: pulse-glow 2s infinite; } .pricing-initial__payment { margin-top: 24px; } .pricing-initial__cards { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 12px; } .pricing-initial__cards span { font-size: 0.8rem; color: var(--text-muted); padding: 4px 10px; background: rgba(255, 255, 255, 0.05); border-radius: 4px; } .pricing-initial__disclaimer { font-size: 0.85rem; color: var(--text-muted); font-style: italic; } .products { background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%); } .products__intro { max-width: 600px; margin: 0 auto; text-align: center; } .product-card--main { display: grid; grid-template-columns: 250px 1fr; gap: 40px; align-items: center; max-width: 800px; margin: 0 auto 60px; padding: 40px; background: var(--bg-card); border: 1px solid rgba(0, 212, 170, 0.2); border-radius: var(--radius-xl); box-shadow: 0 0 60px rgba(0, 212, 170, 0.1), 0 20px 40px rgba(0, 0, 0, 0.3); } .product-card--main .product-card__image { width: 100%; max-width: 250px; } .product-card--main .product-card__image img { width: 100%; height: auto; border-radius: var(--radius-lg); } .product-card--main h3 { margin-bottom: 16px; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .product-card--main p { margin-bottom: 20px; line-height: 1.7; } .product-card--main .product-card__price { display: flex; align-items: center; gap: 12px; } .product-card--main .product-card__price-value { font-family: 'Space Mono', monospace; font-size: 1.5rem; font-weight: 700; color: var(--text-primary); } .product-card--main .product-card__price-label { font-size: 0.85rem; color: var(--text-muted); } .products__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; } @media (max-width: 900px) { .products__grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 600px) { .products__grid { grid-template-columns: 1fr; max-width: 350px; } } .product-card { background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: var(--radius-lg); padding: 24px; text-align: center; position: relative; transition: all var(--transition-normal); } .product-card:hover { border-color: rgba(0, 212, 170, 0.2); box-shadow: 0 0 30px rgba(0, 212, 170, 0.1); } .product-card__badge { position: absolute; top: 12px; right: 12px; font-family: 'Space Mono', monospace; font-size: 0.7rem; font-weight: 700; padding: 4px 10px; background: rgba(0, 212, 170, 0.15); color: var(--accent-primary); border-radius: 4px; letter-spacing: 0.05em; } .product-card__image { width: 120px; height: 120px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; } .product-card__image img { width: 100%; height: 100%; object-fit: contain; border-radius: var(--radius-md); } .product-card__content h4 { margin-bottom: 10px; font-size: 1rem; line-height: 1.3; } .product-card__content p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.5; } .product-card__price { display: flex; align-items: center; justify-content: center; gap: 12px; } .product-card__price-old { font-family: 'Space Mono', monospace; font-size: 0.9rem; color: var(--text-muted); text-decoration: line-through; } .product-card__price-free { font-family: 'Space Mono', monospace; font-size: 1rem; font-weight: 700; color: var(--accent-success); } .mechanism { background: var(--bg-secondary); padding: 80px 0; } .mechanism__content { text-align: center; max-width: 700px; margin: 0 auto; } .mechanism__content h2 { margin-bottom: 24px; } .mechanism__content p { font-size: 1.1rem; line-height: 1.8; margin: 0 auto; } .pricing { background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%); position: relative; } .pricing .glow-orb--primary { top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.4; } .pricing__card { max-width: 600px; margin: 0 auto; padding: 48px; background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-xl); text-align: center; position: relative; z-index: 1; backdrop-filter: blur(20px); } .pricing__mockup { max-width: 300px; margin: 0 auto 32px; } .pricing__mockup img { width: 100%; height: auto; border-radius: var(--radius-lg); filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3)); } .pricing__info { margin-bottom: 32px; } .pricing__old { margin-bottom: 8px; } .pricing__label { font-family: 'Space Mono', monospace; font-size: 0.9rem; color: var(--text-muted); margin-right: 8px; } .pricing__old-price { font-family: 'Space Mono', monospace; font-size: 1.5rem; color: var(--text-muted); text-decoration: line-through; text-decoration-thickness: 2px; text-shadow: 0 0 10px rgba(255, 255, 255, 0.2); opacity: 0.8; } .pricing__current { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin-bottom: 24px; margin-top: 12px; } .pricing__currency { font-family: 'Space Mono', monospace; font-size: 2.5rem; font-weight: 700; color: var(--accent-primary); text-shadow: 0 0 15px rgba(0, 212, 170, 0.4); } .pricing__amount { font-family: 'Space Mono', monospace; font-size: 5.5rem; font-weight: 700; color: var(--accent-primary); text-shadow: 0 0 25px rgba(0, 212, 170, 0.6); line-height: 0.9; } .pricing__note { font-size: 0.9rem; color: var(--text-muted); } .pricing__cta { margin-bottom: 24px; } .pricing__cta .btn { animation: pulse-glow 2s infinite; } .pricing__payment { text-align: center; } .pricing__security { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; } .pricing__cards { display: flex; align-items: center; justify-content: center; gap: 12px; } .pricing__cards span { font-size: 0.8rem; color: var(--text-muted); padding: 4px 10px; background: rgba(255, 255, 255, 0.05); border-radius: 4px; } .warning-message { color: #ef4444; font-weight: 700; font-size: 1rem; margin-bottom: 24px; letter-spacing: 0.05em; text-transform: uppercase; text-align: center; animation: pulse-red 2s infinite; white-space: nowrap; } @media (max-width: 576px) { .warning-message { font-size: 0.65rem; letter-spacing: 0; margin-bottom: 16px; } } .badge-container { display: flex; justify-content: center; margin-bottom: 14px; position: relative; z-index: 2; } .btn-badge { background: linear-gradient(135deg, #ff0055, #cc0044); color: white; font-family: 'Space Mono', monospace; font-size: 0.75rem; font-weight: 700; padding: 8px 16px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.1em; box-shadow: 0 4px 15px rgba(255, 0, 85, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset; position: relative; animation: badge-float 3s ease-in-out infinite; } .btn-badge::after { content: ''; position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent; border-top: 6px solid #cc0044; } @keyframes badge-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } } .hide { display: none !important; } @keyframes pulse-red { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } } @media (max-width: 768px) { .product-card--main { grid-template-columns: 1fr; text-align: center; gap: 24px; padding: 30px 20px; } .product-card--main .product-card__image { margin: 0 auto; max-width: 180px; } }