:root {
    --bg-color: #F8F6F4;
    --card-bg: #FFFFFF;
    --text-dark: #2D2D2D;
    --text-medium: #5C5C5C;
    --text-light: #8A8A8A;
    --accent-wine: #9A2A46;
    --accent-wine-light: #B43A5A;
    --accent-pink: #E8CCD1;
    --wpp-green: #25D366;
    --wpp-green-hover: #128C7E;
    --border-radius: 20px;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.5;
}

/* Floating Notification */
.floating-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 100;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 320px;
    margin: 0 auto;
    border-left: 4px solid var(--wpp-green);
}

.floating-notification.show {
    transform: translateY(0);
}

.notification-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background: var(--wpp-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.notification-text {
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.3;
}

.notification-text span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Top Bar */
.top-bar {
    background-color: var(--accent-wine);
    color: white;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 10px rgba(154, 42, 70, 0.2);
}

/* Layout */
.container {
    max-width: 500px; /* Mobile first, capped for larger screens */
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px 25px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.03);
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-top: 5px;
}

.hero-image {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--accent-wine), var(--accent-pink));
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
}

.main-title {
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.main-title span {
    color: var(--accent-wine);
}

.subtitle {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Scarcity Block */
.scarcity-block {
    background-color: #FFF9FA;
    border: 1px solid var(--accent-pink);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
    text-align: left;
}

.scarcity-text {
    font-size: 0.9rem;
    color: var(--accent-wine);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.3;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    background-color: var(--accent-wine);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(154, 42, 70, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(154, 42, 70, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(154, 42, 70, 0); }
}

.progress-container {
    height: 8px;
    background-color: #EAEAEA;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 6px;
}

.progress-bar {
    height: 100%;
    width: 92%;
    background: linear-gradient(90deg, var(--accent-wine-light), var(--accent-wine));
    border-radius: 10px;
    animation: load-progress 1.5s ease-out;
}

@keyframes load-progress {
    from { width: 0; }
    to { width: 92%; }
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
}

/* CTA Buttons */
.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 20px;
    border-radius: 100px;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
    background-color: var(--wpp-green);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.cta-button.pulse {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0% { transform: scale(1); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 12px 25px rgba(37, 211, 102, 0.5); }
    100% { transform: scale(1); box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3); }
}

.cta-button:active {
    transform: scale(0.98);
}

.cta-button i {
    font-size: 1.4rem;
}

.micro-proof {
    margin-top: 18px;
    font-size: 0.85rem;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.micro-proof i {
    color: var(--wpp-green);
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-card {
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background-color: var(--accent-pink);
    color: var(--accent-wine);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.benefit-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.benefit-content p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.45;
}

/* Direct Copy */
.direct-copy h2 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 22px;
    color: var(--text-dark);
    text-align: center;
}

.bullet-list {
    list-style: none;
}

.bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 500;
    line-height: 1.4;
}

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

.bullet-list li i {
    color: var(--wpp-green);
    margin-top: 3px;
    font-size: 1.15rem;
}

.intermediate-cta-wrapper {
    margin: 5px 0;
}

/* FAQ Section */
.faq-section h2 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-dark);
    text-align: center;
}

.faq-item {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid #F0F0F0;
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent-wine);
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.5;
}

/* Final CTA */
.final-cta-section {
    background: linear-gradient(to bottom, #FFFFFF, #FFF9FA);
    border: 2px solid var(--accent-pink);
    padding-top: 40px;
    padding-bottom: 40px;
}

.final-cta-section h2 {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--accent-wine);
}

.final-cta-section p {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 28px;
    font-weight: 500;
    line-height: 1.5;
}

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

/* Footer */
footer {
    text-align: center;
    padding: 10px 0 30px;
}

.footer-links {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.85rem;
}

.footer-links a {
    color: var(--text-medium);
    text-decoration: none;
}

.footer-links span {
    color: #DDDDDD;
}

footer p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 0.75rem;
    max-width: 90%;
    margin: 0 auto;
    color: #999;
}

@media (min-width: 600px) {
    .container {
        padding: 40px 20px;
    }
    
    .floating-notification {
        bottom: 30px;
        left: 30px;
        right: auto;
        margin: 0;
    }
}
