/**
 * Instagram Chat Link Generator - CreatorFlow Free Tool
 * Brand Colors: #000000 (black), #d1fe17 (lime green)
 * NO box-shadows, NO gradients
 */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Stack Sans Headline', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings use Stack Sans Headline per brand guidelines */
h1, h2, h3, h4, h5, h6,
.tool-hero__title,
.tool-card__title,
.tool-info__title,
.tool-info__subtitle,
.info-step__title,
.info-step__number,
.use-cases__title,
.qr-section__title,
.tool-next-step__title,
.next-step-feature__title,
.tool-comparison__title,
.comparison-column__title,
.tool-faq__title,
.faq-question,
.tool-cta__title,
.tool-tab,
.tool-tab__text,
.tool-tab__number {
    font-family: 'Stack Sans Headline', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Tool Container */
.tool-container {
    min-height: 100vh;
    /* Padding-top is handled by body.has-announcement-banner in creatorflow-modern.css */
}

/* Hero Section */
.tool-hero {
    background: #ffffff;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

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

.tool-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f9fafb;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.instagram-icon {
    color: #E1306C; /* Instagram brand color */
}

.tool-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #000000;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.tool-hero__description {
    font-size: 1.125rem;
    color: #374151;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.tool-hero__share {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f9fafb;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6b7280;
}

.share-btn:hover {
    background: #d1fe17;
    color: #000000;
}

/* Tool Section */
.tool-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.tool-section__container {
    max-width: 900px;
    margin: 0 auto;
}

/* Tabs */
.tool-tabs {
    display: flex;
    gap: 1rem;
    margin: 0 auto 2rem;
    border-bottom: 2px solid #e5e7eb;
    max-width: 700px;
}

.tool-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

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

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

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

.tool-tab__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #f9fafb;
    color: #6b7280;
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
}

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

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

.tool-content--active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tool Card */
.tool-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    max-width: 700px;
    margin: 0 auto;
}

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

