/* Tool Show Page Styles - Scoped */

/* Hero Section */
.tool-show-page .tool-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.tool-show-page .tool-hero-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 4rem;
    align-items: center;
}

.tool-show-page .tool-visual-wrapper {
    position: relative;
}

.tool-show-page .tool-preview-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.tool-show-page .tool-icon-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.tool-show-page .tool-icon-placeholder svg {
    width: 150px;
    height: 150px;
    color: white;
    opacity: 0.8;
}

.tool-show-page .tool-video-preview {
    margin-top: 1.5rem;
}

.tool-show-page .video-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.tool-show-page .video-play-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.tool-show-page .video-play-btn svg {
    width: 20px;
    height: 20px;
}

.tool-show-page .tool-hero-content {
    max-width: 600px;
}

.tool-show-page .tool-status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.tool-show-page .status-live {
    background: #10b981;
    color: white;
}

.tool-show-page .status-beta {
    background: #f59e0b;
    color: white;
}

.tool-show-page .status-coming_soon {
    background: #3b82f6;
    color: white;
}

.tool-show-page .status-planned {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.tool-show-page .tool-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.tool-show-page .tool-value-statement {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.tool-show-page .tool-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.tool-show-page .tool-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tool-show-page .btn-tool-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: #667eea;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.tool-show-page .btn-tool-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.tool-show-page .btn-tool-primary svg {
    width: 20px;
    height: 20px;
}

.tool-show-page .btn-tool-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.tool-show-page .btn-tool-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.tool-show-page .tool-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tool-show-page .tool-tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
}

/* Sections */
.tool-show-page .tool-section {
    padding: 5rem 0;
}

.tool-show-page .tool-section:nth-child(even) {
    background: var(--color-gray-light);
}

.tool-show-page .content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.tool-show-page .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-charcoal);
}

.tool-show-page .section-title.centered {
    text-align: center;
}

.tool-show-page .section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--color-gray-muted);
    margin-bottom: 3rem;
}

/* Problem → Solution Section */
.tool-show-page .problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.tool-show-page .problem-box,
.tool-show-page .solution-box {
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
}

.tool-show-page .problem-box {
    background: #fee2e2;
    border: 2px solid #fecaca;
}

.tool-show-page .solution-box {
    background: #d1fae5;
    border: 2px solid #a7f3d0;
}

.tool-show-page .box-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-show-page .problem-icon {
    background: #fecaca;
    color: #991b1b;
}

.tool-show-page .solution-icon {
    background: #a7f3d0;
    color: #065f46;
}

.tool-show-page .box-icon svg {
    width: 32px;
    height: 32px;
}

.tool-show-page .problem-box h3,
.tool-show-page .solution-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tool-show-page .problem-box p,
.tool-show-page .solution-box p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-charcoal);
}

.tool-show-page .target-audience-box {
    padding: 2.5rem;
    background: var(--color-white);
    border-radius: 16px;
    border: 2px solid var(--color-gray-soft);
}

.tool-show-page .target-audience-box h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-charcoal);
}

.tool-show-page .audience-content {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--color-charcoal);
}

/* Features Section */
.tool-show-page .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tool-show-page .feature-card {
    padding: 2rem;
    background: var(--color-white);
    border-radius: 12px;
    border: 2px solid var(--color-gray-soft);
    transition: all 0.3s;
}

.tool-show-page .feature-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
    transform: translateY(-4px);
}

.tool-show-page .feature-icon {
    width: 48px;
    height: 48px;
    background: var(--color-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tool-show-page .feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.tool-show-page .feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-charcoal);
}

.tool-show-page .feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray-muted);
}

/* How It Works Section */
.tool-show-page .steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.tool-show-page .step-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 12px;
    border: 2px solid var(--color-gray-soft);
    text-align: center;
}

.tool-show-page .step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.tool-show-page .step-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-charcoal);
}

.tool-show-page .step-card p {
    font-size: 0.975rem;
    line-height: 1.6;
    color: var(--color-gray-muted);
}

.tool-show-page .step-arrow {
    font-size: 2rem;
    color: var(--color-accent);
    font-weight: 700;
}

/* Benefits Section */
.tool-show-page .benefits-list {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--color-charcoal);
    margin-bottom: 3rem;
}

.tool-show-page .before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.tool-show-page .before-box,
.tool-show-page .after-box {
    padding: 2rem;
    border-radius: 12px;
}

