/**
 * Screenshot Background Generator
 * CreatorFlow Free Tool
 *
 * Brand Guidelines:
 * - Primary dark: #000000 (ONLY this, no other dark shades)
 * - Lime green accent: #d1fe17 (use sparingly)
 * - NO box-shadows (except box-shadow: none to reset)
 * - Mobile-first responsive design
 * - Poppins for headings
 */

/* ========================================
   BASE STYLES & TYPOGRAPHY
   ======================================== */

.tool-hero,
.tool-tabs,
.tool-info,
.tool-next-step,
.tool-comparison,
.tool-faq,
.tool-cta {
    font-family: 'neusanstrial', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

h1, h2, h3, h4, h5, h6,
.tool-hero__title,
.tool-info__title,
.tool-info__subtitle,
.control-section__title,
.faq-title,
.faq-question,
.comparison-title,
.next-step__title,
.tool-cta__title,
.info-step__title,
.best-practice-item__title,
.use-case-scenario__title {
    font-family: 'neusanstrial', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ========================================
   SECTION 1: HERO
   ======================================== */

.tool-hero {
    /* NOTE: NO border-bottom - removed per user request */
    background: #ffffff;
    padding: 11rem 0 1.5rem;
    text-align: center;
}

.tool-hero__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.tool-hero__badge {
    display: inline-block;
    background: #d1fe17;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.tool-hero__title {
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    font-weight: 800;
    color: #000000 !important;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.tool-hero__description {
    font-size: 1rem;
    color: #374151;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile */
@media (max-width: 430px) {
    .tool-hero {
        padding: 7rem 0 0.75rem;
    }

    .tool-hero__title {
        font-size: 1.25rem;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .tool-hero {
        padding: 8rem 0 1rem;
    }
}

/* Tablet and up */
@media (min-width: 640px) {
    .tool-hero__container {
        padding: 0 2.5rem;
    }

    .tool-hero__description {
        font-size: 1.125rem;
    }
}

/* ========================================
   SECTION 2: TOOL INTERFACE (Tabs)
   ======================================== */

.tool-tabs {
    background: #ffffff;
    padding: 2rem 0;
}

.tool-tabs__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Tab Navigation */
.tool-tabs__nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tool-tab {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
    font-family: 'neusanstrial', sans-serif;
}

.tool-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: background 0.2s ease;
}

.tool-tab:hover:not(.tool-tab--disabled) {
    color: #000000;
}

.tool-tab--active {
    color: #000000;
}

.tool-tab--active::after {
    background: #d1fe17;
}

.tool-tab--disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Tab Content */
.tool-content {
    display: none;
}

.tool-content--active {
    display: block;
}

/* Tablet */
@media (min-width: 640px) {
    .tool-tabs {
        padding: 3rem 0;
    }

    .tool-tabs__container {
        padding: 0 2.5rem;
    }

    .tool-tab {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .tool-tabs {
        padding: 4rem 0;
    }
}

/* ========================================
   UPLOAD AREA (Tab 1)
   ======================================== */

.upload-area {
    max-width: 700px;
    margin: 0 auto;
}

.drop-zone {
    border: 2px dashed #d1d5db;
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
}

.drop-zone:hover,
.drop-zone--active {
    border-color: #d1fe17;
    background: #f9fafb;
}

.drop-zone__icon {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.drop-zone__icon svg {
    width: 48px;
    height: 48px;
}

.drop-zone__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.drop-zone__text {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.drop-zone__formats {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Tablet */
@media (min-width: 640px) {
    .drop-zone {
        padding: 4rem 3rem;
    }

    .drop-zone__title {
        font-size: 1.25rem;
    }
}

/* ========================================
   CUSTOMIZE LAYOUT (Tab 2)
   ======================================== */

.customize-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Preview Area */
.preview-area {
    order: 1;
}

.preview-container {
    background: #f3f4f6;
    border-radius: 1rem;
    padding: 1rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preview-canvas {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px;
    border-radius: 0;
    max-width: 100%;
    transition: all 0.3s ease;
}

.preview-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-image {
    max-width: 100%;
    max-height: 400px;
    height: auto;
    border-radius: 16px;
    display: block;
    transition: all 0.3s ease;
}

.preview-image--shadow {
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.25));
}

/* Controls Panel */
.controls-panel {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.control-section {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.25rem;
}

.control-section__title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
}

.control-group {
    margin-bottom: 1.25rem;
}

.control-group:last-child {
    margin-bottom: 0;
}

.control-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

/* Gradient Presets */
.gradient-presets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.gradient-preset {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 0.5rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.gradient-preset:nth-child(1) { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.gradient-preset:nth-child(2) { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.gradient-preset:nth-child(3) { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.gradient-preset:nth-child(4) { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.gradient-preset:nth-child(5) { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.gradient-preset:nth-child(6) { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
.gradient-preset:nth-child(7) { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); }
.gradient-preset:nth-child(8) { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
.gradient-preset:nth-child(9) { background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%); }
.gradient-preset:nth-child(10) { background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%); }
.gradient-preset:nth-child(11) { background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%); }
.gradient-preset:nth-child(12) { background: linear-gradient(135deg, #fddb92 0%, #d1fdff 100%); }
.gradient-preset:nth-child(13) { background: linear-gradient(135deg, #000000 0%, #434343 100%); }
.gradient-preset:nth-child(14) { background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); }
.gradient-preset:nth-child(15) { background: #ffffff; border-color: #e5e7eb; }
.gradient-preset:nth-child(16) { background: #000000; }

.gradient-preset:hover {
    transform: scale(1.05);
}

.gradient-preset--active {
    border-color: #d1fe17;
}

/* Custom Gradient Colors */
.custom-gradient-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: flex-end;
}

.color-input-group {
    flex: 1;
    min-width: 80px;
}

.color-label {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.color-input {
    width: 100%;
    height: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    cursor: pointer;
    padding: 2px;
}

.apply-gradient-btn,
.apply-solid-btn {
    padding: 0.625rem 1rem;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.apply-gradient-btn:hover,
.apply-solid-btn:hover {
    background: #d1fe17;
    color: #000000;
}

/* Solid Color */
.solid-color-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.solid-color-row .color-input {
    flex: 1;
    max-width: 100px;
}

/* Sliders */
.slider-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.slider-input {
    flex: 1;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: #e5e7eb;
    border-radius: 3px;
    outline: none;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #000000;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-input::-webkit-slider-thumb:hover {
    background: #d1fe17;
}

.slider-input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #000000;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.slider-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    min-width: 50px;
    text-align: right;
}

/* Checkbox */
.checkbox-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-input {
    width: 20px;
    height: 20px;
    accent-color: #d1fe17;
    cursor: pointer;
}

.checkbox-label {
    font-size: 0.875rem;
    color: #374151;
    cursor: pointer;
}

/* Size Presets */
.size-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.size-preset {
    padding: 0.5rem 0.75rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-preset:hover {
    border-color: #d1fe17;
}

.size-preset--active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

/* Export Section */
.export-section {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.export-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.export-btn {
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
}

.export-btn:hover {
    border-color: #d1fe17;
    color: #000000;
}

.export-btn--primary {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.export-btn--primary:hover {
    background: #d1fe17;
    color: #000000;
    border-color: #d1fe17;
}

.export-btn svg {
    flex-shrink: 0;
}

.edit-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-btn:hover {
    border-color: #d1fe17;
    color: #000000;
}

/* Tablet - Side by side layout */
@media (min-width: 768px) {
    .customize-layout {
        flex-direction: row;
        gap: 2rem;
    }

    .preview-area {
        order: 1;
        flex: 1;
        min-width: 0;
    }

    .controls-panel {
        order: 2;
        width: 320px;
        flex-shrink: 0;
    }

    .preview-container {
        min-height: 400px;
        position: sticky;
        top: 100px;
    }

    .gradient-presets {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .controls-panel {
        width: 360px;
    }

    .preview-container {
        min-height: 500px;
    }

    .preview-image {
        max-height: 500px;
    }
}

/* Large Desktop */
@media (min-width: 1280px) {
    .controls-panel {
        width: 400px;
    }
}

/* ========================================
   SECTION 3: SEO CONTENT (TOOL INFO)
   ======================================== */

.tool-info {
    background: #ffffff;
    padding: 3rem 0;
}

.tool-info__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.tool-info__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.tool-info__intro {
    font-size: 1rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.tool-info__subtitle {
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    font-weight: 700;
    color: #000000;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.tool-info p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tool-info__closing {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

/* Benefits List */
.info-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.info-benefit {
    font-size: 1rem;
    color: #374151;
    line-height: 1.7;
    padding: 0.625rem 0;
    padding-left: 0;
}

/* Steps */
.info-steps {
    margin: 2rem 0;
}

.info-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.info-step__number {
    width: 40px;
    height: 40px;
    background: #d1fe17;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'neusanstrial', sans-serif;
}

.info-step__content {
    flex: 1;
}

.info-step__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.375rem;
}

.info-step__description {
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* Use Case Scenarios */
.use-case-scenarios {
    margin: 2rem 0;
}

.use-case-scenario {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.use-case-scenario:hover {
    border-color: #d1fe17;
    background: #ffffff;
}

.use-case-scenario__badge {
    display: inline-block;
    background: #d1fe17;
    color: #000000;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.use-case-scenario__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.use-case-scenario__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #374151;
    margin: 0;
}

/* Best Practices */
.best-practices-list {
    margin: 2rem 0;
}

.best-practice-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    background: #ffffff;
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.best-practice-item:hover {
    border-color: #d1fe17;
}

.best-practice-item__number {
    width: 36px;
    height: 36px;
    background: #d1fe17;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'neusanstrial', sans-serif;
}

.best-practice-item__content {
    flex: 1;
}

.best-practice-item__title {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.375rem;
}

.best-practice-item__content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #374151;
    margin: 0;
}

/* Tablet */
@media (min-width: 640px) {
    .tool-info {
        padding: 4rem 0;
    }

    .tool-info__container {
        padding: 0 2.5rem;
    }

    .info-step__number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .best-practice-item {
        padding: 1.5rem;
    }

    .best-practice-item__number {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .tool-info {
        padding: 5rem 0;
    }

    .use-case-scenario {
        padding: 2rem;
    }

    .best-practice-item {
        padding: 1.75rem;
    }
}

/* ========================================
   SECTION 4: NEXT STEP CTA (Hidden)
   ======================================== */

.tool-next-step {
    background: #ffffff;
    padding: 3rem 0;
    border-top: 1px solid #e5e7eb;
}

.tool-next-step__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.tool-next-step__badge {
    display: inline-block;
    background: #d1fe17;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.tool-next-step__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.tool-next-step__description {
    font-size: 1rem;
    color: #374151;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.next-step-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.next-step-feature {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.next-step-feature:hover {
    border-color: #d1fe17;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.next-step__cta-button {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.next-step__cta-button:hover {
    background: #d1fe17;
    color: #000000;
}

.next-step__microcopy {
    font-size: 0.8125rem;
    color: #6b7280;
    margin-top: 1rem;
}

/* Tablet */
@media (min-width: 640px) {
    .tool-next-step {
        padding: 4rem 0;
    }

    .tool-next-step__container {
        padding: 0 2.5rem;
    }

    .next-step-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .tool-next-step {
        padding: 5rem 0;
    }
}

/* ========================================
   SECTION 5: COMPARISON
   ======================================== */

.tool-comparison {
    background: #ffffff;
    padding: 3rem 0;
    border-top: 1px solid #e5e7eb;
}

.tool-comparison__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.comparison-badge {
    display: inline-block;
    background: #f3f4f6;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
}

.comparison-column {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
}

.comparison-column--automated {
    border: 2px solid #d1fe17;
    background: #fafff0;
}

.comparison-column__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
}

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

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.5;
}

.comparison-icon {
    flex-shrink: 0;
    font-size: 1rem;
}

.comparison-cta {
    display: block;
    background: #000000;
    color: #ffffff;
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    margin-top: 1.5rem;
    transition: all 0.2s ease;
}

.comparison-cta:hover {
    background: #d1fe17;
    color: #000000;
}

.comparison-microcopy {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
    margin-top: 0.75rem;
}

/* Tablet */
@media (min-width: 640px) {
    .tool-comparison {
        padding: 4rem 0;
    }

    .tool-comparison__container {
        padding: 0 2.5rem;
    }

    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-column {
        padding: 2rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .tool-comparison {
        padding: 5rem 0;
    }
}

/* ========================================
   SECTION 6: FAQ
   ======================================== */

.tool-faq {
    background: #ffffff;
    padding: 3rem 0;
    border-top: 1px solid #e5e7eb;
}

.tool-faq__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.faq-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.3;
}

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

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #d1fe17;
}

.faq-item[open] {
    border-color: #d1fe17;
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.4;
}

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

.faq-question::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: #6b7280;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.7;
    margin: 0;
}

.faq-answer a {
    color: #000000;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-answer a:hover {
    color: #d1fe17;
}

/* Tablet */
@media (min-width: 640px) {
    .tool-faq {
        padding: 4rem 0;
    }

    .tool-faq__container {
        padding: 0 2.5rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .tool-faq {
        padding: 5rem 0;
    }
}

/* ========================================
   SECTION 7: FINAL CTA
   ======================================== */

.tool-cta {
    background: #000000;
    padding: 3rem 1.5rem;
    text-align: center;
    border-radius: 24px;
    margin: 2rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-cta__container {
    max-width: 800px;
    margin: 0 auto;
}

.tool-cta__title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.tool-cta__description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.tool-cta__features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

.cta-feature {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.tool-cta__button {
    display: inline-block;
    background: #d1fe17;
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tool-cta__button:hover {
    background: #ffffff;
    color: #000000;
}

.tool-cta__microcopy {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

/* Tablet */
@media (min-width: 640px) {
    .tool-cta {
        padding: 4rem 2.5rem;
        margin: 2.5rem 1.5rem;
        border-radius: 28px;
    }

    .tool-cta__features {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .tool-cta {
        padding: 5rem 3rem;
        margin: 3rem 2rem;
        border-radius: 32px;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

/* Loading State */
.loading {
    pointer-events: none;
    opacity: 0.7;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 2px solid #e5e7eb;
    border-top-color: #d1fe17;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Hide on mobile */
@media (max-width: 639px) {
    .hide-mobile {
        display: none !important;
    }
}

/* Hide on desktop */
@media (min-width: 640px) {
    .hide-desktop {
        display: none !important;
    }
}
