:root {
    --primary: #2563eb;
    /* blue-600 */
    --primary-dark: #1d4ed8;
    /* blue-700 */
    --secondary: #4f46e5;
    /* indigo-600 */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --white: #ffffff;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --red-500: #ef4444;
    --orange-500: #f97316;
    --yellow-400: #facc15;

    --font-sans: 'Nunito', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    color: var(--slate-900);
    background-color: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

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

    h2 {
        font-size: 2.5rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.125rem;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2), 0 2px 4px -1px rgba(37, 99, 235, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background-color: var(--slate-100);
    color: var(--slate-800);
}

.btn-secondary:hover {
    background-color: var(--slate-200);
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(to right, #ef4444, #b91c1c);
    color: white;
    padding: 0.75rem 1rem;
    text-align: center;
    font-weight: 500;
    position: relative;
    z-index: 50;
}

.pulse-text {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .7;
    }
}

/* Hero Section */
.hero {
    padding: 3rem 0 5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    z-index: -1;
}

.blob-1 {
    top: -10%;
    right: -5%;
    width: 24rem;
    height: 24rem;
    background-color: #bfdbfe;
}

.blob-2 {
    bottom: -10%;
    left: -10%;
    width: 30rem;
    height: 30rem;
    background-color: #c7d2fe;
}

.hero-highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-highlight svg {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 12px;
    color: #bfdbfe;
    z-index: -1;
}

.price-tag {
    background-color: #dcfce7;
    color: var(--green-600);
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-weight: 700;
}

/* Video Placeholder */
.video-wrapper {
    max-width: 56rem;
    margin: 3rem auto 0;
    position: relative;
}

.video-glow {
    position: absolute;
    inset: -0.5rem;
    background: linear-gradient(to right, #60a5fa, #818cf8);
    border-radius: 1.5rem;
    filter: blur(12px);
    opacity: 0.25;
}

.video-container {
    position: relative;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    aspect-ratio: 9/16;
    max-width: 360px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--slate-100);
}

.play-button {
    width: 5rem;
    height: 5rem;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
    cursor: pointer;
    transition: transform 0.2s;
    color: white;
}

.play-button:hover {
    transform: scale(1.1);
}

/* Hero Trust Badges */
.hero-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-600);
    font-size: 0.875rem;
    font-weight: 600;
}

.trust-icon {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--primary);
}

/* Categories */
.categories {
    padding: 4rem 0;
    background-color: white;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-radius: 1rem;
    background-color: var(--slate-50);
    border: 1px solid var(--slate-100);
    transition: all 0.3s;
    cursor: default;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 180px;
    overflow: hidden;
    z-index: 1;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.65);
    z-index: -1;
    transition: background-color 0.3s;
}

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

.category-card:hover::before {
    background-color: rgba(255, 255, 255, 0.4);
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--slate-900);
    text-align: center;
    z-index: 2;
}

/* Specific Backgrounds */
/* Specific Backgrounds */
.cat-flores {
    background-image: url('bg_flores.jpg');
}

.cat-letras {
    background-image: url('bg_letras.jpg');
}

.cat-numeros {
    background-image: url('bg_numeros.jpg');
}

.cat-animais {
    background-image: url('bg_animais.jpg');
}

.cat-personagens {
    background-image: url('bg_personagens.jpg');
}

.cat-biblicos {
    background-image: url('bg_biblicos.jpg');
}

.cat-natal {
    background-image: url('bg_natal.jpg');
}

.cat-pascoa {
    background-image: url('bg_pascoa.jpg');
}

/* Benefits */
.benefits {
    padding: 4rem 0;
    background-color: var(--slate-50);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid var(--slate-100);
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background-color: var(--slate-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Pricing */
.pricing {
    padding: 5rem 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 56rem;
    margin: 3rem auto 0;
    align-items: center;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.plan-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--slate-200);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    position: relative;
}

.plan-card.premium {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.old-price {
    color: var(--slate-400);
    text-decoration: line-through;
    font-size: 0.875rem;
}

.current-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--slate-900);
}

