/**
 * CreatorFlow Free Tools - Base Styles
 * =====================================
 * Include this CSS file BEFORE any tool-specific CSS
 * 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: 'neusanstrial', -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 Poppins - Global consistency */
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-tab,
.tool-tab__text,
.tool-tab__number {
    font-family: 'neusanstrial', sans-serif !important;
}

/* Ensure black color for headings on light backgrounds */
.tool-hero__title,
.tool-card__title,
.tool-info__title,
.tool-info__subtitle,
.info-step__title,
.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 {
    color: #000000 !important;
}

/* CTA title stays white on dark background */
.tool-cta__title {
    font-family: 'neusanstrial', sans-serif !important;
    color: #ffffff !important;
}

/* Tool Container */
.tool-container {
    min-height: 100vh;
    overflow-x: hidden;
}

/* Hero Section */
/* Hero padding must account for header (announcement banner + navbar ≈ 146px) */
/* NOTE: NO border-bottom on .tool-hero - user explicitly requested this */
.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 3rem;
}

.tool-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0;
    border-radius: 0;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.instagram-icon {
    color: #E1306C;
}

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

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

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

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

/* 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;
}

.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 - Matching Homepage Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
    text-decoration: none;
    font-family: inherit;
}

.btn--primary {
    background: #000000;
    color: #ffffff;
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 0.875rem 2rem !important;
    border-radius: 12px !important;
    font-weight: 600;
    box-shadow: inset 0px -3px rgba(255, 255, 255, 0.15);
}

.btn--primary:hover {
    background: #d1fe17;
    color: #000000;
    box-shadow: inset 0px -3px rgba(0, 0, 0, 0.25);
}

.btn--primary:active {
    box-shadow: inset 0px -1px rgba(0, 0, 0, 0.2);
    transform: translateY(1px);
}

.btn--secondary {
    background: #000000;
    color: #ffffff;
    box-shadow: inset 0px -3px rgba(255, 255, 255, 0.15);
}

.btn--secondary:hover {
    background: #d1fe17;
    color: #000000;
    box-shadow: inset 0px -3px rgba(0, 0, 0, 0.25);
}

.btn--secondary:active {
    box-shadow: inset 0px -1px rgba(0, 0, 0, 0.2);
    transform: translateY(1px);
}

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

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

.btn--cta {
    background: #000000;
    color: #ffffff;
    box-shadow: inset 0px -3px rgba(255, 255, 255, 0.15);
}

.btn--cta:hover {
    background: #d1fe17;
    color: #000000;
    box-shadow: inset 0px -3px rgba(0, 0, 0, 0.25);
}

.btn--cta:active {
    box-shadow: inset 0px -1px rgba(0, 0, 0, 0.2);
    transform: translateY(1px);
}

.btn--cta-large {
    background: #000000;
    color: #ffffff;
    padding: 0.875rem 2rem !important;
    border-radius: 12px !important;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: inset 0px -3px rgba(255, 255, 255, 0.15);
}

.btn--cta-large:hover {
    background: #d1fe17;
    color: #000000;
    box-shadow: inset 0px -3px rgba(0, 0, 0, 0.25);
}

.btn--cta-large:active {
    box-shadow: inset 0px -1px rgba(0, 0, 0, 0.2);
    transform: translateY(1px);
}

.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.5rem;
    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.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 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 0;
}

/* 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 0;
}

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

.tool-info__title {
    font-size: clamp(1.375rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.25rem;
    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 */
.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;
}

.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;
}

/* Next Step Section */
.tool-next-step {
    background: #ffffff;
    padding: 3.5rem 0;
    text-align: center;
    border-top: 1px solid #e5e7eb;
}

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

.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.375rem, 3.5vw, 2.25rem);
    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 0;
}

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

.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.375rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: #000000;
    letter-spacing: -0.02em;
    text-align: center;
    line-height: 1.2;
}

.comparison-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 100%;
    overflow: hidden;
}

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

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

.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 */
.tool-faq {
    background: #ffffff;
    padding: 3.5rem 0;
}

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

.tool-faq__title {
    font-size: clamp(1.375rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.5rem;
    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::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: #374151;
}

.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;
}