.tool-show-page .before-box {
    background: #fee2e2;
    border: 2px solid #fecaca;
}

.tool-show-page .after-box {
    background: #d1fae5;
    border: 2px solid #a7f3d0;
}

.tool-show-page .before-box h3,
.tool-show-page .after-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tool-show-page .scenario-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-charcoal);
}

/* Testimonials Section */
.tool-show-page .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tool-show-page .testimonial-card {
    padding: 2rem;
    background: var(--color-white);
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tool-show-page .quote-icon {
    width: 32px;
    height: 32px;
    color: var(--color-accent);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.tool-show-page .quote-icon svg {
    width: 100%;
    height: 100%;
}

.tool-show-page .testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
}

.tool-show-page .testimonial-author strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 0.25rem;
}

.tool-show-page .testimonial-author span {
    font-size: 0.875rem;
    color: var(--color-gray-muted);
}

/* Pricing Section */
.tool-show-page .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tool-show-page .pricing-card {
    padding: 2.5rem;
    background: var(--color-white);
    border-radius: 16px;
    border: 2px solid var(--color-gray-soft);
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.tool-show-page .pricing-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
    transform: translateY(-4px);
}

.tool-show-page .pricing-card.featured {
    border-color: var(--color-accent);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.tool-show-page .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background: var(--color-accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
}

.tool-show-page .pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-charcoal);
}

.tool-show-page .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.tool-show-page .plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.tool-show-page .plan-features li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--color-charcoal);
}

.tool-show-page .plan-features li svg {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.tool-show-page .plan-cta-btn {
    width: 100%;
    padding: 1rem;
    background: var(--color-accent);
    color: white;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.tool-show-page .plan-cta-btn:hover {
    background: var(--color-accent-hover);
}

/* FAQs Section */
.tool-show-page .faqs-list {
    max-width: 800px;
    margin: 0 auto;
}

.tool-show-page .faq-item {
    margin-bottom: 1rem;
    background: var(--color-white);
    border-radius: 12px;
    border: 2px solid var(--color-gray-soft);
    overflow: hidden;
}

.tool-show-page .faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.tool-show-page .faq-question:hover {
    color: var(--color-accent);
}

.tool-show-page .faq-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    transition: transform 0.3s;
}

.tool-show-page .faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.tool-show-page .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.tool-show-page .faq-answer.open {
    max-height: 500px;
}

.tool-show-page .faq-answer p {
    padding: 0 1.5rem 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-gray-muted);
}

/* Education & Cross-Promo Sections */
.tool-show-page .tutorials-box,
.tool-show-page .related-content-box,
.tool-show-page .onboarding-content,
.tool-show-page .trust-content {
    padding: 2rem;
    background: var(--color-white);
    border-radius: 12px;
    border: 2px solid var(--color-gray-soft);
    margin-bottom: 2rem;
}

.tool-show-page .tutorials-box h3,
.tool-show-page .related-content-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-charcoal);
}

.tool-show-page .tutorials-content,
.tool-show-page .related-content-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--color-charcoal);
}

.tool-show-page .cross-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tool-show-page .promo-card {
    padding: 2rem;
    background: var(--color-white);
    border-radius: 12px;
    border: 2px solid var(--color-gray-soft);
    text-align: center;
    transition: all 0.3s;
}

.tool-show-page .promo-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
}

.tool-show-page .promo-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-show-page .promo-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.tool-show-page .promo-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-charcoal);
}

.tool-show-page .promo-card p {
    font-size: 1rem;
    color: var(--color-gray-muted);
    margin-bottom: 1.5rem;
}

.tool-show-page .promo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.tool-show-page .promo-link:hover {
    gap: 0.75rem;
}

/* Support Section */
.tool-show-page .support-box {
    padding: 3rem;
    background: var(--color-charcoal);
    color: white;
    border-radius: 16px;
    text-align: center;
}

.tool-show-page .support-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tool-show-page .support-box > p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.tool-show-page .support-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.tool-show-page .support-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.tool-show-page .support-method:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.tool-show-page .support-method svg {
    width: 32px;
    height: 32px;
}

/* Waitlist Section */
.tool-show-page .waitlist-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
    border-radius: 16px;
    text-align: center;
    color: white;
}