/* Form */
.tool-form {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.form-group {
    margin-bottom: 2rem;
}

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

.required {
    color: #ef4444;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    font-size: 1rem;
    color: #000000;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #d1fe17;
    /* NO box-shadow per brand guidelines */
}

.form-input.input-error {
    border-color: #ef4444;
}

.form-hint {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.form-error {
    font-size: 0.875rem;
    color: #ef4444;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-family: inherit;
}

.btn--primary {
    background: #000000;
    color: #ffffff;
    width: 100%;
    justify-content: center;
    font-size: 1.0625rem;
    padding: 1rem 1.5rem;
    font-weight: 700;
}

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

.btn--primary:focus {
    outline: none;
    /* NO box-shadow per brand guidelines */
}

.btn--secondary {
    background: #000000;
    color: #ffffff;
}

.btn--secondary:hover {
    background: #d1fe17;
    color: #000000;
}

.btn--outline {
    background: transparent;
    color: #374151;
    border: 2px solid #e5e7eb;
}

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

.btn--cta {
    background: #000000;
    color: #ffffff;
}

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

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Results */
.result-group {
    margin-bottom: 2rem;
}

.result-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f9fafb;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid #d1fe17;
}

.result-box__link {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    word-break: break-all;
}

.result-box__copy {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.result-box__copy:hover {
    border-color: #d1fe17;
    background: #d1fe17;
    color: #000000;
}

.result-box__copy:focus {
    outline: none;
    /* NO box-shadow per brand guidelines */
}

.result-box__copy.copied {
    background: #10b981;
    border-color: #10b981;
    color: #ffffff;
}

.copy-icon {
    width: 18px;
    height: 18px;
}

.result-hint {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Result Columns */
.result-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 0;
}

/* Use Cases */
.use-cases {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.use-cases__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.use-cases__list {
    list-style: none;
}

.use-case {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.5;
}

.use-case:last-child {
    margin-bottom: 0;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: #000000;
    flex-shrink: 0;
    margin-top: 2px;
}

/* QR Section */
.qr-section {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
}

.qr-icon {
    margin-bottom: 1rem;
    color: #6b7280;
}

.qr-section__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.qr-code-container {
    background: #ffffff;
    padding: 1rem;
    border-radius: 0.5rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.qr-code-container canvas {
    display: block;
}

.qr-hint {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

.qr-error {
    color: #ef4444;
    font-size: 0.875rem;
}

/* Result Actions */
.result-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.result-actions .btn {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
}

/* Tool Info Section (SEO Content) */
.tool-info {
    background: #ffffff;
    padding: 3.5rem 2rem;
}

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

.tool-info__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-align: center;
    line-height: 1.2;
}

.tool-info__subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 700;
    color: #000000;
    margin: 3rem 0 1.5rem;
    text-align: left;
    line-height: 1.3;
}

.tool-info__content p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.25rem;
}

.tool-info__content code {
    background: #f9fafb;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9375rem;
    color: #6b46c1;
}

.tool-info__steps {
    margin: 2rem 0 3rem;
    position: relative;
}

/* Connecting line between steps (desktop only) */
.tool-info__steps::before {
    content: '';
    position: absolute;
    left: 36px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: linear-gradient(to bottom, #d1fe17 0%, #d1fe17 50%, transparent 50%, transparent 100%);
    background-size: 2px 20px;
    z-index: 0;
}

.info-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.info-step:hover {
    border-color: #d1fe17;
    transform: translateX(8px);
}

.info-step:last-child {
    margin-bottom: 0;
}

.info-step__icon {
    position: relative;
    flex-shrink: 0;
}

.info-step__icon svg {
    position: absolute;
    top: 11px;
    left: 10px;
    color: #000000;
    z-index: 2;
}

.info-step__number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #d1fe17;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.info-step__content {
    flex: 1;
}

.info-step__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.info-step__content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    margin: 0;
}

/* Benefits Grid - Visual Card Layout */
.tool-info__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

.benefit-card {
    background: #f9fafb;
    padding: 1.75rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-card:hover {
    border-color: #d1fe17;
    background: #ffffff;
    transform: translateY(-4px);
}

.benefit-card__icon {
    width: 56px;
    height: 56px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #d1fe17;
    flex-shrink: 0;
}

.benefit-card__icon svg {
    color: #000000;
    stroke-width: 2;
}

.benefit-card__content {
    flex: 1;
}

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

.benefit-card__text {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.tool-info__closing {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #374151;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 0.75rem;
    border-left: 4px solid #d1fe17;
}

.tool-info__closing strong {
    color: #000000;
}

/* ============================================
   USE CASE SCENARIOS (Mobile-First)
   ============================================ */

.use-case-scenarios {
    margin: 3rem 0;
}

.use-case-scenario {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    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.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.use-case-scenario__text {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 0.75rem;
}

.use-case-scenario__text strong {
    color: #000000;
    font-weight: 600;
}

.use-case-scenario__result {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #059669;
    font-weight: 600;
    padding-left: 1rem;
    border-left: 3px solid #d1fe17;
    margin-top: 1rem;
}

.use-case-scenario__result strong {
    color: #047857;
}

/* Tablet: 640px and up */
@media (min-width: 640px) {
    .use-case-scenario {
        padding: 2rem;
    }

    .use-case-scenario__title {
        font-size: 1.375rem;
    }
}

/* Desktop: 1024px and up */
@media (min-width: 1024px) {
    .use-case-scenarios {
        margin: 4rem 0;
    }

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

    .use-case-scenario__title {
        font-size: 1.5rem;
    }

    .use-case-scenario__text {
        font-size: 1.0625rem;
    }
}

/* ============================================
   BEST PRACTICES (Mobile-First)
   ============================================ */

.best-practices-list {
    margin: 3rem 0;
}

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

.best-practice-item:hover {
    border-color: #d1fe17;
    transform: translateX(4px);
}

.best-practice-item__number {
    width: 40px;
    height: 40px;
    background: #d1fe17;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Stack Sans Headline', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.best-practice-item__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

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

.best-practice-item__content em {
    font-style: italic;
    color: #6b7280;
}

/* Tablet: 640px and up */
@media (min-width: 640px) {
    .best-practice-item {
        gap: 1.25rem;
        padding: 1.75rem;
    }

    .best-practice-item__number {
        width: 48px;
        height: 48px;
        font-size: 1.375rem;
    }

    .best-practice-item__title {
        font-size: 1.1875rem;
    }

    .best-practice-item__content p {
        font-size: 1rem;
    }
}

/* Desktop: 1024px and up */
@media (min-width: 1024px) {
    .best-practices-list {
        margin: 4rem 0;
    }

    .best-practice-item {
        gap: 1.5rem;
        padding: 2rem;
        margin-bottom: 2.5rem;
    }

    .best-practice-item__number {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }

    .best-practice-item__title {
        font-size: 1.25rem;
    }

    .best-practice-item__content p {
        font-size: 1.0625rem;
    }
}

/* CTA Section - Match Homepage Final CTA */
.tool-cta {
    background: #000000;
    padding: 60px 0;
    text-align: center;
    border-radius: 32px;
    margin: 40px auto;
    max-width: 1400px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-cta__container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.tool-cta__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.tool-cta__description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tool-cta__microcopy {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tool-cta__features-mini {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-feature-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.cta-feature-mini svg {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
}

/* Next Step Section (Lead-Gen CTA - Hidden by default) */
.tool-next-step {
    background: #ffffff;
    padding: 3.5rem 2rem;
    text-align: center;
    border-top: 1px solid #e5e7eb;
}

.tool-next-step__container {
    max-width: 900px;
    margin: 0 auto;
}

.tool-next-step__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #d1fe17;
    color: #000000;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.tool-next-step__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.tool-next-step__description {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tool-next-step__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.next-step-feature {
    display: flex;
    gap: 1rem;
    text-align: left;
}

.next-step-feature__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #d1fe17;
}

.next-step-feature__icon svg {
    width: 24px;
    height: 24px;
    color: #000000;
}

.next-step-feature__content {
    flex: 1;
}

.next-step-feature__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.next-step-feature__text {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

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

/* Comparison Section */
.tool-comparison {
    background: #ffffff;
    padding: 3.5rem 2rem;
}

.tool-comparison__container {
    max-width: 1000px;
    margin: 0 auto;
}

.tool-comparison__header {
    text-align: center;
    margin-bottom: 3rem;
}

.tool-comparison__badge {
    display: inline-block;
    background: #f9fafb;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.tool-comparison__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #000000;
    letter-spacing: -0.02em;
    text-align: center;
    line-height: 1.2;
}

.comparison-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.comparison-column {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.comparison-column--automated {
    background: #ffffff;
    border-color: #d1fe17;
    border-width: 3px;
}

.comparison-column__header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.comparison-column__header--featured {
    border-bottom-color: #d1fe17;
}

.comparison-column__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.comparison-column__subtitle {
    font-size: 0.9375rem;
    color: #6b7280;
    margin: 0;
}

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

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

.comparison-item:last-child {
    margin-bottom: 0;
}

.comparison-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-icon--check {
    color: #10b981;
}

.comparison-icon--cross {
    color: #ef4444;
}

.comparison-column .btn--cta {
    width: 100%;
    border-top: 2px solid #d1fe17;
}

/* FAQ Section (AEO Optimized) */
.tool-faq {
    background: #ffffff;
    padding: 3.5rem 2rem;
}

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

.tool-faq__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #000000;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

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

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

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

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

.faq-question:hover {
    color: #000000;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: #6b7280;
    transition: transform 0.2s ease;
}

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

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

.faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
}

.faq-answer p {
    margin: 0 0 1rem 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer code {
    background: #f9fafb;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9375rem;
    color: #6b46c1;
}

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

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

/* Large CTA Button */
.btn--cta-large {
    background: #000000;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    font-weight: 700;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .tool-hero {
        padding: 1.75rem 1.5rem;
    }

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

    .tool-section {
        padding: 3rem 1.5rem;
    }

    .tool-card {
        padding: 2rem 1.5rem;
    }

    .tool-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .tool-tabs::-webkit-scrollbar {
        display: none;
    }

    .tool-tab {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
        flex-shrink: 0;
    }

    .tool-tab__text {
        display: none;
    }

    .tool-tab--active .tool-tab__text {
        display: inline;
    }

    .result-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .result-box {
        flex-direction: column;
        align-items: stretch;
    }

    .result-box__copy {
        justify-content: center;
    }

    .result-actions {
        margin-top: 1.25rem;
        gap: 0.625rem;
    }

    .result-actions .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9375rem;
    }

    .tool-cta {
        margin: 30px auto;
        max-width: calc(100% - 60px);
        padding: 40px 0;
        border-radius: 24px;
    }

    .tool-cta__container {
        padding: 0 30px;
    }

    .tool-cta__description {
        font-size: 1.0625rem;
    }

    .tool-cta__microcopy {
        flex-direction: column;
        gap: 0.25rem;
    }

    .tool-info {
        padding: 2.5rem 1.5rem;
    }

    .tool-next-step {
        padding: 2.5rem 1.5rem;
    }

    .tool-comparison {
        padding: 2.5rem 1.5rem;
    }

    .tool-faq {
        padding: 2.5rem 1.5rem;
    }

    .comparison-table {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tool-next-step__features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tool-info__subtitle {
        margin: 2rem 0 1rem;
    }

    /* Hide connecting line on mobile */
    .tool-info__steps::before {
        display: none;
    }

    .info-step {
        gap: 1rem;
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .info-step:hover {
        transform: none;
    }

    .info-step__icon svg {
        width: 24px;
        height: 24px;
        top: 9px;
        left: 8px;
    }

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

    .tool-info__benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-card:hover {
        transform: translateY(-2px);
    }

    .benefit-card__icon {
        width: 48px;
        height: 48px;
    }

    .benefit-card__icon svg {
        width: 28px;
        height: 28px;
    }
}

/* iPhone 14 and smaller (390px-430px range) */
@media (max-width: 430px) {
    .tool-hero {
        padding: 1.5rem 1.25rem;
    }

    .tool-card {
        padding: 1.5rem 1.25rem;
    }

    .use-cases,
    .qr-section {
        padding: 1rem;
    }

    .tool-info {
        padding: 2rem 1.25rem;
    }

    .tool-next-step {
        padding: 2rem 1.25rem;
    }

    .tool-comparison {
        padding: 2rem 1.25rem;
    }

    .tool-faq {
        padding: 2rem 1.25rem;
    }

    .info-step {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .info-step__icon {
        display: flex;
        align-items: center;
    }

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

    .benefit-card {
        padding: 1.25rem;
    }

    .benefit-card__icon {
        width: 44px;
        height: 44px;
    }

    .benefit-card__icon svg {
        width: 24px;
        height: 24px;
    }

    .tool-cta {
        margin: 20px;
        max-width: calc(100% - 40px);
        border-radius: 20px;
        padding: 30px 0;
    }

    .tool-cta__container {
        padding: 0 20px;
    }

    .tool-cta__description {
        font-size: 1rem;
    }
}
