/* 90-Day Transformation - Bold & Energetic Theme */
:root {
    --primary: #ff4757;
    --secondary: #ffa502;
    --dark: #2f3542;
    --light: #f1f2f6;
    --success: #05c46b;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Results Ticker */
.results-ticker {
    background: var(--primary);
    color: var(--white);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 30s linear infinite;
}

.ticker-content span {
    padding: 0 50px;
    font-weight: 600;
}

@keyframes ticker {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/energy-pattern.svg') repeat;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.badge-urgent {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 30px;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 71, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
}

.hero-title {
    margin-bottom: 40px;
}

.small-text {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    opacity: 0.9;
}

.big-text {
    display: block;
    font-size: 7rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -3px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 20px 0;
    text-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.transform-text {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Guarantee Badges */
.guarantee-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
}

.badge {
    text-align: center;
}

.badge strong {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary);
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.badge span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Opt-in Form */
.optin-form {
    max-width: 600px;
    margin: 0 auto 30px;
}

.optin-form input {
    width: 100%;
    padding: 20px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button {
    width: 100%;
    padding: 22px 40px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 71, 87, 0.4);
}

.button-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.cta-button:hover .button-arrow {
    transform: translateX(5px);
}

/* Form Features */
.form-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.form-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: var(--secondary);
}

/* Transformation Preview */
.transformation-preview {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.transformation-preview img {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: rotate(-5deg);
}

.transformation-preview img:nth-child(2) {
    transform: rotate(0deg) translateY(-20px);
}

.transformation-preview img:nth-child(3) {
    transform: rotate(5deg);
}

/* Stats Section */
.stats-section {
    padding: 120px 0 80px;
    background: var(--light);
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 600;
    text-transform: uppercase;
}

/* Proof Wall */
.proof-wall {
    padding: 80px 0;
    background: var(--white);
}

.proof-wall h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 60px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.testimonial-card.featured {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 71, 87, 0.2);
}

.testimonial-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.verified {
    display: inline-block;
    background: var(--success);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: var(--light);
    text-align: center;
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 30px;
}

.media-logos img {
    height: 40px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.media-logos img:hover {
    opacity: 1;
}

.trust-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: #666;
}

/* Final Push */
.final-push {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark), #000);
}

.urgency-box {
    background: var(--white);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.urgency-box h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

#page-timer {
    font-weight: 900;
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 5px;
}

.bonus-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.bonus-item {
    background: var(--light);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.bonus-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    text-decoration: line-through;
    opacity: 0.7;
}

.bonus-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 10px 0;
}

.bonus-tag {
    position: absolute;
    top: 10px;
    right: -30px;
    background: var(--success);
    color: var(--white);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
}

.final-cta {
    padding: 25px 60px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.final-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 71, 87, 0.4);
}

.guarantee-seal {
    width: 150px;
    margin-top: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .big-text {
        font-size: 4rem;
    }
    
    .transform-text {
        font-size: 2rem;
    }
    
    .guarantee-badges,
    .stats-grid,
    .testimonial-wall,
    .bonus-stack {
        grid-template-columns: 1fr;
    }
    
    .transformation-preview {
        display: none;
    }
    
    .media-logos {
        flex-wrap: wrap;
    }
}