.tool-show-page .waitlist-box h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tool-show-page .waitlist-box > p {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.tool-show-page .waitlist-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tool-show-page .waitlist-input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.tool-show-page .waitlist-btn {
    padding: 1rem 2rem;
    background: var(--color-charcoal);
    color: white;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.tool-show-page .waitlist-btn:hover {
    background: var(--color-charcoal-dark);
}

.tool-show-page .privacy-note {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* --- New AppSumo-style Layout --- */

.tool-show-page {
    background-color: #f8fafc;
    padding-bottom: 5rem;
}

/* Sticky Sub-Nav */
.tool-sub-nav {
    position: sticky;
    top: 70px; /* Adjust based on main navbar height */
    z-index: 100;
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.75rem 0;
    margin-bottom: 2rem;
}

.tool-sub-nav .sub-nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tool-sub-nav .sub-nav-links a {
    text-decoration: none;
    color: #64748b;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.tool-sub-nav .sub-nav-links a:hover,
.tool-sub-nav .sub-nav-links a.active {
    color: #2563eb;
}

/* Main Layout Grid */
.tool-main-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: start;
}

/* Left Column Content */
.tool-content-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tool-section-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 2.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.card-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

/* Media Section */
.tool-media-section {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    margin-bottom: 1rem;
}

.tool-main-image {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.tool-intro-text {
    padding: 2.5rem;
}

.tool-intro-text .tool-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #0f172a;
}

.tool-intro-text .tool-value-statement {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.tool-description-full {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #334155;
}

/* Problem/Solution Grid */
.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.problem-box, .solution-box {
    padding: 1.5rem;
    border-radius: 8px;
}

.problem-box { background: #fff1f2; border: 1px solid #fecdd3; }
.solution-box { background: #f0fdf4; border: 1px solid #bbf7d0; }

.problem-box h3, .solution-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Features List Detailed */
.features-list-detailed {
    display: grid;
    gap: 1.5rem;
}

.feature-item-detailed {
    display: flex;
    gap: 1rem;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 50%;
    margin-top: 0.6rem;
    flex-shrink: 0;
}

.feature-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Steps Vertical */
.steps-vertical {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item-vertical {
    display: flex;
    gap: 1.5rem;
}

.step-number-circle {
    width: 32px;
    height: 32px;
    background: #1e293b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* Sticky Sidebar (Buy Box) */
.tool-sidebar-column {
    position: sticky;
    top: 130px; /* sub-nav height + spacing */
}

.sticky-buy-box {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.buy-box-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.tool-status-pill {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.featured-pill {
    background: #fef3c7;
    color: #92400e;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.buy-box-price-area {
    margin-bottom: 2rem;
}

.main-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
}

.price-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

.btn-buy-primary {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #2563eb;
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.btn-buy-primary:hover {
    background: #1d4ed8;
}

.money-back-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #475569;
}

.icon-shield { width: 16px; height: 16px; color: #10b981; }

.buy-box-features {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.buy-box-features h4 {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-list li {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    color: #334155;
}

.icon-check { width: 18px; height: 18px; color: #10b981; flex-shrink: 0; }

.buy-box-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.sidebar-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Sidebar Promo */
.sidebar-promo-box {
    margin-top: 1.5rem;
    background: #1e293b;
    color: white;
    border-radius: 12px;
    padding: 1.5rem;
}

.sidebar-promo-box h4 { margin-bottom: 1rem; }

.promo-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    text-decoration: none;
    color: white;
    margin-bottom: 0.75rem;
    transition: background 0.2s;
}

.promo-item:hover { background: rgba(255,255,255,0.2); }

/* Waitlist Section Modern */
.tool-waitlist-section {
    padding: 5rem 0;
}

.waitlist-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 4rem;
    border-radius: 24px;
    text-align: center;
}

.waitlist-form-modern {
    max-width: 500px;
    margin: 2rem auto 0;
}

.waitlist-input-group {
    display: flex;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem;
    border-radius: 12px;
}

.waitlist-input-group input {
    flex: 1;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    outline: none;
}

.waitlist-input-group button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .tool-main-layout {
        grid-template-columns: 1fr;
    }
    
    .tool-sidebar-column {
        position: static;
        order: -1; /* Move sidebar to top on mobile if needed, or keep it below hero */
    }
    
    .tool-sub-nav {
        top: 60px;
    }
}

@media (max-width: 768px) {
    .tool-intro-text .tool-title { font-size: 2rem; }
    .problem-solution-grid { grid-template-columns: 1fr; }
    .waitlist-card { padding: 2rem; }
    .waitlist-input-group { flex-direction: column; }
}
