/* =========================================================
   FREE ONLINE TEXT EDITOR — TEXT CLEANER PRO
========================================================= */

.fote-cleaner-pro {
    --fote-primary: #2563eb;
    --fote-primary-dark: #1d4ed8;
    --fote-secondary: #7c3aed;
    --fote-pro: #7c3aed;
    --fote-success: #16a34a;
    --fote-danger: #dc2626;
    --fote-warning: #f59e0b;
    --fote-text: #0f172a;
    --fote-muted: #64748b;
    --fote-border: #dbe4f0;
    --fote-light: #f8fafc;
    --fote-white: #ffffff;
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 24px 18px 60px;
    box-sizing: border-box;
    font-family: Inter, Arial, sans-serif;
    color: var(--fote-text);
}

/* =========================================================
   HERO
========================================================= */

.fote-pro-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 26px;
    padding: 48px 30px;
    text-align: center;
    color: #fff;
    background:
        radial-gradient(
            circle at top right,
            rgba(255, 255, 255, 0.18),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #2563eb 0%,
            #4f46e5 55%,
            #7c3aed 100%
        );
    border-radius: 26px;
    box-shadow: 0 22px 50px rgba(37, 99, 235, 0.22);
}

.fote-pro-hero::before,
.fote-pro-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.fote-pro-hero::before {
    width: 220px;
    height: 220px;
    top: -110px;
    left: -80px;
}

.fote-pro-hero::after {
    width: 170px;
    height: 170px;
    right: -55px;
    bottom: -80px;
}

