/* CSS reset and variables */
:root {
    --primary: #FF7FA6; /* Soft pink */
    --primary-dark: #E05A88;
    --secondary: #FFF8F5; /* Beige/warm white */
    --text-dark: #333333;
    --text-light: #666666;
    --cta-color: #FF4757; /* Strong high contrast pink/red */
    --cta-hover: #FF6B81;
    --cta-action: #27ae60; /* Action green */
    --cta-action-hover: #219653;
    --white: #FFFFFF;
    --bg-gray: #F9F9F9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--secondary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utility classes */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-padding { padding: 80px 0; }

.title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-dark);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--cta-color);
    color: var(--white);
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(255, 71, 87, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.btn:hover {
    background-color: var(--cta-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 71, 87, 0.4);
}

.btn-action {
    background-color: var(--cta-action);
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.3);
    font-size: 1.2rem;
}

.btn-action:hover {
    background-color: var(--cta-action-hover);
    box-shadow: 0 15px 25px rgba(39, 174, 96, 0.4);
}

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

/* Fixed Mobile CTA */
.mobile-cta-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 15px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    text-align: center;
}

.mobile-cta-fixed .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    animation: none;
}

@media (max-width: 768px) {
    .mobile-cta-fixed.visible {
        display: block;
        animation: slideUp 0.3s ease-out forwards;
    }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFF8F5 0%, #FFE5EC 100%);
    padding: 100px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    object-fit: cover;
}

.hero .headline {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2b2b2b;
}

.hero .headline span {
    color: var(--cta-color);
}

.hero .subheadline {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.social-proof-small {
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
}

.stars { color: #FFD700; font-size: 1.2rem; }

/* Pain Section */
.pain-section {
    background-color: var(--white);
}

.pain-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
    flex-wrap: wrap;
}

.pain-image, .pain-box {
    flex: 1;
    min-width: 300px;
}

.pain-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    object-fit: cover;
}

.pain-box {
    background: var(--secondary);
    border-radius: 20px;
    padding: 40px;
    border-left: 6px solid var(--primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.pain-text {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444;
}

.pain-text:last-child {
    margin-bottom: 0;
    font-weight: 600;
}

/* Solution Section */
.solution-section {
    background-color: var(--bg-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left;
    transition: transform 0.3s;
    border-bottom: 4px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-bottom: 4px solid var(--primary);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--secondary);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Content Section */
.content-section {
    background-color: var(--white);
}

.check-list {
    list-style: none;
    margin-top: 30px;
}

.check-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.15rem;
    color: var(--text-dark);
}

.check-list li::before {
    content: "✓";
    color: var(--white);
    background-color: var(--cta-action);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Bonus Section */
.bonus-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 0;
    padding: 80px 0;
}

.bonus-section .title {
    color: var(--white);
}

.bonus-box {
    background: rgba(255,255,255,0.1);
    border: 2px dashed rgba(255,255,255,0.4);
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(5px);
}

/* Testimonials */
.testimonials {
    background-color: var(--secondary);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.04);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    color: rgba(255, 127, 166, 0.2);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ddd;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
}

.author-desc {
    font-size: 0.9rem;
    color: #888;
}

/* FAQ Section */
.faq-section {
    background-color: var(--secondary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    margin-top: 40px;
}

details {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: all 0.3s ease;
}

details[open] {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

summary {
    padding: 20px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none; /* Firefox requires this instead of marker initially for some overrides, but webkit-details-marker covers most */
    position: relative;
    color: var(--text-dark);
    outline: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-dark);
}

details[open] summary::after {
    content: '−';
}

.faq-content {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Guarantee Section */
.guarantee {
    background-color: var(--white);
    text-align: center;
}

.guarantee-box {
    display: inline-block;
    border: 2px solid #EEE;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.seal {
    width: 90px;
    margin-bottom: 25px;
}

/* Offer Section */
.offer-section {
    background-color: var(--bg-gray);
    text-align: center;
    padding-bottom: 120px; /* space for mobile cta */
}

.price-box {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    margin: 40px auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-top: 8px solid var(--cta-action);
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.3rem;
    margin-bottom: -10px;
}

.new-price {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 15px 0;
    line-height: 1;
}

.new-price span {
    font-size: 1.8rem;
    vertical-align: super;
    font-weight: 700;
}

.timer-box {
    background: #FFF4F4;
    color: var(--cta-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 30px;
    display: inline-block;
    border: 1px solid rgba(255, 71, 87, 0.2);
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 71, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero .headline { font-size: 2.2rem; }
    .hero { padding-top: 50px; min-height: auto; text-align: center; }
    .hero-content { flex-direction: column; }
    .social-proof-small { justify-content: center; }
    .title { font-size: 1.8rem; }
    .section-padding { padding: 60px 0; }
    .btn { width: 100%; padding: 18px 20px; }
    .pain-box { padding: 30px 20px; }
    .hero-image { order: -1; margin-bottom: 20px; }
}
