:root {
    --primary: #FF9A76; /* Soft warm orange */
    --primary-dark: #FF7A50;
    --secondary: #67C5C8; /* Soft cyan */
    --background: #FFF9F5; /* Very soft warm white */
    --text: #2D3748;
    --text-light: #4A5568;
    --white: #FFFFFF;
    --red: #FC8181;
    --green: #68D391;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Glassmorphism utility */
.glassmorphism {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    border-radius: 20px;
}

/* Timer Banner */
.timer-banner {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: var(--white);
    text-align: center;
    padding: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Hero Section */
.hero {
    text-align: center;
    padding-top: 1rem;
    background: radial-gradient(circle at top, #FFF0E6 0%, var(--background) 100%);
}

.headline {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.highlight {
    color: var(--primary);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 154, 118, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.image-wrapper {
    margin: 2rem auto;
    padding: 10px;
    max-width: 100%;
    overflow: hidden;
}

.hero-image, .mockup-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

.subheadline {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    margin: 1.5rem 0 2rem;
    text-align: left;
    display: inline-block;
}

.benefits-list li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(255, 122, 80, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 122, 80, 0.4);
}

.cta-button.large {
    font-size: 1.4rem;
    width: 100%;
    text-align: center;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.floating-animation {
    animation: float 4s ease-in-out infinite;
}

/* Problem Solution Section */
.problem-solution {
    background-color: var(--white);
    text-align: center;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card {
    padding: 1.5rem;
    border-radius: 16px;
    text-align: left;
}

.bad-card {
    background-color: #FFF5F5;
    border: 1px solid #FED7D7;
}

.good-card {
    background-color: #F0FFF4;
    border: 1px solid #C6F6D5;
}

.card-header {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bad-card .card-header { color: #E53E3E; }
.good-card .card-header { color: #38A169; }

.card ul {
    list-style: none;
}

.card li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

/* Features */
.features {
    background: linear-gradient(to bottom, var(--background), #FFF0E6);
}

.features-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.features-list {
    display: flex;
    align-items: center;
}

.features-list ul {
    list-style: none;
}

.features-list li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.features-list .check {
    color: var(--secondary);
    font-size: 1.5rem;
}

/* Bonus */
.bonus {
    padding: 2rem 0;
    text-align: center;
}

.bonus .section-title {
    margin-bottom: 2rem;
}

.bonus-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bonus-card {
    text-align: left;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 240, 230, 0.9));
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: var(--primary);
}

.bonus-header {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--red);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.bonus-title {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.bonus-text {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.bonus-value {
    background-color: #FFF5F5;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.95rem;
    border: 1px dashed var(--red);
}

.strike {
    text-decoration: line-through;
    color: var(--text-light);
}

.bonus-total-value {
    display: inline-block;
    padding: 1.5rem 2.5rem;
    background: #FFF9F5;
    border: 2px solid var(--secondary);
    font-size: 1.2rem;
    border-radius: 16px;
}

.bonus-total-value .highlight-text {
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 1.3rem;
    margin-top: 0.5rem;
}

/* Offer */
.offer {
    background-color: var(--white);
    text-align: center;
}

.offer .section-title {
    font-size: 1.6rem;
}

.quote {
    font-style: italic;
    color: var(--text-light);
    font-size: 1.2rem;
    margin: 2rem 0;
    padding: 0 1rem;
    border-left: 4px solid var(--secondary);
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-item {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border-radius: 12px;
    background: #F7FAFC;
    min-width: 120px;
}

.price-item.new-way {
    background: #E6FFFA;
    border: 1px solid var(--secondary);
}

.price-item .label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.price-item .price {
    font-size: 1.4rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.old-way .price {
    color: #A0AEC0;
    text-decoration: line-through;
}

.new-way .price {
    color: var(--secondary);
}

.vs {
    font-weight: 700;
    color: #CBD5E0;
}

.final-offer {
    padding: 2.5rem 1.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(to bottom right, #ffffff, #fff5f0);
}

.value-stack-title {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-stack-list {
    list-style: none;
    text-align: left;
    margin: 0 auto 1.5rem;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px dashed var(--secondary);
}

.value-stack-list li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text);
}

.value-stack-list li:last-child {
    margin-bottom: 0;
}

.strike-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 1.2rem;
}

.sale-price {
    color: var(--primary-dark);
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    margin: 0.5rem 0;
}

.payment-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonials {
    background-color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-image-card {
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background-color: var(--white);
}

.review-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Security Badges */
.security-badges {
    margin-top: 1.5rem;
    border-top: 1px dashed #CBD5E0;
    padding-top: 1rem;
}

.secure-text {
    font-size: 0.9rem;
    color: #38A169;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-icons {
    font-size: 1.5rem;
    letter-spacing: 5px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none; /* Hidden on desktop */
    text-align: center;
}

.sticky-cta .cta-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
    border-radius: 12px;
}

/* Add padding to body so sticky CTA doesn't cover footer on mobile */
@media (max-width: 767px) {
    .sticky-cta {
        display: block;
    }
    body {
        padding-bottom: 70px; /* Space for the sticky button */
    }
}

/* Guarantee */
.guarantee {
    padding: 2rem 0;
    text-align: center;
}

.guarantee-box {
    padding: 2.5rem;
    background: #FFF;
    border: 3px solid #68D391; /* Green border for safety/trust */
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(104, 211, 145, 0.2);
}

.guarantee-icon {
    font-size: 4rem;
    line-height: 1;
    margin-top: -3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: #FFF;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.guarantee-title {
    color: #2F855A;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.guarantee-text {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* FAQ */
.faq {
    background-color: #F7FAFC;
    padding: 3rem 0;
    text-align: center;
}

.faq .section-title {
    margin-bottom: 2rem;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.faq-answer {
    color: var(--text-light);
    font-size: 1rem;
}

footer {
    text-align: center;
    padding: 1rem 0;
    background: var(--background);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Media Queries for larger screens (Tablet/Desktop) */
@media (min-width: 768px) {
    .headline { font-size: 3rem; }
    .comparison-grid { flex-direction: row; }
    .card { flex: 1; }
    .features-content { flex-direction: row; align-items: center; }
    .image-wrapper { flex: 1; }
    .features-list { flex: 1; }
    .price-comparison { gap: 2rem; }
    .price-item { min-width: 150px; }
    .bonus-grid { flex-direction: row; }
    .bonus-card { flex: 1; }
    .testimonial-grid { flex-direction: row; }
    .testimonial-image-card { flex: 1; }
}