.fote-pro-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 8px 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.fote-pro-hero h1 {
    position: relative;
    z-index: 1;
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(38px, 6vw, 60px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.fote-pro-hero p {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    line-height: 1.75;
}

.fote-pro-hero-features {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    margin-top: 22px;
}

.fote-pro-hero-features span {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

/* =========================================================
   MAIN TOOL
========================================================= */

.fote-pro-tool {
    padding: 28px;
    background: var(--fote-white);
    border: 1px solid var(--fote-border);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
}

.fote-pro-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.fote-pro-topbar h2 {
    margin: 0 0 6px;
    color: var(--fote-text);
    font-size: 28px;
    line-height: 1.25;
}

.fote-pro-topbar p {
    margin: 0;
    color: var(--fote-muted);
    font-size: 15px;
    line-height: 1.6;
}

.fote-plan-badge {
    flex: 0 0 auto;
    padding: 8px 14px;
    color: #166534;
    background: #dcfce7;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* =========================================================
   GENERIC SECTION HEADINGS
========================================================= */

.fote-section-heading,
.fote-section-title-row,
.fote-options-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.fote-section-heading {
    margin-bottom: 10px;
}

.fote-section-heading label {
    color: var(--fote-text);
    font-size: 16px;
    font-weight: 800;
}

.fote-section-heading span {
    color: var(--fote-muted);
    font-size: 13px;
    font-weight: 700;
}

.fote-section-title-row h2,
.fote-options-header h2,
.fote-case-section h2 {
    margin: 0 0 5px;
    color: var(--fote-text);
    font-size: 22px;
    line-height: 1.3;
}

.fote-section-title-row p,
.fote-options-header p {
    margin: 0;
    color: var(--fote-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================================
   INPUT / OUTPUT TEXTAREAS
========================================================= */

.fote-input-section {
    margin-bottom: 28px;
}

#foteCleanerInput,
#foteCleanerOutput {
    display: block;
    width: 100%;
    min-height: 300px;
    padding: 20px;
    box-sizing: border-box;
    resize: vertical;
    color: var(--fote-text);
    background: var(--fote-light);
    border: 1px solid var(--fote-border);
    border-radius: 15px;
    outline: none;
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

#foteCleanerInput::placeholder,
#foteCleanerOutput::placeholder {
    color: #94a3b8;
}

#foteCleanerInput:focus {
    background: #fff;
    border-color: var(--fote-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.11);
}

#foteCleanerOutput {
    background: #f1f5f9;
}

/* =========================================================
   FILE UPLOAD
========================================================= */

.fote-file-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

.fote-upload-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    color: var(--fote-primary);
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 11px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.fote-upload-btn:hover {
    background: #dbeafe;
    border-color: #93c5fd;
    transform: translateY(-1px);
}

#foteFileName {
    color: var(--fote-muted);
    font-size: 13px;
}

/* =========================================================
   OPTIONS SECTION
========================================================= */

.fote-options-section {
    margin-bottom: 30px;
    padding: 24px;
    background: #f8fafc;
    border: 1px solid var(--fote-border);
    border-radius: 18px;
}

.fote-options-header {
    margin-bottom: 18px;
}

.fote-option-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fote-option-actions button {
    min-height: 38px;
    padding: 8px 13px;
    color: var(--fote-text);
    background: #fff;
    border: 1px solid var(--fote-border);
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    transition:
        transform 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.fote-option-actions button:hover {
    color: var(--fote-primary);
    background: #eff6ff;
    border-color: #93c5fd;
    transform: translateY(-1px);
}

.fote-options-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

/* =========================================================
   OPTION CARDS
========================================================= */

.fote-clean-option {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    min-height: 88px;
    padding: 17px 16px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid var(--fote-border);
    border-radius: 14px;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.fote-clean-option:hover {
    border-color: rgba(37, 99, 235, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 9px 20px rgba(37, 99, 235, 0.07);
}

.fote-clean-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.fote-check-ui {
    position: relative;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    background: #fff;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    box-sizing: border-box;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.fote-clean-option input[type="checkbox"]:checked + .fote-check-ui {
    background: var(--fote-primary);
    border-color: var(--fote-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.09);
}

.fote-clean-option input[type="checkbox"]:checked + .fote-check-ui::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.fote-option-content {
    min-width: 0;
}

.fote-option-content strong {
    display: block;
    margin-bottom: 4px;
    color: var(--fote-text);
    font-size: 15px;
    line-height: 1.35;
}

.fote-option-content small {
    display: block;
    color: var(--fote-muted);
    font-size: 12.5px;
    line-height: 1.55;
}

/* =========================================================
   PRO OPTIONS
========================================================= */

.fote-pro-option {
    background:
        linear-gradient(
            135deg,
            rgba(124, 58, 237, 0.035),
            rgba(37, 99, 235, 0.035)
        ),
        #fff;
    border-color: rgba(124, 58, 237, 0.24);
}

.fote-pro-option:hover {
    border-color: rgba(124, 58, 237, 0.48);
    box-shadow: 0 9px 20px rgba(124, 58, 237, 0.08);
}

.fote-mini-pro {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 9px;
    color: #6d28d9;
    background: #ede9fe;
    border: 1px solid #ddd6fe;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.6px;
}

.fote-pro-option > .fote-mini-pro {
    position: absolute;
    top: 10px;
    right: 10px;
}

/* =========================================================
   FIND & REPLACE
========================================================= */

.fote-find-replace {
    margin-bottom: 28px;
    padding: 22px;
    background: #faf5ff;
    border: 1px solid #e9d5ff;
    border-radius: 17px;
}

.fote-section-title-row {
    margin-bottom: 16px;
}

.fote-find-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.fote-find-grid label {
    display: block;
    margin-bottom: 7px;
    color: var(--fote-text);
    font-size: 13px;
    font-weight: 800;
}

.fote-find-grid input {
    display: block;
    width: 100%;
    min-height: 46px;
    padding: 10px 13px;
    box-sizing: border-box;
    color: var(--fote-text);
    background: #fff;
    border: 1px solid #ddd6fe;
    border-radius: 11px;
    outline: none;
    font-family: inherit;
    font-size: 14px;
}

.fote-find-grid input:focus {
    border-color: var(--fote-pro);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.09);
}

/* =========================================================
   CASE SECTION
========================================================= */

.fote-case-section {
    margin-bottom: 28px;
}

.fote-case-section h2 {
    margin-bottom: 12px;
}

.fote-case-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fote-case-buttons button {
    min-height: 42px;
    padding: 9px 15px;
    color: var(--fote-text);
    background: #fff;
    border: 1px solid var(--fote-border);
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.fote-case-buttons button:hover {
    color: var(--fote-primary);
    background: #eff6ff;
    border-color: #93c5fd;
    transform: translateY(-1px);
}

.fote-case-buttons button.active {
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--fote-primary),
        var(--fote-secondary)
    );
    border-color: transparent;
}

/* =========================================================
   CLEAN ACTION
========================================================= */

.fote-clean-action {
    margin: 26px 0 22px;
    text-align: center;
}

#foteCleanButton {
    min-width: 220px;
    min-height: 54px;
    padding: 13px 24px;
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--fote-primary),
        var(--fote-secondary)
    );
    border: 0;
    border-radius: 13px;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

#foteCleanButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.28);
}

