/* =====================================================
   REMOVE NUMBERS FROM TEXT
   CSS PART 1
===================================================== */

:root{

    --fote-rn-primary:#2563eb;
    --fote-rn-primary-dark:#1d4ed8;
    --fote-rn-secondary:#0f172a;
    --fote-rn-text:#334155;
    --fote-rn-border:#dbe5f1;
    --fote-rn-bg:#f8fbff;
    --fote-rn-white:#ffffff;
    --fote-rn-success:#16a34a;
    --fote-rn-danger:#dc2626;
    --fote-rn-radius:18px;
    --fote-rn-shadow:0 12px 35px rgba(15,23,42,.08);

}


/*==========================
GENERAL
==========================*/

.fote-remove-num-wrapper{

    width:100%;
    overflow:hidden;
    background:#fff;
    color:var(--fote-rn-text);

}

.fote-remove-num-container{

    width:min(1180px,92%);
    margin:auto;

}

.fote-remove-num-wrapper *{

    box-sizing:border-box;

}


/*==========================
HERO
==========================*/

.fote-remove-num-hero{

    padding:70px 0 40px;
    text-align:center;
    background:linear-gradient(
        180deg,
        #eef5ff,
        #ffffff
    );

}

.fote-remove-num-badge{

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 18px;

    background:#dbeafe;
    color:#1d4ed8;

    border-radius:999px;

    font-size:.9rem;
    font-weight:700;

    margin-bottom:22px;

}

.fote-remove-num-hero h1{

    font-size:clamp(2rem,4vw,3.4rem);
    line-height:1.1;
    color:var(--fote-rn-secondary);

    margin-bottom:20px;

}

.fote-remove-num-hero p{

    max-width:820px;
    margin:auto;

    font-size:1.08rem;
    line-height:1.8;

}


/*==========================
TOOL
==========================*/

.fote-remove-num-tool-section{

    padding:45px 0;

}

.fote-remove-num-tool{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;

}

.fote-remove-num-box{

    background:#fff;

    border:1px solid var(--fote-rn-border);

    border-radius:var(--fote-rn-radius);

    box-shadow:var(--fote-rn-shadow);

    overflow:hidden;

}

.fote-remove-num-box-header{

    padding:18px 24px;

    border-bottom:1px solid var(--fote-rn-border);

    background:#f8fbff;

}

.fote-remove-num-box-header h2{

    margin:0;

    font-size:1.15rem;
    color:var(--fote-rn-secondary);

}

.fote-remove-num-box textarea{

    width:100%;
    height:340px;

    border:none;
    outline:none;
    resize:vertical;

    padding:22px;

    font-size:16px;
    line-height:1.8;

    color:#1e293b;
    background:#fff;

    font-family:inherit;

}

.fote-remove-num-box textarea::placeholder{

    color:#94a3b8;

}


/*==========================
STATS
==========================*/

.fote-remove-num-stats{

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:18px;

    margin-top:30px;

}

.fote-remove-num-stat{

    background:#fff;

    border:1px solid var(--fote-rn-border);

    border-radius:16px;

    text-align:center;

    padding:22px;

    box-shadow:0 8px 22px rgba(15,23,42,.05);

}

.fote-remove-num-stat span{

    display:block;

    font-size:2rem;
    font-weight:700;

    color:var(--fote-rn-primary);

    margin-bottom:8px;

}

.fote-remove-num-stat small{

    color:#64748b;
    font-size:.92rem;

}


/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

    .fote-remove-num-tool{

        grid-template-columns:1fr;

    }

    .fote-remove-num-stats{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:600px){

    .fote-remove-num-hero{

        padding:50px 0 30px;

    }

    .fote-remove-num-box textarea{

        height:260px;

    }

    .fote-remove-num-stats{

        grid-template-columns:1fr;

    }

}
/* =====================================================
   REMOVE NUMBERS FROM TEXT
   CSS PART 2
   OPTIONS + BUTTONS + FEATURES + HOW IT WORKS
===================================================== */


/*==========================
OPTIONS
==========================*/

