:root {
    --primary: #6366f1;
    /* Indigo 500 */
    --primary-dark: #4f46e5;
    /* Indigo 600 */
    --secondary: #ec4899;
    /* Pink 500 */
    --accent: #fbbf24;
    /* Amber 400 */
    --dark: #1e293b;
    /* Slate 800 */
    --darker: #0f172a;
    /* Slate 900 */
    --light: #f8fafc;
    /* Slate 50 */
    --white: #ffffff;
    --gray: #64748b;
    /* Slate 500 */
    --border: #e2e8f0;
    /* Slate 200 */

    --font-main: 'Outfit', sans-serif;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, #db2777 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(236, 72, 153, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.23);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--dark);
    color: var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: white;
}

.btn-block {
    width: 100%;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(236, 72, 153, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(236, 72, 153, 0);
    }
}

/* Hero Section */
.hero {
    background: var(--darker);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-content {
        grid-template-columns: 1.2fr 0.8fr;
    }

    .hero-text {
        text-align: left;
        align-items: flex-start;
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.subheadline {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.price-tag {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.old-price {
    text-decoration: line-through;
    color: #94a3b8;
}

.new-price {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.5rem;
}

.scarcity-text {
    color: #f87171;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.small-text {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

.small-text i {
    color: var(--accent);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.pack-mockup {
    position: relative;
    width: 300px;
    height: 350px;
}

.mockup-card {
    position: absolute;
    width: 220px;
    height: 280px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease;
    border: 4px solid white;
}

.mockup-card i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.mockup-card span {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark);
}

.card-stitch {
    background: #60a5fa;
    /* Blue */
    color: white;
    transform: rotate(-10deg) translate(-20px, 20px);
    z-index: 1;
}

.card-stitch span {
    color: white;
}

.card-minecraft {
    background: #4ade80;
    /* Green */
    color: var(--darker);
    transform: rotate(5deg) translate(20px, 0);
    z-index: 2;
}

.card-princess {
    background: #f472b6;
    /* Pink */
    color: white;
    transform: rotate(-2deg) translate(0, -20px);
    z-index: 3;
}

.card-princess span {
    color: white;
}

.floating-badge {
    position: absolute;
    bottom: 0;
    right: -20px;
    background: var(--accent);
    color: var(--darker);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    z-index: 4;
    transform: rotate(15deg);
    border: 4px solid white;
}

.floating-badge span {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.floating-badge small {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
}

/* Audience Section */
.audience {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    color: var(--darker);
}

.section-header p {
    color: var(--gray);
    font-size: 1.125rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.audience-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #e0e7ff;
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.audience-card h3 {
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.audience-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .audience-card {
        padding: 1.25rem;
    }

    .icon-box {
        margin-bottom: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Features Separator */
.features-separator {
    background: var(--darker);
    color: white;
    padding: 80px 0;
}

.light-text h2 {
    color: white;
}

.light-text p {
    color: #94a3b8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.feature-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.feature-item p {
    font-size: 0.9rem;
    color: #cbd5e1;
}

.highlight-item {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    grid-column: 1 / -1;
}

@media (min-width: 768px) {
    .highlight-item {
        grid-column: auto;
    }
}

/* Why Now Section */
.why-now {
    padding: 80px 0;
    background: #f1f5f9;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.why-list {
    margin: 2rem 0;
}

.why-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.why-list i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.why-list strong {
    display: block;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.why-list span {
    color: var(--gray);
    font-size: 0.9rem;
}

.mini-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.mini-features span {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    border: 1px solid var(--border);
}

.visual-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    border: 1px solid var(--border);
}

.visual-card .tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.tag {
    background: #e0e7ff;
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Themes Cloud */
.themes {
    padding: 60px 0;
    background: white;
    overflow: hidden;
}

.themes-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 900px;
    margin: 0 auto;
}

.themes-cloud span {
    background: var(--light);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gray);
    transition: all 0.2s;
}

.themes-cloud span:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.05);
}

/* Bonuses */
.bonuses {
    padding: 80px 0;
    background: #fff1f2;
    /* Light Pink bg */
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.bonus-card {
    background: white;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    /* Ensure image doesn't overflow */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bonus-image {
    width: 100%;
    height: 180px;
    background: #f1f5f9;
}

.bonus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bonus-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.bonus-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.bonus-card .btn {
    width: 100%;
    font-size: 0.8rem;
    padding: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
}

.price-anchor {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 0.85rem;
}

.new-price {
    color: var(--success);
    font-weight: 700;
    font-size: 1rem;
}

/* Offers Section */
.offers {
    padding: 100px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr 1.2fr;
        align-items: center;
    }
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    position: relative;
}

.pricing-card.basic {
    background: var(--light);
}

.pricing-card.premium {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-header p {
    color: var(--gray);
    font-size: 0.9rem;
}

.price-display {
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    color: var(--dark);
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 5px;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.features-list {
    margin-bottom: 2rem;
}

.features-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray);
    font-size: 0.95rem;
}

.features-list li i {
    color: var(--primary);
    flex-shrink: 0;
}

.features-list li strong {
    color: var(--dark);
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: var(--light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.faq-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: var(--darker);
    color: #94a3b8;
    padding: 4rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-links {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: white;
    font-weight: 600;
}

.disclaimer {
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.5;
    font-size: 0.8rem;
}

.copyright {
    color: #64748b;
}

/* New Hero Image Styles */
.hero-img-mobile {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto 2rem;
}

.hero-img-desktop {
    display: none;
    width: 100%;
    max-width: 600px;
    /* Increased size slightly since border is gone */
    height: auto;
}

@media (min-width: 992px) {
    .hero-img-mobile {
        display: none;
    }

    .hero-img-desktop {
        display: block;
    }
}

.highlight-text {
    color: var(--accent);
    font-weight: 800;
}

/* Badge Adjustment for long text */
.badge {
    white-space: normal;
    text-align: left;
    line-height: 1.4;
    max-width: 100%;
}

/* Urgency Banner */
.urgency-banner {
    background: #ef4444;
    /* Red */
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

body {
    padding-top: 40px;
    /* Space for banner */
}

/* Social Proof */
.social-proof-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.avatars {
    display: flex;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e0e7ff;
    border: 2px solid var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    color: var(--primary);
    font-size: 0.8rem;
}

.avatar:first-child {
    margin-left: 0;
}

.social-text {
    text-align: left;
    line-height: 1.2;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.social-text strong {
    display: block;
    color: white;
}

.delivery-info {
    font-size: 0.85rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.delivery-info i {
    color: #25D366;
    /* WhatsApp Green */
    font-size: 1.1rem;
}

/* Themes Carousel */
.carousel-wrapper {
    position: relative;
    padding: 1rem 0;
    overflow: hidden;
    /* Hide overflow for auto-scroll */
}

/* Auto-scroll Track */
.carousel-track-auto {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll 65s linear infinite;
}

.carousel-wrapper:hover .carousel-track-auto {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-280px * 13 - 1.5rem * 13));
    }

    /* Adjust based on card width + gap * number of unique cards */
}

.carousel-card {
    flex: 0 0 280px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid var(--border);
    height: 320px;
}

.carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Changed to contain to show full sticker sheet */
    padding: 0.5rem;
    /* Add padding for better look */
}

.carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Text Marquee Styles */
.marquee-text-wrapper {
    margin-top: 1rem;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-text-track {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.marquee-content {
    display: inline-block;
    animation: marquee 60s linear infinite;
    padding-left: 100%;
    /* Start from right */
    color: var(--gray);
    font-size: 0.95rem;
}

.marquee-text-track.reverse .marquee-content {
    animation-direction: reverse;
}

.marquee-content strong {
    color: var(--primary);
    font-weight: 700;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.scroll-hint {
    display: none;
    /* Hide scroll hint for auto-scroll */
}
/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
    line-height: 1;
}

.modal-header h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.discount-badge {
    background: #fef2f2;
    color: #ef4444;
    font-weight: 800;
    padding: 0.75rem;
    border-radius: 12px;
    border: 2px dashed #ef4444;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.modal-features {
    text-align: left;
    margin-bottom: 1.5rem;
    list-style: none;
}

.modal-features li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--dark);
}

.modal-urgency {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.btn-link-secondary {
    display: block;
    margin-top: 1rem;
    color: var(--gray);
    text-decoration: underline;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-link-secondary:hover {
    color: var(--dark);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.author strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
}

.author span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Guarantee Section */
.guarantee {
    padding: 60px 0;
    background: white;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: #f0fdf4;
    border: 2px dashed #22c55e;
    padding: 3rem;
    border-radius: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 5rem;
    color: #22c55e;
    flex-shrink: 0;
}

.guarantee-content h2 {
    color: #15803d;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.guarantee-content p {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }

    .guarantee-icon {
        font-size: 4rem;
    }
}

/* FAQ Accordion Styles */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
    color: var(--primary);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f8fafc;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Adjust if needed */
}

.faq-answer p {
    padding: 1.5rem;
    padding-top: 0;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Urgency Section */
.urgency-section {
    padding: 2rem 0;
    background: #fff1f2; /* Light pink background to blend with bonuses */
}

.urgency-card {
    background: linear-gradient(135deg, #be123c 0%, #e11d48 100%);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    box-shadow: 0 10px 25px -5px rgba(225, 29, 72, 0.4);
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

@keyframes borderPulse {
    0% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(225, 29, 72, 0); }
    100% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

.urgency-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.urgency-icon {
    font-size: 2.5rem;
    color: #fecdd3;
    animation: swing 2s ease-in-out infinite;
}

@keyframes swing {
    0%, 100% { transform: rotate(0deg); }
    20% { transform: rotate(15deg); }
    40% { transform: rotate(-10deg); }
    60% { transform: rotate(5deg); }
    80% { transform: rotate(-5deg); }
}

.urgency-text h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    color: white;
}

.urgency-text p {
    font-size: 0.95rem;
    color: #ffe4e6;
    margin: 0;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
}

.time-unit {
    text-align: center;
    min-width: 40px;
}

.time-unit span {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.time-unit small {
    font-size: 0.65rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.time-separator {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: -10px;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .urgency-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .urgency-content {
        flex-direction: column;
    }

    .urgency-text h3 {
        font-size: 1.1rem;
    }
}