#foteCleanerMessage {
    min-height: 20px;
    margin: 10px 0 0;
    color: var(--fote-muted);
    font-size: 13px;
    font-weight: 700;
}

/* =========================================================
   STATS
========================================================= */

.fote-stats-wrapper {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}

.fote-stat-card {
    padding: 18px 12px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--fote-border);
    border-radius: 14px;
    box-shadow: 0 7px 18px rgba(15, 23, 42, 0.04);
}

.fote-stat-card span {
    display: block;
    margin-bottom: 6px;
    color: var(--fote-muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.fote-stat-card strong {
    display: block;
    margin-bottom: 4px;
    color: var(--fote-primary);
    font-size: 29px;
    line-height: 1.1;
}

.fote-stat-card small {
    color: var(--fote-muted);
    font-size: 11.5px;
}

/* =========================================================
   OUTPUT
========================================================= */

.fote-output-section {
    padding-top: 4px;
}

.fote-output-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.fote-output-actions button {
    min-height: 44px;
    padding: 10px 16px;
    color: var(--fote-text);
    background: #fff;
    border: 1px solid var(--fote-border);
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.fote-output-actions button:hover {
    transform: translateY(-1px);
    box-shadow: 0 7px 16px rgba(15, 23, 42, 0.07);
}

.fote-output-actions .fote-primary-action {
    color: #fff;
    background: var(--fote-primary);
    border-color: var(--fote-primary);
}

.fote-output-actions .fote-primary-action:hover {
    color: #fff;
    background: var(--fote-primary-dark);
    border-color: var(--fote-primary-dark);
}

/* =========================================================
   UPGRADE BOX
========================================================= */

.fote-upgrade-box {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    margin-top: 28px;
    padding: 26px;
    color: #fff;
    background:
        radial-gradient(
            circle at top right,
            rgba(255, 255, 255, 0.13),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #111827,
            #312e81 58%,
            #6d28d9
        );
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(49, 46, 129, 0.2);
}

.fote-upgrade-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 15px;
    font-size: 28px;
}

.fote-upgrade-label {
    display: inline-block;
    margin-bottom: 7px;
    color: #c4b5fd;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
}

.fote-upgrade-content h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 25px;
    line-height: 1.25;
}

.fote-upgrade-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.65;
}

.fote-upgrade-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 15px;
    margin-top: 14px;
}

.fote-upgrade-features span {
    color: #e9d5ff;
    font-size: 12px;
    font-weight: 700;
}

.fote-upgrade-action {
    text-align: center;
}

.fote-price {
    display: block;
    margin-bottom: 9px;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
}

.fote-price small {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.68);
}

.fote-upgrade-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    color: #312e81;
    background: #fff;
    border-radius: 11px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.fote-upgrade-button:hover {
    color: #312e81;
    transform: translateY(-2px);
    box-shadow: 0 9px 22px rgba(0, 0, 0, 0.16);
}

/* =========================================================
   FEEDBACK STATES
========================================================= */

.fote-cleaner-pro .fote-success {
    color: var(--fote-success) !important;
}

.fote-cleaner-pro .fote-error {
    color: var(--fote-danger) !important;
}