.fote-remove-num-options{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;

    margin-top:30px;

}

.fote-remove-num-options label{

    display:flex;
    align-items:center;
    gap:12px;

    min-height:58px;
    padding:16px 18px;

    background:var(--fote-rn-white);

    border:1px solid var(--fote-rn-border);
    border-radius:14px;

    cursor:pointer;

    font-size:.96rem;
    font-weight:600;
    color:var(--fote-rn-secondary);

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease,
        background-color .25s ease;

}

.fote-remove-num-options label:hover{

    border-color:#93b4f8;
    box-shadow:0 10px 24px rgba(37,99,235,.08);
    transform:translateY(-2px);

}

.fote-remove-num-options label:has(input:checked){

    border-color:#8db1ff;
    background:#f3f7ff;
    box-shadow:0 8px 22px rgba(37,99,235,.08);

}

.fote-remove-num-options input[type="checkbox"]{

    width:19px;
    height:19px;

    margin:0;

    accent-color:var(--fote-rn-primary);

    cursor:pointer;
    flex:0 0 auto;

}


/*==========================
ACTION BUTTONS
==========================*/

.fote-remove-num-buttons{

    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:14px;

    margin-top:30px;

}

.fote-remove-num-buttons button{

    min-height:50px;
    padding:13px 23px;

    border:1px solid transparent;
    border-radius:12px;

    font-family:inherit;
    font-size:.96rem;
    font-weight:700;

    cursor:pointer;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        background-color .22s ease,
        border-color .22s ease,
        color .22s ease;

}

.fote-remove-num-buttons button:first-child{

    background:var(--fote-rn-primary);
    color:#fff;

    box-shadow:0 9px 22px rgba(37,99,235,.24);

}

.fote-remove-num-buttons button:first-child:hover{

    background:var(--fote-rn-primary-dark);
    transform:translateY(-2px);
    box-shadow:0 13px 28px rgba(37,99,235,.3);

}

.fote-remove-num-buttons button:not(:first-child){

    background:#fff;
    color:var(--fote-rn-secondary);
    border-color:var(--fote-rn-border);

}

.fote-remove-num-buttons button:not(:first-child):hover{

    color:var(--fote-rn-primary);
    border-color:#9bb9f6;
    background:#f8fbff;
    transform:translateY(-2px);

}

.fote-remove-num-buttons button:active{

    transform:translateY(0);

}

.fote-remove-num-buttons button:focus-visible{

    outline:3px solid rgba(37,99,235,.23);
    outline-offset:3px;

}

.fote-remove-num-buttons button:disabled{

    opacity:.65;
    cursor:not-allowed;
    transform:none;
    box-shadow:none;

}


/*==========================
MESSAGE
==========================*/

.fote-remove-num-message{

    min-height:28px;

    margin-top:18px;

    text-align:center;
    font-size:.95rem;
    font-weight:700;

    opacity:0;
    transform:translateY(4px);

    transition:
        opacity .25s ease,
        transform .25s ease;

}

.fote-remove-num-message.success,
.fote-remove-num-message.error{

    opacity:1;
    transform:translateY(0);

}

.fote-remove-num-message.success{

    color:var(--fote-rn-success);

}

.fote-remove-num-message.error{

    color:var(--fote-rn-danger);

}


/*==========================
COMMON CONTENT SECTIONS
==========================*/

.fote-remove-num-info,
.fote-remove-num-how,
.fote-remove-num-faq,
.fote-remove-num-related,
.fote-remove-num-cta{

    padding:70px 0;

}

.fote-remove-num-info h2,
.fote-remove-num-how h2,
.fote-remove-num-faq h2,
.fote-remove-num-related h2,
.fote-remove-num-cta h2{

    margin:0 0 18px;

    text-align:center;
    color:var(--fote-rn-secondary);

    font-size:clamp(1.7rem,3vw,2.45rem);
    line-height:1.2;

}


/*==========================
FEATURES
==========================*/

.fote-remove-num-info{

    background:var(--fote-rn-bg);

}

