View file File name : styles.css Content :* { margin: 0; padding: 0; box-sizing: border-box; } :root { --primary-pink: #f21a63; --primary-yellow: #fdbf23; --bg-dark: #0d001e; --bg-lighter: #1a0033; --text: #ffffff; --text-muted: #b8a8d9; --success: #10b981; --danger: #ef4444; } body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", sans-serif; background: var(--bg-dark); color: var(--text); line-height: 1.6; overflow-x: hidden; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } .wide-container { max-width: 1400px; margin: 0 auto; padding: 0 20px; } nav { position: fixed; top: 0; width: 100%; background: rgba(13, 0, 30, 0.98); backdrop-filter: blur(15px); z-index: 1000; padding: 1rem 0; border-bottom: 1px solid rgba(242, 26, 99, 0.2); box-shadow: 0 4px 20px rgba(242, 26, 99, 0.1); } nav .container { display: flex; justify-content: space-between; align-items: center; } .logo-container { display: flex; align-items: center; gap: 12px; } .logo-text { font-size: 1.6rem; font-weight: 800; background: linear-gradient( 135deg, var(--primary-pink), var(--primary-yellow) ); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -0.5px; } .nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; } .nav-links a { color: var(--text-muted); text-decoration: none; transition: all 0.3s; font-weight: 500; } .nav-links a:hover { color: var(--primary-pink); } .nav-cta { background: linear-gradient( 135deg, var(--primary-pink), var(--primary-yellow) ); color: white !important; padding: 0.7rem 1.5rem; border-radius: 30px; font-weight: 600; } .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(242, 26, 99, 0.4); } .hero { padding: 160px 0 120px; background: var(--bg-dark); position: relative; overflow: hidden; } .hero::before { content: ""; position: absolute; top: -50%; left: -10%; width: 60%; height: 150%; background: radial-gradient(circle, rgba(242, 26, 99, 0.15), transparent 70%); animation: pulse 8s ease-in-out infinite; } .hero::after { content: ""; position: absolute; top: -30%; right: -10%; width: 50%; height: 120%; background: radial-gradient( circle, rgba(253, 191, 35, 0.12), transparent 70% ); animation: pulse 8s ease-in-out infinite 1s; } @keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.1); opacity: 1; } } .hero .container { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; } .hero-content h1 { font-size: 4rem; font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem; background: linear-gradient(135deg, #fff 0%, var(--text-muted) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .gradient-text { background: linear-gradient( 135deg, var(--primary-pink), var(--primary-yellow) ); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .hero-content .subheadline { font-size: 1.3rem; color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.8; } .cta-buttons { display: flex; gap: 1rem; flex-wrap: nowrap; margin-bottom: 2rem; width: 100%; } .cta-buttons .btn { flex: 1; white-space: nowrap; } .btn { padding: 1.1rem 2.2rem; border-radius: 20px; text-decoration: none; font-weight: 600; transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.7rem; border: none; cursor: pointer; font-size: 1.05rem; } .btn-primary { background: linear-gradient( 135deg, var(--primary-pink), var(--primary-yellow) ); color: white; box-shadow: 0 15px 35px rgba(242, 26, 99, 0.4); } .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 45px rgba(242, 26, 99, 0.5); } .btn-secondary { background: rgba(255, 255, 255, 0.08); color: white; border: 2px solid rgba(255, 255, 255, 0.2); backdrop-filter: blur(10px); } .btn-secondary:hover { background: rgba(255, 255, 255, 0.15); border-color: var(--primary-pink); } .btn-store { background: #000000; color: white; border: 1px solid #333333; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); } .btn-store:hover { background: #1a1a1a; box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5); } .hero-stats { display: flex; gap: 2.5rem; margin-top: 2rem; } .stat-item { text-align: center; } .stat-number { font-size: 2rem; font-weight: 800; background: linear-gradient( 135deg, var(--primary-pink), var(--primary-yellow) ); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .stat-label { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.3rem; } .hero-mockup { position: relative; animation: float 6s ease-in-out infinite; } .phone-mockup { width: 100%; max-width: 380px; margin: 0 auto; background: linear-gradient(135deg, #2a1444, #1a0a2e); border-radius: 50px; padding: 18px; box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(242, 26, 99, 0.3); border: 3px solid rgba(242, 26, 99, 0.4); position: relative; } .phone-mockup::before { content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 120px; height: 25px; background: #000; border-radius: 0 0 20px 20px; z-index: 10; } .phone-screen { background: var(--bg-dark); border-radius: 40px; overflow: hidden; position: relative; } .phone-screen img { width: 100%; height: auto; display: block; } @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-25px); } } .problem-solution { padding: 120px 0; background: var(--bg-lighter); position: relative; } .section-header { text-align: center; margin-bottom: 5rem; } .section-header h2 { font-size: 3rem; margin-bottom: 1.2rem; font-weight: 800; } .section-header p { font-size: 1.25rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; } .problem-solution .container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: stretch; } .problem-box, .solution-box { padding: 3.5rem; border-radius: 30px; backdrop-filter: blur(10px); transition: transform 0.3s; display: flex; flex-direction: column; } .problem-box:hover, .solution-box:hover { transform: translateY(-5px); } .problem-box { background: rgba(239, 68, 68, 0.08); border: 2px solid rgba(239, 68, 68, 0.3); } .solution-box { background: rgba(16, 185, 129, 0.08); border: 2px solid rgba(16, 185, 129, 0.3); } .problem-box h3, .solution-box h3 { font-size: 2.2rem; margin-bottom: 2rem; font-weight: 800; } .problem-box h3 { color: #fca5a5; } .solution-box h3 { color: var(--success); } .problem-list, .solution-list { list-style: none; } .problem-list li, .solution-list li { padding: 1.2rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); font-size: 1.1rem; } .problem-list li:last-child, .solution-list li:last-child { border-bottom: none; } .problem-list li:before { content: "✗ "; color: var(--danger); font-weight: bold; margin-right: 12px; font-size: 1.3rem; } .solution-list li:before { content: "✓ "; color: var(--success); font-weight: bold; margin-right: 12px; font-size: 1.3rem; } .features { padding: 120px 0; background: var(--bg-dark); } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; } .feature-card { background: var(--bg-lighter); padding: 3rem; border-radius: 25px; border: 2px solid transparent; transition: all 0.4s; position: relative; overflow: hidden; } .feature-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient( 90deg, var(--primary-pink), var(--primary-yellow) ); transform: scaleX(0); transition: transform 0.4s; } .feature-card:hover::before { transform: scaleX(1); } .feature-card:hover { border-color: var(--primary-pink); transform: translateY(-8px); box-shadow: 0 25px 50px rgba(242, 26, 99, 0.3); } .feature-icon { width: 70px; height: 70px; background: linear-gradient( 135deg, var(--primary-pink), var(--primary-yellow) ); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 1.5rem; } .feature-card h3 { font-size: 1.6rem; margin-bottom: 1rem; font-weight: 700; } .feature-card p { color: var(--text-muted); line-height: 1.8; font-size: 1.05rem; } .screenshots { padding: 120px 0; background: var(--bg-lighter); } .screenshots-carousel { display: flex; gap: 2rem; overflow-x: auto; padding: 2rem 0; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; } .screenshots-carousel::-webkit-scrollbar { height: 0px; } .screenshots-carousel::-webkit-scrollbar-track { background: transparent; } .screenshots-carousel::-webkit-scrollbar-thumb { background: transparent; } /* Firefox scrollbar hide */ .screenshots-carousel { scrollbar-width: none; } .screenshot-item { flex: 0 0 260px; background: var(--bg-dark); border-radius: 30px; overflow: hidden; border: 2px solid rgba(242, 26, 99, 0.3); transition: transform 0.3s; } .screenshot-item:hover { transform: scale(1.05); border-color: var(--primary-pink); } .screenshot-item img { width: 100%; height: auto; display: block; } .why-choose { padding: 120px 0; background: var(--bg-dark); } .benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; margin-top: 4rem; } .benefit-item { display: flex; gap: 1.5rem; padding: 2.5rem; background: var(--bg-lighter); border-radius: 20px; border: 2px solid transparent; transition: all 0.3s; } .benefit-item:hover { border-color: var(--primary-pink); transform: translateX(10px); } .benefit-icon { font-size: 2.5rem; flex-shrink: 0; } .benefit-content h4 { font-size: 1.4rem; margin-bottom: 0.8rem; font-weight: 700; } .benefit-content p { color: var(--text-muted); line-height: 1.7; } .case-study { background: linear-gradient( 135deg, rgba(242, 26, 99, 0.1), rgba(253, 191, 35, 0.1) ); border: 2px solid var(--primary-pink); padding: 3rem; border-radius: 25px; margin-top: 4rem; text-align: center; } .case-study h3 { font-size: 2rem; margin-bottom: 1rem; } .case-study .profit { font-size: 4rem; font-weight: 900; background: linear-gradient( 135deg, var(--primary-pink), var(--primary-yellow) ); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin: 1rem 0; } .testimonials { padding: 120px 0; background: var(--bg-lighter); } .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2.5rem; } .testimonial-card { background: var(--bg-dark); padding: 2.5rem; border-radius: 25px; border: 2px solid rgba(242, 26, 99, 0.2); transition: all 0.3s; } .testimonial-card:hover { border-color: var(--primary-pink); transform: translateY(-5px); } .testimonial-header { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: center; } .testimonial-avatar { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient( 135deg, var(--primary-pink), var(--primary-yellow) ); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.5rem; } .testimonial-info h4 { font-size: 1.2rem; margin-bottom: 0.3rem; } .testimonial-role { color: var(--text-muted); font-size: 0.9rem; } .testimonial-text { color: var(--text-muted); line-height: 1.8; font-size: 1.05rem; } .stars { color: var(--primary-yellow); margin-bottom: 1rem; font-size: 1.2rem; } .social-proof { text-align: center; margin-top: 4rem; padding: 2.5rem; background: linear-gradient( 135deg, rgba(242, 26, 99, 0.08), rgba(253, 191, 35, 0.08) ); border-radius: 20px; } .social-proof h3 { font-size: 2.5rem; margin-bottom: 0.5rem; } .social-proof p { color: var(--text-muted); font-size: 1.2rem; } .pricing { padding: 120px 0; background: var(--bg-dark); } .pricing-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; max-width: 900px; margin: 0 auto; } .pricing-card { background: var(--bg-lighter); padding: 3rem; border-radius: 30px; border: 2px solid rgba(255, 255, 255, 0.1); transition: all 0.3s; position: relative; } .pricing-card.featured { border-color: var(--primary-pink); transform: scale(1.05); box-shadow: 0 30px 60px rgba(242, 26, 99, 0.3); } .pricing-badge { position: absolute; top: -15px; right: 30px; background: linear-gradient( 135deg, var(--primary-pink), var(--primary-yellow) ); color: white; padding: 0.5rem 1.5rem; border-radius: 20px; font-weight: 700; font-size: 0.9rem; } .pricing-card h3 { font-size: 2rem; margin-bottom: 1rem; } .pricing-price { font-size: 3.5rem; font-weight: 900; background: linear-gradient( 135deg, var(--primary-pink), var(--primary-yellow) ); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin: 1.5rem 0; } .pricing-price span { font-size: 1.2rem; color: var(--text-muted); } .pricing-features { list-style: none; margin: 2rem 0; } .pricing-features li { padding: 0.8rem 0; color: var(--text-muted); display: flex; align-items: center; gap: 0.8rem; } .pricing-features li:before { content: "✓"; color: var(--success); font-weight: bold; font-size: 1.2rem; } .pricing-card .btn { width: 100%; justify-content: center; margin-top: 1.5rem; } .faq { padding: 120px 0; background: var(--bg-lighter); } .faq-list { max-width: 800px; margin: 0 auto; } .faq-item { background: var(--bg-dark); padding: 2rem; border-radius: 20px; margin-bottom: 1.5rem; border: 2px solid transparent; cursor: pointer; transition: all 0.3s; } .faq-item:hover { border-color: var(--primary-pink); } .faq-question { font-size: 1.3rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; } .faq-answer { margin-top: 1rem; color: var(--text-muted); line-height: 1.8; display: none; } .faq-item.active .faq-answer { display: block; } .faq-toggle { font-size: 1.5rem; color: var(--primary-pink); transition: transform 0.3s; } .faq-item.active .faq-toggle { transform: rotate(45deg); } .final-cta { padding: 120px 0; background: var(--bg-dark); text-align: center; position: relative; overflow: hidden; } .final-cta::before { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 150%; height: 150%; background: radial-gradient(circle, rgba(242, 26, 99, 0.15), transparent 60%); } .final-cta .container { position: relative; } .final-cta h2 { font-size: 3.5rem; margin-bottom: 1.5rem; font-weight: 900; } .final-cta p { font-size: 1.3rem; color: var(--text-muted); margin-bottom: 3rem; } .final-cta .cta-buttons { justify-content: center; max-width: 600px; margin: 0 auto; flex-wrap: wrap; } .final-cta .cta-buttons .btn { flex: 0 1 auto; min-width: 200px; } .disclaimer { margin-top: 2rem; color: var(--text-muted); font-size: 0.95rem; } footer { background: var(--bg-lighter); padding: 4rem 0 2rem; border-top: 1px solid rgba(242, 26, 99, 0.2); } .footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; } .footer-brand h3 { font-size: 1.8rem; margin-bottom: 1rem; background: linear-gradient( 135deg, var(--primary-pink), var(--primary-yellow) ); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .footer-brand p { color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; } .social-links { display: flex; gap: 1rem; } .social-links a { width: 45px; height: 45px; background: rgba(242, 26, 99, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-pink); transition: all 0.3s; text-decoration: none; } .social-links a:hover { background: linear-gradient( 135deg, var(--primary-pink), var(--primary-yellow) ); color: white; transform: translateY(-3px); } .footer-links h4 { margin-bottom: 1.5rem; font-size: 1.2rem; } .footer-links ul { list-style: none; } .footer-links a { color: var(--text-muted); text-decoration: none; display: block; padding: 0.5rem 0; transition: color 0.3s; } .footer-links a:hover { color: var(--primary-pink); } .footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); color: var(--text-muted); } @media (max-width: 1200px) { .container { padding: 0 30px; } .wide-container { padding: 0 30px; } } @media (max-width: 968px) { .hero .container, .problem-solution .container { grid-template-columns: 1fr; gap: 2rem; } .hero-content h1 { font-size: 2.5rem; } .hero-content .subheadline { font-size: 1.1rem; } .phone-mockup { max-width: 280px; } .nav-links { display: none; } .benefits-grid { grid-template-columns: 1fr; } .pricing-cards { grid-template-columns: 1fr; } .pricing-card.featured { transform: scale(1); } .footer-content { grid-template-columns: 1fr; } .final-cta h2 { font-size: 2.5rem; } .section-header h2 { font-size: 2.5rem; } .problem-box, .solution-box { padding: 2.5rem; } } @media (max-width: 768px) { nav { padding: 0.8rem 0; } nav .container { padding: 0 15px; } .logo-text { font-size: 1.3rem; } .hero { padding: 120px 0 80px; } .hero .container { grid-template-columns: 1fr; gap: 1.5rem; } .hero-content h1 { font-size: 2rem; } .hero-content .subheadline { font-size: 1rem; } .hero-mockup { display: flex; justify-content: center; } .phone-mockup { max-width: 250px; } .hero-stats { gap: 1.5rem; justify-content: space-around; } .stat-item { padding: 0 0.5rem; } .stat-number { font-size: 1.5rem; } .cta-buttons { flex-direction: column; gap: 1rem; } .cta-buttons .btn { flex: 1; width: 100%; } .btn { padding: 1rem 1.5rem; font-size: 0.95rem; } .section-header { margin-bottom: 3rem; } .section-header h2 { font-size: 2rem; } .section-header p { font-size: 1.1rem; } .features-grid { grid-template-columns: 1fr; gap: 2rem; } .problem-box, .solution-box { padding: 2rem; } .problem-box h3, .solution-box h3 { font-size: 1.8rem; } .problem-list li, .solution-list li { font-size: 1rem; padding: 1rem 0; } .benefits-grid { grid-template-columns: 1fr; gap: 2rem; } .benefit-item { padding: 2rem; } .benefit-content h4 { font-size: 1.2rem; } .case-study { padding: 2rem; } .case-study h3 { font-size: 1.5rem; } .case-study .profit { font-size: 2.5rem; } .testimonials-grid { grid-template-columns: 1fr; gap: 2rem; } .testimonial-card { padding: 2rem; } .final-cta h2 { font-size: 2rem; } .final-cta p { font-size: 1.1rem; } .final-cta .cta-buttons { max-width: 500px; } .final-cta .cta-buttons .btn { min-width: 180px; } .footer-content { gap: 2rem; } .social-links { gap: 0.8rem; } .social-links a { width: 40px; height: 40px; } } @media (max-width: 640px) { .container, .wide-container { padding: 0 15px; } nav { padding: 0.6rem 0; } .logo-text { font-size: 1.1rem; } .hero { padding: 100px 0 60px; } .hero-content h1 { font-size: 1.6rem; line-height: 1.2; } .hero-content .subheadline { font-size: 0.95rem; margin-bottom: 1.5rem; } .phone-mockup { max-width: 180px; padding: 12px; } .phone-mockup::before { width: 80px; height: 20px; } .hero-stats { gap: 1rem; flex-wrap: wrap; } .stat-item { flex: 0 1 48%; } .stat-number { font-size: 1.3rem; } .stat-label { font-size: 0.8rem; } .cta-buttons { flex-direction: column; gap: 0.8rem; margin-bottom: 1rem; } .btn { padding: 0.9rem 1.2rem; font-size: 0.9rem; gap: 0.5rem; } .btn svg { width: 16px; height: 16px; } .screenshots-carousel { gap: 1rem; padding: 1rem 0; } .screenshot-item { flex: 0 0 250px; } .section-header { margin-bottom: 2rem; } .section-header h2 { font-size: 1.5rem; } .section-header p { font-size: 1rem; } .feature-card { padding: 2rem; } .feature-icon { width: 60px; height: 60px; font-size: 1.8rem; } .feature-card h3 { font-size: 1.4rem; } .feature-card p { font-size: 1rem; } .problem-box, .solution-box { padding: 1.5rem; } .problem-box h3, .solution-box h3 { font-size: 1.5rem; margin-bottom: 1rem; } .problem-list li, .solution-list li { font-size: 0.95rem; padding: 0.8rem 0; } .benefit-item { padding: 1.5rem; gap: 1rem; } .benefit-icon { font-size: 2rem; } .benefit-content h4 { font-size: 1.1rem; } .benefit-content p { font-size: 0.95rem; } .case-study { padding: 1.5rem; margin-top: 2rem; } .case-study h3 { font-size: 1.3rem; } .case-study .profit { font-size: 2rem; } .testimonial-card { padding: 1.5rem; } .testimonial-header { gap: 0.8rem; } .testimonial-avatar { width: 50px; height: 50px; font-size: 1.2rem; } .testimonial-info h4 { font-size: 1rem; } .testimonial-role { font-size: 0.85rem; } .testimonial-text { font-size: 1rem; } .social-proof h3 { font-size: 1.8rem; } .social-proof p { font-size: 1rem; } .pricing-card { padding: 2rem; } .pricing-card h3 { font-size: 1.5rem; } .pricing-price { font-size: 2.5rem; } .pricing-price span { font-size: 1rem; } .faq-item { padding: 1.5rem; } .faq-question { font-size: 1.1rem; } .faq-answer { font-size: 0.95rem; } .final-cta { padding: 80px 0; } .final-cta h2 { font-size: 1.5rem; } .final-cta p { font-size: 1rem; } .final-cta .cta-buttons { max-width: 100%; flex-direction: column; gap: 1rem; } .final-cta .cta-buttons .btn { min-width: 100%; width: 100%; } .disclaimer { font-size: 0.9rem; } footer { padding: 2.5rem 0 1.5rem; } .footer-brand h3 { font-size: 1.5rem; } .footer-brand p { font-size: 0.95rem; } .footer-links h4 { font-size: 1rem; } .footer-links a { font-size: 0.95rem; } .social-links { gap: 0.6rem; } .social-links a { width: 38px; height: 38px; font-size: 1.2rem; } } @media (max-width: 480px) { .container, .wide-container { padding: 0 12px; } .hero { padding: 80px 0 50px; } .hero-content h1 { font-size: 1.4rem; } .hero-content .subheadline { font-size: 0.9rem; } .hero-stats { gap: 0.5rem; } .stat-item { flex: 0 1 45%; } .stat-number { font-size: 1.1rem; } .phone-mockup { max-width: 150px; } .btn { padding: 0.8rem 1rem; font-size: 0.85rem; } .section-header h2 { font-size: 1.3rem; } .feature-icon { width: 50px; height: 50px; font-size: 1.5rem; margin-bottom: 1rem; } .feature-card h3 { font-size: 1.2rem; } .social-links a { width: 35px; height: 35px; font-size: 1rem; } }