.save-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    margin-bottom: 1.5rem;
}

.save-badge.green {
    background-color: #dcfce7;
    color: var(--green-700);
}

.save-badge.blue {
    background-color: #dbeafe;
    color: var(--primary-dark);
}

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

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--slate-600);
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon.blue {
    background-color: #dbeafe;
    color: var(--primary);
}

.check-icon.filled {
    background-color: var(--primary);
    color: white;
}

/* Testimonials Marquee */
.testimonials {
    padding: 4rem 0;
    background-color: var(--slate-50);
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
    /* Fade effect on edges */
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.testimonial-image-card {
    width: 320px;
    flex-shrink: 0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    background: white;
    border: 4px solid white;
    transition: transform 0.3s ease;
}

.testimonial-image-card:hover {
    transform: scale(1.02);
    z-index: 10;
}

.testimonial-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

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

    100% {
        /* Move by half the total width (since we duplicate the content) */
        /* We have 4 items + 4 duplicates. We need to move by the width of 4 items + 4 gaps */
        /* But exact pixel calculation is hard in generic CSS. 
           A common trick is to have two identical sets and translate -50% of the parent if the parent fits the content exactly.
           Or just use a large negative value and ensure enough duplicates.
           
           Let's try a different approach:
           We will have 2 sets of items.
           We translate from 0 to -50%.
        */
        transform: translateX(-50%);
    }
}

/* Guarantee */
.guarantee {
    padding: 5rem 0;
    background-color: white;
}

.guarantee-box {
    max-width: 56rem;
    margin: 0 auto;
    background: linear-gradient(to bottom right, #eff6ff, #eef2ff);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid #dbeafe;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .guarantee-box {
        flex-direction: row;
        text-align: left;
        padding: 3rem;
    }
}

.shield-icon-wrapper {
    width: 8rem;
    height: 8rem;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(219, 234, 254, 0.5);
    flex-shrink: 0;
}

/* Footer */
footer {
    background-color: var(--slate-900);
    color: var(--slate-400);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.875rem;
}

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

.footer-links a {
    color: var(--slate-400);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

/* Social Proof Notification */
.notification {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--slate-100);
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 20rem;
    z-index: 100;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.notif-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
    flex-shrink: 0;
}

.close-notif {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: var(--slate-300);
    cursor: pointer;
}

.close-notif:hover {
    color: var(--slate-500);
}

/* Upsell Popup Styles */
.upsell-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.upsell-overlay.active {
    opacity: 1;
    visibility: visible;
}

.upsell-card {
    background-color: white;
    width: 100%;
    max-width: 480px;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.upsell-overlay.active .upsell-card {
    transform: scale(1);
}

.upsell-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10;
}

.upsell-close:hover {
    background: rgba(255, 255, 255, 0.4);
}

.upsell-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    color: white;
    position: relative;
}

.upsell-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.upsell-icon-wrapper i {
    width: 2rem;
    height: 2rem;
    color: white;
}

.upsell-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.upsell-body {
    padding: 2rem;
    text-align: center;
}

.upsell-subtitle {
    font-size: 1.125rem;
    color: var(--slate-600);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.upsell-offer-box {
    background-color: #eff6ff;
    border: 2px solid #dbeafe;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.upsell-offer-title {
    font-weight: 700;
    color: var(--slate-700);
    margin-bottom: 0.5rem;
}

.upsell-old-price {
    text-decoration: line-through;
    color: var(--slate-400);
    font-size: 1rem;
}

.upsell-new-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin: 0.25rem 0 0.5rem;
}

.upsell-savings {
    font-size: 0.875rem;
    color: var(--slate-600);
    line-height: 1.4;
}

.upsell-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--orange-500);
    margin-bottom: 1.5rem;
    background-color: #fff7ed;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.upsell-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.upsell-btn-yes {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
    animation: pulse-btn 2s infinite;
}

.upsell-btn-no {
    color: var(--slate-500);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem;
    transition: color 0.2s;
}