.fote-remove-num-feature-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;

    margin-top:38px;

}

.fote-remove-num-feature{

    padding:28px 24px;

    background:#fff;

    border:1px solid var(--fote-rn-border);
    border-radius:var(--fote-rn-radius);

    box-shadow:0 10px 28px rgba(15,23,42,.06);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

}

.fote-remove-num-feature:hover{

    transform:translateY(-5px);
    border-color:#a7c0f5;
    box-shadow:0 16px 34px rgba(15,23,42,.1);

}

.fote-remove-num-feature h3{

    margin:0 0 12px;

    color:var(--fote-rn-secondary);
    font-size:1.12rem;
    line-height:1.35;

}

.fote-remove-num-feature p{

    margin:0;

    color:#64748b;
    font-size:.96rem;
    line-height:1.75;

}


/*==========================
HOW IT WORKS
==========================*/

.fote-remove-num-how{

    background:#fff;

}

.fote-remove-num-how ol{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;

    list-style:none;

    padding:0;
    margin:38px 0 0;

    counter-reset:fote-remove-num-step;

}

.fote-remove-num-how li{

    position:relative;

    min-height:170px;
    padding:68px 24px 24px;

    background:#f8fbff;

    border:1px solid var(--fote-rn-border);
    border-radius:var(--fote-rn-radius);

    text-align:center;

    color:var(--fote-rn-text);
    font-weight:600;
    line-height:1.65;

    counter-increment:fote-remove-num-step;

}

.fote-remove-num-how li::before{

    content:counter(fote-remove-num-step);

    position:absolute;
    top:20px;
    left:50%;

    width:38px;
    height:38px;

    display:flex;
    align-items:center;
    justify-content:center;

    transform:translateX(-50%);

    background:var(--fote-rn-primary);
    color:#fff;

    border-radius:50%;

    font-size:1rem;
    font-weight:800;

    box-shadow:0 8px 18px rgba(37,99,235,.22);

}

.fote-remove-num-how strong{

    color:var(--fote-rn-primary-dark);

}


/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

    .fote-remove-num-options{

        grid-template-columns:repeat(2,1fr);

    }

    .fote-remove-num-feature-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .fote-remove-num-how ol{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:600px){

    .fote-remove-num-options{

        grid-template-columns:1fr;

    }

    .fote-remove-num-options label{

        min-height:54px;
        padding:14px 16px;

    }

    .fote-remove-num-buttons{

        display:grid;
        grid-template-columns:1fr;

    }

    .fote-remove-num-buttons button{

        width:100%;

    }

    .fote-remove-num-info,
    .fote-remove-num-how,
    .fote-remove-num-faq,
    .fote-remove-num-related,
    .fote-remove-num-cta{

        padding:52px 0;

    }

    .fote-remove-num-feature-grid,
    .fote-remove-num-how ol{

        grid-template-columns:1fr;

    }

    .fote-remove-num-how li{

        min-height:auto;

    }

}
/* =====================================================
   REMOVE NUMBERS FROM TEXT
   CSS PART 3
   FAQ + RELATED TOOLS + CTA + ANIMATIONS
===================================================== */


/*==========================
FAQ
==========================*/

.fote-remove-num-faq{

    background:var(--fote-rn-bg);

}

.fote-remove-num-faq-item{

    background:#fff;

    border:1px solid var(--fote-rn-border);
    border-radius:16px;

    overflow:hidden;

    margin-bottom:18px;

    box-shadow:0 8px 24px rgba(15,23,42,.05);

}

.fote-remove-num-faq-question{

    width:100%;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:22px 26px;

    border:none;
    outline:none;

    cursor:pointer;

    background:#fff;

    color:var(--fote-rn-secondary);

    font-size:1.03rem;
    font-weight:700;
    text-align:left;

    transition:
        background .25s ease,
        color .25s ease;

}

.fote-remove-num-faq-question:hover{

    background:#f8fbff;
    color:var(--fote-rn-primary);

}

