* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root { --background: 0 0% 98%;
--foreground: 222 15% 15%;
--card: 0 0% 100%;
--card-foreground: 222 15% 15%; --primary: 15 90% 55%;
--primary-foreground: 0 0% 100%;
--primary-hover: 10 85% 50%;
--primary-glow: 15 100% 60%; --secondary: 220 85% 25%;
--secondary-foreground: 0 0% 100%;
--muted: 210 20% 96%;
--muted-foreground: 215 15% 45%; --accent: 145 80% 40%;
--accent-foreground: 0 0% 100%;
--destructive: 0 84% 60%;
--destructive-foreground: 0 0% 100%;
--border: 214 20% 91%;
--input: 214 20% 91%;
--ring: 15 90% 55%;
--radius: 0.75rem; --gradient-hero: linear-gradient(135deg, hsl(15 90% 55%), hsl(355 85% 50%));
--gradient-cta: linear-gradient(135deg, hsl(15 100% 60%), hsl(10 85% 50%));
--gradient-success: linear-gradient(135deg, hsl(145 80% 40%), hsl(165 70% 35%));
--gradient-dark: linear-gradient(180deg, hsl(220 85% 20%), hsl(220 85% 30%));
--gradient-light: linear-gradient(180deg, hsl(0 0% 100%), hsl(0 0% 98%)); --shadow-sm: 0 2px 8px -2px hsl(0 0% 0% / 0.1);
--shadow-md: 0 8px 24px -8px hsl(0 0% 0% / 0.15);
--shadow-lg: 0 20px 40px -12px hsl(0 0% 0% / 0.2);
--shadow-glow: 0 0 40px hsl(15 90% 55% / 0.3);
--shadow-cta: 0 10px 30px -10px hsl(15 90% 55% / 0.4); --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
--transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
line-height: 1.5;
color: hsl(var(--foreground));
background-color: hsl(var(--background));
scroll-behavior: smooth;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}
.hero-section {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.hero-bg {
position: absolute;
inset: 0;
z-index: 0;
background-size: cover;
background-position: center;
filter: brightness(0.4);
}
.hero-content {
position: relative;
z-index: 10;
text-align: center;
padding: 5rem 1rem;
}
h1 {
font-size: clamp(2.5rem, 6vw, 4.5rem);
font-weight: bold;
color: white;
margin-bottom: 1.5rem;
line-height: 1.1;
}
.hero-subtitle {
font-size: clamp(1.25rem, 3vw, 1.5rem);
color: rgba(255, 255, 255, 0.9);
margin-bottom: 2rem;
max-width: 64rem;
margin-left: auto;
margin-right: auto;
}
.hero-box {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: var(--radius);
padding: 2rem;
max-width: 48rem;
margin: 0 auto 2rem;
}
.cta-button {
background: var(--gradient-cta);
color: hsl(var(--primary-foreground));
padding: 1rem 2rem;
font-size: 1.125rem;
font-weight: bold;
border: none;
border-radius: var(--radius);
cursor: pointer;
text-decoration: none;
display: inline-block;
transition: var(--transition-smooth);
box-shadow: var(--shadow-cta);
}
.cta-button:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
filter: brightness(1.1);
}
.button-center {
display: flex;
justify-content: center;
margin: 2rem 0;
}
.section {
padding: 5rem 1rem;
}
.section-light {
background: var(--gradient-light);
}
.section-gradient {
background: var(--gradient-hero);
color: hsl(var(--primary-foreground));
}
h2 {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: bold;
margin-bottom: 1.5rem;
text-align: center;
}
.subtitle {
font-size: 1.25rem;
color: hsl(var(--muted-foreground));
text-align: center;
margin-bottom: 3rem;
}
.card {
background: hsl(var(--card));
border-radius: var(--radius);
padding: 2rem;
box-shadow: var(--shadow-md);
margin-bottom: 2rem;
}
.grid {
display: grid;
gap: 2rem;
}
.grid-2 {
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid-3 {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.grid-4 {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.problem-box {
background: hsl(var(--destructive) / 0.05);
border: 2px solid hsl(var(--destructive) / 0.2);
border-radius: var(--radius);
padding: 2rem;
}
.solution-box {
background: hsl(var(--accent) / 0.05);
border: 2px solid hsl(var(--accent) / 0.2);
border-radius: var(--radius);
padding: 2rem;
}
.list-item {
display: flex;
align-items: flex-start;
gap: 0.75rem;
margin-bottom: 1rem;
}
.icon {
flex-shrink: 0;
margin-top: 0.125rem;
}
.check-icon {
color: hsl(var(--accent));
}
.x-icon {
color: hsl(var(--destructive));
}
.testimonial-card {
background: hsl(var(--card));
border-radius: var(--radius);
padding: 1.5rem;
box-shadow: var(--shadow-md);
text-align: center;
}
.testimonial-img {
width: 80px;
height: 80px;
border-radius: 50%;
margin: 0 auto 1rem;
object-fit: cover;
}
.highlight {
color: hsl(var(--primary));
font-weight: bold;
}
.price-card {
background: hsl(var(--card));
border-radius: var(--radius);
padding: 2rem;
max-width: 600px;
margin: 0 auto;
box-shadow: var(--shadow-lg);
}
.price-header {
text-align: center;
padding-bottom: 2rem;
border-bottom: 2px solid hsl(var(--border));
margin-bottom: 2rem;
}
.old-price {
text-decoration: line-through;
opacity: 0.5;
font-size: 1.5rem;
color:#000;
}
.new-price {
font-size: 3rem;
font-weight: bold;
color: hsl(var(--accent));
}
.discount-badge {
display: inline-block;
background: hsl(var(--destructive));
color: white;
padding: 0.25rem 0.75rem;
border-radius: 9999px;
font-weight: bold;
margin-left: 1rem;
}
.feature-list {
margin-bottom: 2rem;
}
.feature-item {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 1rem;
font-size: 1.125rem;
color:#000;
}
.bonus-section {
background: var(--gradient-hero);
color: hsl(var(--primary-foreground));
border-radius: var(--radius);
padding: 2rem;
margin: 2rem 0;
}
.bonus-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 0.5rem;
padding: 1.5rem;
margin-bottom: 1.5rem;
}
.coach-section {
display: flex;
align-items: center;
gap: 2rem;
flex-wrap: wrap;
}
.coach-img {
width: 128px;
height: 128px;
border-radius: 50%;
object-fit: cover;
}
@media (max-width: 768px) {
.grid-2, .grid-3, .grid-4 {
grid-template-columns: 1fr;
}
.coach-section {
flex-direction: column;
text-align: center;
}
}
.animate-fade-in {
animation: fadeIn 1s ease-out;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}