 {} *{} {} #IE-warning { display: none; position: fixed; width: 100%; height: 100%; z-index: 9999; background: white; } .IE-warning-message { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; } :root { --green: #25D366; --green-dark: #128C7E; --green-bright: #3ddb76; --lime: #ADFF2F; --black: #0a0a0a; --dark: #111714; --card: #161c18; --border: #1f2b22; --text: #d4e8d8; --muted: #6b8f72; --white: #f0faf2; } * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; } body { font-family: 'DM Sans', sans-serif; background: var(--black); color: var(--text); overflow-x: hidden; } h1, h2, h3, h4 { font-family: 'Syne', sans-serif; } /* ── NOISE TEXTURE OVERLAY ── */ body::before { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"); pointer-events: none; z-index: 0; opacity: 0.4; } /* ── NAV ── */ nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1rem 2rem; background: rgba(10,10,10,0.85); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); } .nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; } .nav-logo-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--green); display: grid; place-items: center; font-size: 1.1rem; } .nav-logo-text { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--white); } .nav-cta { background: var(--green); color: #000; padding: 0.55rem 1.4rem; border-radius: 100px; text-decoration: none; font-weight: 600; font-size: 0.88rem; transition: all 0.2s; } .nav-cta:hover { background: var(--lime); transform: translateY(-1px); } /* ── HERO ── */ .hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 7rem 1.5rem 4rem; overflow: hidden; } .hero-glow { position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; background: radial-gradient(ellipse, rgba(37,211,102,0.18) 0%, transparent 70%); pointer-events: none; } .hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.3); padding: 0.4rem 1rem; border-radius: 100px; font-size: 0.8rem; font-weight: 500; color: var(--green); margin-bottom: 1.8rem; animation: fadeDown 0.6s ease both; } .pulse-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: pulse 1.5s infinite; } @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.4); } } .hero h1 { font-size: clamp(2.6rem, 7vw, 5.5rem); font-weight: 800; line-height: 1.05; color: var(--white); max-width: 820px; animation: fadeUp 0.7s 0.1s ease both; } .hero h1 span { background: linear-gradient(135deg, var(--green) 0%, var(--lime) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .hero-sub { margin-top: 1.4rem; font-size: clamp(1rem, 2.2vw, 1.2rem); color: var(--muted); max-width: 560px; line-height: 1.7; animation: fadeUp 0.7s 0.2s ease both; } .hero-ctas { margin-top: 2.4rem; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; animation: fadeUp 0.7s 0.3s ease both; } .btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--green); color: #000; padding: 0.85rem 2rem; border-radius: 100px; text-decoration: none; font-weight: 700; font-size: 1rem; transition: all 0.25s; box-shadow: 0 0 40px rgba(37,211,102,0.35); } .btn-primary:hover { background: var(--lime); transform: translateY(-2px); box-shadow: 0 0 60px rgba(37,211,102,0.5); } .btn-ghost { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid var(--border); color: var(--text); padding: 0.85rem 2rem; border-radius: 100px; text-decoration: none; font-weight: 500; font-size: 1rem; transition: all 0.25s; } .btn-ghost:hover { border-color: var(--green); color: var(--green); } .hero-stats { margin-top: 4rem; display: flex; gap: 2.5rem; flex-wrap: wrap; justify-content: center; animation: fadeUp 0.7s 0.4s ease both; } .stat { text-align: center; } .stat-num { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--white); } .stat-num span { color: var(--green); } .stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 0.2rem; } /* ── SCROLL TICKER ── */ .ticker-wrap { overflow: hidden; background: var(--green); padding: 0.7rem 0; position: relative; } .ticker { display: flex; gap: 3rem; width: max-content; animation: ticker 25s linear infinite; } .ticker-item { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.85rem; color: #000; white-space: nowrap; display: flex; align-items: center; gap: 1rem; } .ticker-item::after { content: '✦'; } @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } } /* ── SECTION ── */ section { position: relative; z-index: 1; } .container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; } .section-label { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 0.8rem; } .section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--white); line-height: 1.15; max-width: 600px; } .section-title span { color: var(--green); } /* ── WHY WA > EMAIL ── */ .compare { padding: 6rem 0; } .compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; } @media (max-width: 640px) { .compare-grid { grid-template-columns: 1fr; } } .compare-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; } .compare-card.wa { border-color: rgba(37,211,102,0.4); background: rgba(37,211,102,0.05); } .compare-card-head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.5rem; } .compare-icon { font-size: 1.4rem; } .compare-card-head h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); } .stat-row { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 0; border-bottom: 1px solid var(--border); } .stat-row:last-child { border-bottom: none; } .stat-row-label { font-size: 0.88rem; color: var(--muted); } .stat-row-val { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem; } .good { color: var(--green-bright); } .bad { color: #f97316; } .compare-verdict { margin-top: 2rem; padding: 1.5rem; background: rgba(37,211,102,0.08); border: 1px solid rgba(37,211,102,0.25); border-radius: 12px; text-align: center; } .compare-verdict p { font-size: 0.95rem; color: var(--text); line-height: 1.6; } .compare-verdict strong { color: var(--green); } /* ── FEATURES ── */ .features { padding: 6rem 0; } .features-head { text-align: center; } .features-head .section-title { max-width: 100%; } .features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.2rem; margin-top: 3rem; } .feature-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 1.8rem; transition: all 0.3s; cursor: default; } .feature-card:hover { border-color: rgba(37,211,102,0.4); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); } .feature-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(37,211,102,0.12); display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 1rem; } .feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; } .feature-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; } /* ── PROBLEM/SOLUTION ── */ .problem { padding: 5rem 0; text-align: center; background: var(--dark); } .pain-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; margin-top: 3rem; } .pain-card { background: rgba(249,115,22,0.06); border: 1px solid rgba(249,115,22,0.2); border-radius: 12px; padding: 1.4rem; } .pain-card .emoji { font-size: 1.8rem; margin-bottom: 0.7rem; } .pain-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; } .arrow-down { margin: 2rem auto; font-size: 2rem; text-align: center; color: var(--green); animation: bob 1.5s ease-in-out infinite; } @keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } } /* ── SOCIAL PROOF ── */ .proof { padding: 6rem 0; } .testimonials { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.2rem; margin-top: 3rem; } .testi-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 1.8rem; } .testi-stars { color: var(--green); font-size: 0.85rem; margin-bottom: 0.8rem; } .testi-body { font-size: 0.9rem; color: var(--text); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; } .testi-author { display: flex; align-items: center; gap: 0.7rem; } .testi-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--green-dark), var(--green)); display: grid; place-items: center; font-weight: 700; font-size: 0.85rem; color: #000; } .testi-name { font-weight: 600; font-size: 0.88rem; color: var(--white); } .testi-role { font-size: 0.78rem; color: var(--muted); } /* ── FOR WHO ── */ .forwho { padding: 5rem 0; background: var(--dark); } .who-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; margin-top: 3rem; } .who-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 1.4rem; text-align: center; transition: all 0.2s; } .who-card:hover { border-color: var(--green); } .who-icon { font-size: 2rem; margin-bottom: 0.6rem; } .who-card p { font-size: 0.85rem; color: var(--text); font-weight: 500; } /* ── HOW IT WORKS ── */ .how { padding: 6rem 0; } .steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3rem; position: relative; } .step { text-align: center; } .step-num { width: 56px; height: 56px; border-radius: 50%; background: rgba(37,211,102,0.1); border: 2px solid var(--green); display: grid; place-items: center; margin: 0 auto 1rem; font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--green); } .step h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; } .step p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; } /* ── PRICING TEASER ── */ .pricing { padding: 6rem 0; text-align: center; background: var(--dark); } .price-badge { display: inline-block; background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.3); padding: 1rem 2rem; border-radius: 100px; font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--green); margin: 1.5rem 0; } .pricing p.sub { font-size: 0.95rem; color: var(--muted); max-width: 450px; margin: 0 auto 2rem; line-height: 1.7; } /* ── FAQ ── */ .faq { padding: 6rem 0; } .faq-list { max-width: 700px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 1rem; } .faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; } .faq-q { width: 100%; background: none; border: none; padding: 1.2rem 1.5rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--white); transition: color 0.2s; } .faq-q:hover { color: var(--green); } .faq-q .chevron { font-size: 0.9rem; transition: transform 0.3s; color: var(--muted); } .faq-item.open .chevron { transform: rotate(180deg); } .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s; font-size: 0.88rem; color: var(--muted); line-height: 1.7; padding: 0 1.5rem; } .faq-item.open .faq-a { max-height: 200px; padding: 0 1.5rem 1.2rem; } /* ── FINAL CTA ── */ .final-cta { padding: 7rem 1.5rem; text-align: center; background: linear-gradient(180deg, transparent, rgba(37,211,102,0.06) 50%, transparent); } .final-cta h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: var(--white); max-width: 700px; margin: 0 auto; } .final-cta h2 span { color: var(--green); } .final-cta p { margin: 1.2rem auto 2.5rem; font-size: 1rem; color: var(--muted); max-width: 480px; line-height: 1.7; } /* ── FOOTER ── */ footer { border-top: 1px solid var(--border); padding: 2rem 1.5rem; text-align: center; font-size: 0.82rem; color: var(--muted); } footer a { color: var(--green); text-decoration: none; } /* ── ANIMATIONS ── */ @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } } .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; } .reveal.visible { opacity: 1; transform: translateY(0); } /* ── WA FLOAT BUTTON ── */ .wa-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200; width: 56px; height: 56px; border-radius: 50%; background: var(--green); display: grid; place-items: center; font-size: 1.5rem; box-shadow: 0 8px 32px rgba(37,211,102,0.45); text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; animation: waBounce 3s ease-in-out infinite; } .wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 48px rgba(37,211,102,0.6); } @keyframes waBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } } .who-card-featured { border-color: rgba(37,211,102,0.5) !important; background: rgba(37,211,102,0.07) !important; position: relative; } .who-tag { display: inline-block; margin-top: 0.5rem; background: var(--green); color: #000; font-size: 0.65rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 100px; letter-spacing: 0.05em; } .mlm-box { margin-top: 2rem; background: linear-gradient(135deg, rgba(37,211,102,0.07), rgba(37,211,102,0.02)); border: 1px solid rgba(37,211,102,0.35); border-radius: 20px; padding: 2.5rem; } .mlm-box-left { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); } .mlm-icon-big { font-size: 2.8rem; } .mlm-box-left h3 { font-size: 1.25rem; font-weight: 800; color: var(--white); margin-bottom: 0.3rem; } .mlm-tagline { font-size: 0.88rem; color: var(--green); font-weight: 500; } .mlm-points { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; } @media (max-width: 640px) { .mlm-points { grid-template-columns: 1fr; } } .mlm-point { display: flex; gap: 0.8rem; align-items: flex-start; } .mlm-check { color: var(--green); font-size: 1rem; margin-top: 0.15rem; flex-shrink: 0; } .mlm-point strong { display: block; font-size: 0.92rem; color: var(--white); margin-bottom: 0.3rem; } .mlm-point p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; } :root { --green: #25D366; --green-dark: #128C7E; --green-bright: #3ddb76; --lime: #ADFF2F; --black: #0a0a0a; --dark: #111714; --card: #161c18; --border: #1f2b22; --text: #d4e8d8; --muted: #6b8f72; --white: #f0faf2; } * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; } body { font-family: 'DM Sans', sans-serif; background: var(--black); color: var(--text); overflow-x: hidden; } h1, h2, h3, h4 { font-family: 'Syne', sans-serif; } /* ── NOISE TEXTURE OVERLAY ── */ body::before { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"); pointer-events: none; z-index: 0; opacity: 0.4; } /* ── NAV ── */ nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1rem 2rem; background: rgba(10,10,10,0.85); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); } .nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; } .nav-logo-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--green); display: grid; place-items: center; font-size: 1.1rem; } .nav-logo-text { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--white); } .nav-cta { background: var(--green); color: #000; padding: 0.55rem 1.4rem; border-radius: 100px; text-decoration: none; font-weight: 600; font-size: 0.88rem; transition: all 0.2s; } .nav-cta:hover { background: var(--lime); transform: translateY(-1px); } /* ── HERO ── */ .hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 7rem 1.5rem 4rem; overflow: hidden; } .hero-glow { position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; background: radial-gradient(ellipse, rgba(37,211,102,0.18) 0%, transparent 70%); pointer-events: none; } .hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.3); padding: 0.4rem 1rem; border-radius: 100px; font-size: 0.8rem; font-weight: 500; color: var(--green); margin-bottom: 1.8rem; animation: fadeDown 0.6s ease both; } .pulse-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: pulse 1.5s infinite; } @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.4); } } .hero h1 { font-size: clamp(2.6rem, 7vw, 5.5rem); font-weight: 800; line-height: 1.05; color: var(--white); max-width: 820px; animation: fadeUp 0.7s 0.1s ease both; } .hero h1 span { background: linear-gradient(135deg, var(--green) 0%, var(--lime) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .hero-sub { margin-top: 1.4rem; font-size: clamp(1rem, 2.2vw, 1.2rem); color: var(--muted); max-width: 560px; line-height: 1.7; animation: fadeUp 0.7s 0.2s ease both; } .hero-ctas { margin-top: 2.4rem; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; animation: fadeUp 0.7s 0.3s ease both; } .btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--green); color: #000; padding: 0.85rem 2rem; border-radius: 100px; text-decoration: none; font-weight: 700; font-size: 1rem; transition: all 0.25s; box-shadow: 0 0 40px rgba(37,211,102,0.35); } .btn-primary:hover { background: var(--lime); transform: translateY(-2px); box-shadow: 0 0 60px rgba(37,211,102,0.5); } .btn-ghost { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid var(--border); color: var(--text); padding: 0.85rem 2rem; border-radius: 100px; text-decoration: none; font-weight: 500; font-size: 1rem; transition: all 0.25s; } .btn-ghost:hover { border-color: var(--green); color: var(--green); } .hero-stats { margin-top: 4rem; display: flex; gap: 2.5rem; flex-wrap: wrap; justify-content: center; animation: fadeUp 0.7s 0.4s ease both; } .stat { text-align: center; } .stat-num { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: var(--white); } .stat-num span { color: var(--green); } .stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 0.2rem; } /* ── SCROLL TICKER ── */ .ticker-wrap { overflow: hidden; background: var(--green); padding: 0.7rem 0; position: relative; } .ticker { display: flex; gap: 3rem; width: max-content; animation: ticker 25s linear infinite; } .ticker-item { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.85rem; color: #000; white-space: nowrap; display: flex; align-items: center; gap: 1rem; } .ticker-item::after { content: '✦'; } @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } } /* ── SECTION ── */ section { position: relative; z-index: 1; } .container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; } .section-label { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 0.8rem; } .section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--white); line-height: 1.15; max-width: 600px; } .section-title span { color: var(--green); } /* ── WHY WA > EMAIL ── */ .compare { padding: 6rem 0; } .compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; } @media (max-width: 640px) { .compare-grid { grid-template-columns: 1fr; } } .compare-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; } .compare-card.wa { border-color: rgba(37,211,102,0.4); background: rgba(37,211,102,0.05); } .compare-card-head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.5rem; } .compare-icon { font-size: 1.4rem; } .compare-card-head h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); } .stat-row { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 0; border-bottom: 1px solid var(--border); } .stat-row:last-child { border-bottom: none; } .stat-row-label { font-size: 0.88rem; color: var(--muted); } .stat-row-val { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem; } .good { color: var(--green-bright); } .bad { color: #f97316; } .compare-verdict { margin-top: 2rem; padding: 1.5rem; background: rgba(37,211,102,0.08); border: 1px solid rgba(37,211,102,0.25); border-radius: 12px; text-align: center; } .compare-verdict p { font-size: 0.95rem; color: var(--text); line-height: 1.6; } .compare-verdict strong { color: var(--green); } /* ── FEATURES ── */ .features { padding: 6rem 0; } .features-head { text-align: center; } .features-head .section-title { max-width: 100%; } .features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.2rem; margin-top: 3rem; } .feature-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 1.8rem; transition: all 0.3s; cursor: default; } .feature-card:hover { border-color: rgba(37,211,102,0.4); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); } .feature-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(37,211,102,0.12); display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 1rem; } .feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; } .feature-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; } /* ── PROBLEM/SOLUTION ── */ .problem { padding: 5rem 0; text-align: center; background: var(--dark); } .pain-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; margin-top: 3rem; } .pain-card { background: rgba(249,115,22,0.06); border: 1px solid rgba(249,115,22,0.2); border-radius: 12px; padding: 1.4rem; } .pain-card .emoji { font-size: 1.8rem; margin-bottom: 0.7rem; } .pain-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; } .arrow-down { margin: 2rem auto; font-size: 2rem; text-align: center; color: var(--green); animation: bob 1.5s ease-in-out infinite; } @keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } } /* ── SOCIAL PROOF ── */ .proof { padding: 6rem 0; } .testimonials { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.2rem; margin-top: 3rem; } .testi-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 1.8rem; } .testi-stars { color: var(--green); font-size: 0.85rem; margin-bottom: 0.8rem; } .testi-body { font-size: 0.9rem; color: var(--text); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; } .testi-author { display: flex; align-items: center; gap: 0.7rem; } .testi-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--green-dark), var(--green)); display: grid; place-items: center; font-weight: 700; font-size: 0.85rem; color: #000; } .testi-name { font-weight: 600; font-size: 0.88rem; color: var(--white); } .testi-role { font-size: 0.78rem; color: var(--muted); } /* ── FOR WHO ── */ .forwho { padding: 5rem 0; background: var(--dark); } .who-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; margin-top: 3rem; } .who-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 1.4rem; text-align: center; transition: all 0.2s; } .who-card:hover { border-color: var(--green); } .who-icon { font-size: 2rem; margin-bottom: 0.6rem; } .who-card p { font-size: 0.85rem; color: var(--text); font-weight: 500; } /* ── HOW IT WORKS ── */ .how { padding: 6rem 0; } .steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3rem; position: relative; } .step { text-align: center; } .step-num { width: 56px; height: 56px; border-radius: 50%; background: rgba(37,211,102,0.1); border: 2px solid var(--green); display: grid; place-items: center; margin: 0 auto 1rem; font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--green); } .step h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; } .step p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; } /* ── PRICING TEASER ── */ .pricing { padding: 6rem 0; text-align: center; background: var(--dark); } .price-badge { display: inline-block; background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.3); padding: 1rem 2rem; border-radius: 100px; font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--green); margin: 1.5rem 0; } .pricing p.sub { font-size: 0.95rem; color: var(--muted); max-width: 450px; margin: 0 auto 2rem; line-height: 1.7; } /* ── FAQ ── */ .faq { padding: 6rem 0; } .faq-list { max-width: 700px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 1rem; } .faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; } .faq-q { width: 100%; background: none; border: none; padding: 1.2rem 1.5rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--white); transition: color 0.2s; } .faq-q:hover { color: var(--green); } .faq-q .chevron { font-size: 0.9rem; transition: transform 0.3s; color: var(--muted); } .faq-item.open .chevron { transform: rotate(180deg); } .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s; font-size: 0.88rem; color: var(--muted); line-height: 1.7; padding: 0 1.5rem; } .faq-item.open .faq-a { max-height: 200px; padding: 0 1.5rem 1.2rem; } /* ── FINAL CTA ── */ .final-cta { padding: 7rem 1.5rem; text-align: center; background: linear-gradient(180deg, transparent, rgba(37,211,102,0.06) 50%, transparent); } .final-cta h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: var(--white); max-width: 700px; margin: 0 auto; } .final-cta h2 span { color: var(--green); } .final-cta p { margin: 1.2rem auto 2.5rem; font-size: 1rem; color: var(--muted); max-width: 480px; line-height: 1.7; } /* ── FOOTER ── */ footer { border-top: 1px solid var(--border); padding: 2rem 1.5rem; text-align: center; font-size: 0.82rem; color: var(--muted); } footer a { color: var(--green); text-decoration: none; } /* ── ANIMATIONS ── */ @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } } .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; } .reveal.visible { opacity: 1; transform: translateY(0); } /* ── WA FLOAT BUTTON ── */ .wa-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200; width: 56px; height: 56px; border-radius: 50%; background: var(--green); display: grid; place-items: center; font-size: 1.5rem; box-shadow: 0 8px 32px rgba(37,211,102,0.45); text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; animation: waBounce 3s ease-in-out infinite; } .wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 48px rgba(37,211,102,0.6); } @keyframes waBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } } .who-card-featured { border-color: rgba(37,211,102,0.5) !important; background: rgba(37,211,102,0.07) !important; position: relative; } .who-tag { display: inline-block; margin-top: 0.5rem; background: var(--green); color: #000; font-size: 0.65rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 100px; letter-spacing: 0.05em; } .mlm-box { margin-top: 2rem; background: linear-gradient(135deg, rgba(37,211,102,0.07), rgba(37,211,102,0.02)); border: 1px solid rgba(37,211,102,0.35); border-radius: 20px; padding: 2.5rem; } .mlm-box-left { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); } .mlm-icon-big { font-size: 2.8rem; } .mlm-box-left h3 { font-size: 1.25rem; font-weight: 800; color: var(--white); margin-bottom: 0.3rem; } .mlm-tagline { font-size: 0.88rem; color: var(--green); font-weight: 500; } .mlm-points { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; } @media (max-width: 640px) { .mlm-points { grid-template-columns: 1fr; } } .mlm-point { display: flex; gap: 0.8rem; align-items: flex-start; } .mlm-check { color: var(--green); font-size: 1rem; margin-top: 0.15rem; flex-shrink: 0; } .mlm-point strong { display: block; font-size: 0.92rem; color: var(--white); margin-bottom: 0.3rem; } .mlm-point p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }
