/* ltd-final.css - V12 - The Definitive Redesign */

:root {
    --ltd-bg: #FFFFFF;
    --ltd-fg: #111827; 
    --ltd-fg-muted: #6B7280;
    --ltd-border: #E5E7EB;
    --ltd-primary: #F33000; /* YOUR CORRECT BRAND COLOR */
    --ltd-accent-yellow: #FBBF24;
    --ltd-accent-yellow-fg: #111827;
}

/* Base override for the LTD page body */
.ltd-page-wrapper {
    background-color: var(--ltd-bg);
    color: var(--ltd-fg);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}

/* Accent Tag for section headers from reference */
.ltd-accent-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background-color: var(--ltd-accent-yellow); color: var(--ltd-accent-yellow-fg);
    padding: 6px 16px; border-radius: 9999px; font-weight: 700;
    font-size: 0.9rem;
}

/* Button styles from reference */
.btn-ltd {
    font-weight: 600; padding: 12px 28px; border-radius: 8px;
    transition: all 0.2s ease-in-out;
}
.btn-ltd-primary { background-color: var(--ltd-primary); color: #FFFFFF; border: none; }
.btn-ltd-primary:hover { color: #FFFFFF; transform: scale(1.05); }
.btn-ltd-secondary { background-color: var(--ltd-bg); color: var(--ltd-fg); border: 1px solid var(--ltd-border); }
.btn-ltd-secondary:hover { border-color: var(--ltd-fg); }

/* Hero checkmark list */
.hero-benefits { display: flex; gap: 1.5rem; justify-content: center; list-style: none; padding-left: 0; }
.hero-benefits li { display: flex; align-items: center; gap: 0.5rem; font-weight: 500; }

/* Feature Grid from reference */
/* ltd-final.css */

.feature-grid-card-v2 {
    background-color: var(--ltd-bg); /* Use pure white */
    border: 1px solid var(--ltd-border);
    padding: 2rem;
    height: 100%;
    border-radius: 12px;
    text-align: left; /* Align text to the left */
}

/* "Who Is This For?" Tags */
.persona-tag {
    background-color: var(--ltd-bg); border: 1px solid var(--ltd-border);
    padding: 8px 16px; border-radius: 8px; font-weight: 500;
}

/* Offer Box Redesign from reference */
.offer-box {
    background-color: var(--ltd-bg); border: 1px solid var(--ltd-border);
    border-radius: 12px; padding: 2.5rem;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}
.offer-box .price-slash { text-decoration: line-through; color: var(--ltd-fg-muted); }

/* Testimonial Tweet Cards from reference */
/* ltd-final.css */

/* ltd-final.css */

/* THE FIX: A pixel-perfect implementation of the reference testimonial style */
/* ltd-final.css */

/* THE FIX: A pixel-perfect implementation of the reference testimonial style */
/* ltd-final.css */

/* THE FIX: A pixel-perfect implementation of the reference testimonial style */
.testimonial-grid-final {
    column-count: 1;
    column-gap: 1.5rem;
}
@media (min-width: 640px) {
    .testimonial-grid-final {
        column-count: 2;
    }
}
@media (min-width: 1024px) {
    .testimonial-grid-final {
        column-count: 3;
    }
}
@media (min-width: 1280px) {
    .testimonial-grid-final {
        column-count: 4;
    }
}

.ltd-tweet-card {
    display: inline-block;
    width: 100%;
    background: var(--ltd-bg);
    border: 2px solid var(--ltd-fg); /* Neo-Brutalism Border */
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0; /* Neo-Brutalism Style */
    box-shadow: 6px 6px 0 0 var(--ltd-fg); /* Neo-Brutalism Shadow */
}
.ltd-tweet-card .user-info {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.ltd-tweet-card .user-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0.75rem;
}
.ltd-tweet-card .user-info .name {
    font-weight: 700;
    color: var(--ltd-fg);
}
.ltd-tweet-card .user-info .handle {
    color: var(--ltd-fg-muted);
}
.ltd-tweet-card p {
    color: var(--ltd-fg);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Section from reference */
.faq-clean .accordion-item { border: 0; border-bottom: 1px solid var(--ltd-border); background-color: transparent; }
.faq-clean .accordion-button {
  font-weight: 600; font-size: 1.1rem; color: var(--ltd-fg);
  background-color: transparent; padding: 1.75rem 0;
  border: none; box-shadow: none;
}
.faq-clean .accordion-button:not(.collapsed) { color: var(--ltd-fg); }
.faq-clean .accordion-button::after {
    flex-shrink: 0; margin-left: auto; content: "v";
    font-weight: 200; transition: transform .2s ease-in-out;
    background-image: none; transform: rotate(0deg);
}
.faq-clean .accordion-button:not(.collapsed)::after { transform: rotate(180deg); }
.faq-clean .accordion-body { padding: 0 0 1.75rem 0; color: var(--ltd-fg-muted); max-width: 90%; }

/* Final CTA Section from reference */
.ltd-final-cta { background-color: var(--ltd-primary); color: var(--ltd-primary-fg); }

/* ltd-final.css */

/* THE FIX: A new style for the Core Benefits cards to match the Neo-Brutalism theme */
/* ltd-final.css */

.benefit-card-neo {
    background-color: var(--ltd-bg);
    border: 2px solid var(--ltd-fg);
    padding: 2rem;
    height: 100%;
    text-align: left;
    border-radius: 0;
    box-shadow: 4px 4px 0 0 var(--ltd-fg); /* THE FIX: Reduced from 6px */
    transition: all 0.2s ease-in-out;
}
.benefit-card-neo:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 0 var(--ltd-fg); /* THE FIX: Reduced from 9px */
}
.benefit-card-neo .icon { 
    font-size: 1.75rem; 
    color: var(--ltd-primary);
    margin-bottom: 1rem; 
    display: inline-block;
}
.benefit-card-neo h5 { font-weight: 700; }