/* ===========================================
   ReelEstate - Scripts Product Page Styles
   =========================================== */

/* Hero */
.scripts-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #0a0a0f;
    overflow: hidden;
}

.scripts-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(139, 92, 246, 0.1), transparent),
        linear-gradient(to bottom, #0a0a0f, #12121a);
    pointer-events: none;
}

.scripts-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-block: 6rem 4rem;
}

.scripts-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin: 1.5rem 0;
    letter-spacing: -0.03em;
}

.scripts-hero h1 .accent {
    background: linear-gradient(135deg, var(--accent), #e9d4ad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.scripts-hero .lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.scripts-hero__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-old {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.price-current {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
}

.price-note {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
}

.scripts-hero__ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn--large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn--ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn--full {
    width: 100%;
}

.scripts-hero__trust {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-icon {
    color: var(--accent);
}

/* Problem Section */
.scripts-problem {
    background: var(--bg);
}

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

.problem-content h2 {
    font-size: var(--h2);
    margin-bottom: 1.5rem;
}

.problem-content em {
    color: var(--accent);
    font-style: normal;
}

.problem-content p {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.problem-content strong {
    color: var(--text);
}

.problem-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    padding: 1.5rem 2rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--muted);
}

/* What's Inside Section */
.scripts-inside {
    background: var(--bg2);
}

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

.section-header h2 {
    font-size: var(--h2);
    margin: 1rem 0;
}

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

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}

.category-card--bonus {
    background: linear-gradient(135deg, rgba(181, 148, 90, 0.1), rgba(181, 148, 90, 0.05));
    border-color: var(--accent-light);
}

.category-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.category-card>p {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    padding: 0.5rem 0;
    border-top: 1px solid var(--line);
    font-size: 0.9rem;
    color: var(--text);
    font-style: italic;
}

/* Samples Form Section */
.scripts-samples {
    background: var(--bg);
}

.samples-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.samples-form {
    padding: 2rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.samples-form input[type="text"],
.samples-form input[type="email"] {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg);
    transition: all 0.2s ease;
}

.samples-form input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(181, 148, 90, 0.1);
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 1rem;
}

.samples-success {
    padding: 3rem 2rem;
    background: var(--surface);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    text-align: center;
}

.success-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: var(--accent);
    color: #fff;
    font-size: 1.5rem;
    border-radius: 50%;
}

.samples-success h3 {
    margin-bottom: 0.5rem;
}

.samples-success p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

/* Social Proof */
.scripts-proof {
    background: #0a0a0f;
    color: #fff;
}

.proof-header {
    text-align: center;
    margin-bottom: 3rem;
}

.proof-header h2 {
    font-size: var(--h2);
}

.proof-header .accent {
    color: var(--accent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: #fff;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* CTA Section */
.scripts-cta {
    background: var(--bg2);
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    padding: 3rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius2);
    box-shadow: var(--shadow);
}

.cta-content h2 {
    font-size: var(--h2);
    margin: 1rem 0;
}

.cta-content>p {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.cta-includes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-includes li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
}

.cta-includes li:last-child {
    border-bottom: none;
}

.purchase-card {
    padding: 2rem;
    background: linear-gradient(135deg, #0a0a0f, #1a1a25);
    border-radius: var(--radius);
    color: #fff;
    text-align: center;
}

.purchase-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.purchase-price .price-old {
    font-size: 1.25rem;
}

.purchase-price .price-current {
    font-size: 3rem;
}

.purchase-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.purchase-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

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

.purchase-guarantee p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* FAQ Section */
.container--narrow {
    max-width: 700px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    padding: 1.25rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.faq-item p {
    margin-top: 1rem;
    color: var(--muted);
    line-height: 1.7;
}

.faq-item a {
    color: var(--accent);
    text-decoration: underline;
}

/* Final CTA */
.scripts-final {
    background: linear-gradient(135deg, #0a0a0f, #1a1a25);
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    font-size: var(--h2);
    margin-bottom: 0.5rem;
}

.final-cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .scripts-hero {
        min-height: auto;
        padding-block: 8rem 4rem;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .scripts-hero__ctas {
        flex-direction: column;
        align-items: center;
    }

    .btn--large {
        width: 100%;
        justify-content: center;
    }
}