/* CTA Section */
.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 3rem;
    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;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tool-hero {
    /* NOTE: NO border-bottom - removed per user request */
        padding: 8rem 0 1rem;
    }

    .tool-hero__container {
        padding: 0 2rem;
    }

    .tool-hero__description {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .tool-section {
        padding: 2rem 0;
    }

    .tool-section__container {
        padding: 0 2rem;
    }

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

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

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

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

    .tool-tab__text {
        display: none;
    }

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

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

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

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

    .result-actions {
        margin-top: 1rem;
        gap: 0.5rem;
    }

    .result-actions .btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.875rem;
    }

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

    .tool-cta__container {
        padding: 0 2rem;
    }

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

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

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

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

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

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

    .tool-next-step__description {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }

    .tool-comparison {
        padding: 2rem 0;
        overflow: hidden;
    }

    .tool-comparison__container {
        padding: 0 2rem;
        max-width: 100%;
        overflow: hidden;
    }

    .tool-comparison__header {
        margin-bottom: 1.5rem;
    }

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

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

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

    .comparison-column {
        padding: 1.25rem;
    }

    .comparison-column__title {
        font-size: 1.0625rem;
    }

    .comparison-item {
        font-size: 0.875rem;
    }

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

    .tool-info__subtitle {
        margin: 1.5rem 0 0.875rem;
        font-size: 1.125rem;
    }

    .tool-info__steps::before {
        display: none;
    }

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

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

    .info-step__icon svg {
        width: 20px;
        height: 20px;
        top: 8px;
        left: 7px;
    }

    .info-step__number {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
    }

    .info-step__title {
        font-size: 1rem;
    }

    .info-step__content p {
        font-size: 0.875rem;
    }

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

    .benefit-card {
        padding: 1.25rem;
    }

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

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

    .benefit-card__title {
        font-size: 1rem;
    }

    .benefit-card__text {
        font-size: 0.875rem;
    }
}

/* iPhone 14 and smaller */
@media (max-width: 430px) {
    .tool-hero {
    /* NOTE: NO border-bottom - removed per user request */
        padding: 7rem 0 0.75rem;
    }

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

    .tool-hero__container {
        padding: 0 1.5rem;
    }

    .tool-hero__badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
        margin-bottom: 1rem;
    }

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

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

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

    .tool-info__content p {
        font-size: 0.9375rem;
    }

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

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

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

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

    .tool-comparison__badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
        margin-bottom: 0.75rem;
    }

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

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

    .faq-question {
        font-size: 0.9375rem;
        padding: 1rem 1.25rem;
    }

    .faq-answer {
        padding: 0 1.25rem 1rem 1.25rem;
        font-size: 0.875rem;
    }

    .info-step {
        padding: 0.875rem;
        margin-bottom: 0.875rem;
        gap: 0.75rem;
    }

    .info-step__number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .info-step__title {
        font-size: 0.9375rem;
    }

    .info-step__content p {
        font-size: 0.8125rem;
    }

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

    .benefit-card {
        padding: 1rem;
        gap: 0.75rem;
    }

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

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

    .benefit-card__title {
        font-size: 0.9375rem;
    }

    .benefit-card__text {
        font-size: 0.8125rem;
    }

    .tool-cta {
        margin: 16px;
        max-width: calc(100% - 32px);
        border-radius: 16px;
        padding: 24px 0;
    }

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

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

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

    .comparison-column {
        padding: 1rem;
    }

    .comparison-column__title {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }

    .comparison-column__header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .comparison-item {
        font-size: 0.8125rem;
        margin-bottom: 0.75rem;
    }

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

/* Tablet breakpoint for hero */
@media (min-width: 769px) and (max-width: 1023px) {
    .tool-hero {
    /* NOTE: NO border-bottom - removed per user request */
        padding: 9rem 0 1.5rem;
    }

    .comparison-table {
        gap: 1.5rem;
    }
}

/* Extra small mobile (Budget Android - Brazil, India) */
@media (max-width: 360px) {
    .tool-hero {
    /* NOTE: NO border-bottom - removed per user request */
        padding: 6.5rem 0 0.875rem;
    }

    .tool-hero__container {
        padding: 0 1.25rem;
    }

    .tool-hero__badge {
        font-size: 0.6875rem;
        padding: 0.25rem 0.625rem;
    }

    .tool-info__container,
    .tool-next-step__container,
    .tool-comparison__container,
    .tool-faq__container {
        padding: 0 1.25rem;
    }

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

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

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

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

    .comparison-column {
        padding: 0.875rem;
    }

    .comparison-column__title {
        font-size: 0.9375rem;
    }

    .comparison-item {
        font-size: 0.75rem;
        gap: 0.5rem;
    }
}