.upsell-btn-no:hover {
    color: var(--slate-800);
    text-decoration: underline;
}

@keyframes pulse-btn {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 640px) {
    .upsell-card {
        max-height: 80vh;
        overflow-y: auto;
        width: 90%;
        border-radius: 1rem;
        margin: auto;
    }

    .upsell-header {
        padding: 1rem 1rem 0.5rem;
    }

    .upsell-header h2 {
        font-size: 1.15rem;
        margin-bottom: 0;
        line-height: 1.2;
    }

    /* Hide the icon to save space */
    .upsell-icon-wrapper {
        display: none;
    }

    .upsell-body {
        padding: 0.75rem 1rem 1rem;
    }

    .upsell-subtitle {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .upsell-offer-box {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
        background-color: #f0f9ff;
    }

    .upsell-offer-title {
        font-size: 0.9rem;
    }

    .upsell-old-price {
        font-size: 0.9rem;
    }

    .upsell-new-price {
        font-size: 1.75rem;
        margin: 0.1rem 0 0.25rem;
    }

    .upsell-savings {
        font-size: 0.8rem;
    }

    .upsell-warning {
        font-size: 0.8rem;
        padding: 0.4rem;
        margin-bottom: 1rem;
    }

    .upsell-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 2rem;
        height: 2rem;
        background: rgba(0, 0, 0, 0.1);
        color: white;
    }

    .upsell-btn-yes {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    .upsell-btn-no {
        font-size: 0.8rem;
        padding: 0.25rem;
    }
}

/* What's Included Section */
.whats-included {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, #eff6ff, #f8fafc);
}

.included-card {
    background-color: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--slate-100);
}

@media (min-width: 768px) {
    .included-card {
        padding: 4rem;
    }
}

.included-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.included-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    color: var(--slate-700);
    line-height: 1.5;
}

@media (min-width: 768px) {
    .included-list li {
        font-size: 1.125rem;
        align-items: center;
    }
}

.included-icon {
    color: var(--green-600);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.125rem;
    /* Align with text top on mobile */
}

@media (min-width: 768px) {
    .included-icon {
        margin-top: 0;
    }
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background-color: var(--slate-50);
}

.faq-grid {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: white;
    border-radius: 1rem;
    border: 1px solid var(--slate-200);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--slate-800);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.125rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item[open] summary {
    border-bottom: 1px solid var(--slate-100);
    color: var(--primary);
}

.faq-answer {
    padding: 1.5rem;
    color: var(--slate-600);
    line-height: 1.6;
    background-color: #f8fafc;
}

/* Mobile Optimizations */
@media (max-width: 640px) {

    /* Reduce section padding */
    .hero,
    .categories,
    .benefits,
    .pricing,
    .testimonials,
    .whats-included,
    .guarantee,
    .faq {
        padding: 3rem 0;
    }

    /* Hero adjustments */
    .hero {
        padding-bottom: 4rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    /* Compact 'What's Included' */
    .included-card {
        padding: 1.5rem;
    }

    .included-list {
        gap: 0.75rem;
    }

    .included-list li {
        font-size: 0.95rem;
        gap: 0.75rem;
    }

    .included-icon {
        width: 1.25rem;
        height: 1.25rem;
    }

    .included-icon i {
        width: 1.25rem;
        height: 1.25rem;
    }

    /* Compact Benefits */
    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-icon {
        width: 2.5rem;
        height: 2.5rem;
        margin-bottom: 1rem;
    }

    .benefit-icon i {
        width: 1.5rem;
        height: 1.5rem;
    }

    /* Compact Categories */
    .category-card {
        padding: 1rem;
    }

    .cat-icon {
        width: 2.5rem;
        height: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .cat-icon i {
        width: 1.25rem;
        height: 1.25rem;
    }

    .category-card h3 {
        font-size: 1rem;
    }

    /* FAQ adjustments */
    .faq-item summary {
        padding: 1rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 1rem;
        font-size: 0.95rem;
    }
}