.fote-remove-num-faq-question::after{

    content:"+";

    font-size:1.4rem;
    font-weight:700;

    color:var(--fote-rn-primary);

    transition:transform .25s ease;

}

.fote-remove-num-faq-item.is-open
.fote-remove-num-faq-question::after{

    content:"−";
    transform:rotate(180deg);

}

.fote-remove-num-faq-answer{

    max-height:0;
    overflow:hidden;

    transition:max-height .3s ease;

    background:#fff;

}

.fote-remove-num-faq-answer p{

    margin:0;
    padding:0 26px 24px;

    color:#64748b;
    line-height:1.8;

}


/*==========================
RELATED TOOLS
==========================*/

.fote-remove-num-related{

    background:#fff;

}

.fote-remove-num-related-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:18px;

    margin-top:35px;

}

.fote-remove-num-related-grid a{

    display:flex;
    align-items:center;
    justify-content:center;

    min-height:70px;

    padding:18px;

    text-align:center;
    text-decoration:none;

    color:var(--fote-rn-secondary);
    font-weight:700;

    background:#f8fbff;

    border:1px solid var(--fote-rn-border);
    border-radius:16px;

    transition:
        transform .25s ease,
        border-color .25s ease,
        color .25s ease,
        box-shadow .25s ease;

}

.fote-remove-num-related-grid a:hover{

    color:var(--fote-rn-primary);

    border-color:#9bb8f5;

    transform:translateY(-4px);

    box-shadow:0 12px 28px rgba(15,23,42,.08);

}


/*==========================
CTA
==========================*/

.fote-remove-num-cta{

    background:linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );

    color:#fff;

    text-align:center;

}

.fote-remove-num-cta h2{

    color:#fff;

    margin-bottom:18px;

}

.fote-remove-num-cta p{

    max-width:760px;

    margin:auto;

    font-size:1.08rem;
    line-height:1.9;

    opacity:.95;

}


/*==========================
SCROLLBAR
==========================*/

.fote-remove-num-box textarea::-webkit-scrollbar{

    width:10px;

}

.fote-remove-num-box textarea::-webkit-scrollbar-track{

    background:#eef4ff;

}

.fote-remove-num-box textarea::-webkit-scrollbar-thumb{

    background:#b9cdf9;
    border-radius:999px;

}

.fote-remove-num-box textarea::-webkit-scrollbar-thumb:hover{

    background:#7ea7f4;

}


/*==========================
BUTTON ACTIVE
==========================*/

.fote-remove-num-buttons button:active{

    transform:scale(.98);

}


/*==========================
TEXTAREA FOCUS
==========================*/

.fote-remove-num-box textarea:focus{

    background:#fcfdff;

}


/*==========================
FADE ANIMATION
==========================*/

@keyframes foteRemoveNumFade{

    from{

        opacity:0;
        transform:translateY(16px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

.fote-remove-num-tool,
.fote-remove-num-feature,
.fote-remove-num-faq-item,
.fote-remove-num-related-grid a{

    animation:foteRemoveNumFade .45s ease both;

}


/*==========================
REDUCED MOTION
==========================*/

@media(prefers-reduced-motion:reduce){

    *,
    *::before,
    *::after{

        animation:none !important;
        transition:none !important;
        scroll-behavior:auto !important;

    }

}


/*==========================
LARGE SCREEN
==========================*/

@media(min-width:1500px){

    .fote-remove-num-container{

        width:min(1280px,90%);

    }

}


/*==========================
TABLET
==========================*/

@media(max-width:991px){

    .fote-remove-num-related-grid{

        grid-template-columns:repeat(2,1fr);

    }

}


/*==========================
MOBILE
==========================*/

@media(max-width:600px){

    .fote-remove-num-faq-question{

        padding:18px;

        font-size:.96rem;

    }

    .fote-remove-num-faq-answer p{

        padding:0 18px 20px;

    }

    .fote-remove-num-related-grid{

        grid-template-columns:1fr;

    }

    .fote-remove-num-related-grid a{

        min-height:60px;

    }

    .fote-remove-num-cta p{

        font-size:1rem;

    }

}