/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary-blue: #FFC0CB;
    /* Pink */
    --primary-blue-dark: #fe6e88;
    /* User requested keyword color */
    --primary-green: #A8D8B9;
    --primary-green-dark: #27AE60;
    --background-light: #FFF5F7;
    /* Light pinkish background */
    --white: #ffffff;
    --text-main: #3f232f;
    /* User requested text color */
    --text-light: #8B5F65;
    /* Darker pinkish grey for secondary text */
    --cta-color: #fe6e88;
    /* Matching the accent */
    --cta-hover: #E3506B;
    /* Darker pink for hover */
    --shadow-soft: 0 10px 30px rgba(254, 110, 136, 0.15);
    /* Pink shadow */
    --radius-lg: 20px;
    --radius-md: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--background-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    color: var(--text-main);
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-md);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-center {
    text-align: center;
}

.highlight {
    color: var(--primary-blue-dark);
    font-weight: 700;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

/* Buttons */
/* Buttons */
@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(254, 110, 136, 0.7);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(254, 110, 136, 0);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(254, 110, 136, 0);
        transform: scale(1);
    }
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--cta-color), var(--cta-hover));
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(254, 110, 136, 0.4), 0 6px 0 #bf3850;
    /* Added 3D bottom border */
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-animation 2s infinite;
    /* Pulsing effect */
    position: relative;
    top: 0;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 110, 136, 0.5), 0 6px 0 #bf3850;
}

.btn:active {
    transform: translateY(4px);
    /* Pushed down effect */
    box-shadow: 0 2px 5px rgba(254, 110, 136, 0.5), 0 0 0 #bf3850;
    top: 4px;
    /* Move down visually */
}

.btn-small {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    animation: none;
    /* Usually don't want header button pulsing */
    box-shadow: 0 4px 10px rgba(254, 110, 136, 0.3);
    /* Simpler shadow */
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-blue-dark);
}

.logo img {
    height: 50px;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, var(--background-light) 0%, #EBF5FB 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: var(--primary-green);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(45deg, var(--primary-blue-dark), #1ABC9C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text .subheadline {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transform: rotate(2deg);
    border: 5px solid white;
}

/* Problem & Solution */
.problem-solution {
    padding: 80px 0;
    background: var(--white);
}

.section-card {
    background: var(--background-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(138, 182, 214, 0.2);
    /* 3D Card Effect */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    background: linear-gradient(145deg, #ffffff, #f0f7fa);
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.3s ease;
}

.section-card:hover {
    transform: translateY(-5px);
}

.problem h2 {
    color: #E74C3C;
    margin-bottom: 15px;
}

.solution h2 {
    color: var(--primary-green-dark);
    margin-bottom: 15px;
}

/* Benefits */
.benefits {
    padding: 80px 0;
    background: #EBF5FB;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Softer initial shadow */
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    border-bottom: 5px solid transparent;
    /* Prepare for 3D border */
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(138, 182, 214, 0.25);
    border-bottom: 5px solid var(--primary-green);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

/* Deliverables */
.deliverables {
    padding: 80px 0;
}

.deliverables-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.deliverable-list ul {
    list-style: none;
}

.deliverable-list li {
    background: white;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-icon {
    color: var(--primary-green-dark);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--primary-blue);
    background: linear-gradient(135deg, #AED6F1, #D2B4DE);
    color: white;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-main);
    padding: 40px;
    border-radius: var(--radius-lg);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    color: #D2B4DE;
    opacity: 0.5;
    position: absolute;
    top: 20px;
    left: 30px;
    line-height: 1;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    text-align: center;
    background: var(--white);
}

.price-card {
    background: var(--background-light);
    border: 3px solid var(--primary-green);
    border-radius: 30px;
    padding: 60px 40px;
    max-width: 500px;
    margin: 40px auto;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: -40px;
    background: #E74C3C;
    color: white;
    padding: 10px 50px;
    transform: rotate(45deg);
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.5rem;
}

.new-price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-blue-dark);
    margin: 10px 0 30px;
}

.payment-methods {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0.7;
}

/* Guarantee */
.guarantee {
    padding: 60px 0;
    text-align: center;
    background: #F9E79F;
}

.guarantee-badge {
    width: 120px;
    margin: 0 auto 20px;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: var(--background-light);
}

.accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.accordion-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: var(--primary-blue-dark);
}

.accordion-body {
    padding: 0 20px 20px;
    color: var(--text-light);
    display: none;
    /* JS handle toggle */
}

.accordion-item.active .accordion-body {
    display: block;
}

.accordion-item.active .accordion-header {
    background: #EBF5FB;
}

/* Footer */
footer {
    background: var(--text-main);
    color: white;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {

    .hero-content,
    .deliverables-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
        margin-bottom: 30px;
        transform: none;
    }

    .hero-image img {
        transform: none;
    }

    h1 {
        font-size: 2.2rem;
    }
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--cta-hover);
}

.modal-body h3 {
    color: var(--primary-blue-dark);
    margin-bottom: 15px;
    border-bottom: 2px solid #EBF5FB;
    padding-bottom: 10px;
}

.modal-body p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-main);
}

/* Sales Notification */
.sales-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 999;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 5px solid var(--primary-green);
    max-width: 320px;
}

.sales-notification.active {
    transform: translateY(0);
}

.sales-notification img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.sales-info p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.3;
}

.sales-info strong {
    color: var(--primary-blue-dark);
}

.sales-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}