.fote-cleaner-pro .fote-warning {
    color: var(--fote-warning) !important;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
    .fote-options-grid {
        grid-template-columns: 1fr;
    }

    .fote-stats-wrapper {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .fote-upgrade-box {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .fote-upgrade-action {
        grid-column: 1 / -1;
        text-align: left;
        padding-left: 80px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
    .fote-cleaner-pro {
        padding: 14px 12px 40px;
    }

    .fote-pro-hero {
        padding: 34px 18px;
        border-radius: 18px;
    }

    .fote-pro-hero h1 {
        font-size: 36px;
        letter-spacing: -0.8px;
    }

    .fote-pro-hero p {
        font-size: 15px;
    }

    .fote-pro-hero-features {
        flex-direction: column;
        gap: 7px;
    }

    .fote-pro-tool {
        padding: 16px;
        border-radius: 17px;
    }

    .fote-pro-topbar,
    .fote-options-header,
    .fote-section-title-row,
    .fote-section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    #foteCleanerInput,
    #foteCleanerOutput {
        min-height: 240px;
        padding: 16px;
        font-size: 16px;
        border-radius: 12px;
    }

    .fote-options-section,
    .fote-find-replace {
        padding: 16px;
        border-radius: 14px;
    }

    .fote-find-grid {
        grid-template-columns: 1fr;
    }

    .fote-case-buttons {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #foteCleanButton {
        width: 100%;
    }

    .fote-stats-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fote-output-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .fote-output-actions button {
        width: 100%;
    }

    .fote-upgrade-box {
        grid-template-columns: 1fr;
        padding: 22px 18px;
    }

    .fote-upgrade-action {
        grid-column: auto;
        padding-left: 0;
        text-align: left;
    }

    .fote-upgrade-button {
        width: 100%;
        box-sizing: border-box;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
    .fote-case-buttons {
        grid-template-columns: 1fr;
    }

    .fote-stats-wrapper {
        grid-template-columns: 1fr;
    }

    .fote-pro-hero h1 {
        font-size: 32px;
    }

    .fote-pro-topbar h2 {
        font-size: 24px;
    }
}
/* =========================================================
   PRO UPGRADE MODAL
========================================================= */

.fote-pro-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.fote-pro-modal.fote-modal-open {
    display: flex;
}

.fote-pro-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(5px);
}

.fote-pro-modal-dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    max-height: 92vh;
    overflow-y: auto;
    padding: 34px;
    box-sizing: border-box;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.3);
}

.fote-pro-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 38px;
    height: 38px;
    padding: 0;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 25px;
    line-height: 1;
}

.fote-pro-modal-close:hover {
    color: #dc2626;
    background: #fef2f2;
    border-color: #fecaca;
}

.fote-pro-modal-badge {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 11px;
    color: #6d28d9;
    background: #ede9fe;
    border: 1px solid #ddd6fe;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.7px;
}

.fote-pro-modal-dialog > h2 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: clamp(28px, 5vw, 40px);
    line-height: 1.2;
}

.fote-pro-modal-subtitle {
    max-width: 720px;
    margin: 0 0 26px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

.fote-plan-comparison {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.fote-plan-card {
    position: relative;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 17px;
}

.fote-plan-card-pro {
    background:
        linear-gradient(
            180deg,
            rgba(124, 58, 237, 0.035),
            rgba(37, 99, 235, 0.035)
        ),
        #fff;
    border: 2px solid #7c3aed;
}

.fote-popular-label {
    position: absolute;
    top: -12px;
    right: 18px;
    padding: 6px 10px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.6px;
}

.fote-plan-card-head {
    margin-bottom: 18px;
}

.fote-plan-name {
    display: block;
    margin-bottom: 8px;
    color: #64748b;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.fote-plan-card-head strong {
    display: inline-block;
    color: #0f172a;
    font-size: 34px;
    line-height: 1;
}

.fote-plan-card-head small {
    color: #64748b;
    font-size: 12px;
}

.fote-plan-card ul {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.fote-plan-card li {
    margin: 0 0 10px;
    color: #334155;
    font-size: 13px;
    line-height: 1.55;
}

.fote-plan-current,
.fote-plan-upgrade {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 45px;
    box-sizing: border-box;
    border-radius: 11px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 900;
}

.fote-plan-current {
    color: #64748b;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    cursor: default;
}

.fote-plan-upgrade {
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border: 0;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.22);
}

.fote-plan-upgrade:hover {
    color: #fff;
    transform: translateY(-1px);
}

.fote-pro-modal-note {
    margin: 18px 0 0;
    color: #94a3b8;
    font-size: 12px;
    text-align: center;
}

body.fote-modal-no-scroll {
    overflow: hidden;
}

@media (max-width: 767px) {

    .fote-pro-modal {
        padding: 12px;
    }

    .fote-pro-modal-dialog {
        padding: 26px 16px 20px;
        border-radius: 17px;
    }

    .fote-plan-comparison {
        grid-template-columns: 1fr;
    }

    .fote-pro-modal-dialog > h2 {
        padding-right: 30px;
    }

}