:root {

    /*==================================================
      BRAND COLORS
    ==================================================*/
    --primary-color: #21336d;
    --secondary-color: #1e3a8a;
    --accent-color-1: #f5821f;
    --accent-color-2: #21336d;
    --muted-color: #667085;

    /*==================================================
      NEUTRAL COLORS
    ==================================================*/
    --white: #ffffff;
    --black: #000000;

    --bg-light: #eef2f7;
    --bg-light-blue: #f8fbff;
    --bg-soft-blue: #eaf1fe;
    --bg-soft-green: #e6f7f7;
    --bg-soft-orange: #fff4eb;

    --border-light: #e2e8f0;
    --border-medium: #c4cedb;

    /*==================================================
      TEXT COLORS
    ==================================================*/
    --text-color-1: var(--primary-color);
    --text-color-2: var(--secondary-color);
    --text-color-3: var(--muted-color);
    --text-white: var(--white);

    /*==================================================
      SECTION COLORS
    ==================================================*/
    --section-bg: var(--white);
    --section-bg-alt: var(--bg-light-blue);
    --section-bg-dark: var(--primary-color);

    /*==================================================
      CARD
    ==================================================*/
    --card-bg: var(--white);
    --card-bg-alt: var(--bg-light-blue);
    --card-border: var(--border-light);
    --card-hover-border: var(--secondary-color);

    /*==================================================
      BUTTONS
    ==================================================*/
    --btn-primary-bg: var(--accent-color-1);
    --btn-primary-hover: #e56f08;

    --btn-secondary-bg: var(--primary-color);
    --btn-secondary-hover: #182652;

    --btn-outline-bg: transparent;
    --btn-outline-border: var(--primary-color);
    --btn-outline-hover: var(--bg-soft-blue);

    /*==================================================
      BADGES
    ==================================================*/
    --badge-bg-primary: var(--bg-soft-blue);
    --badge-bg-secondary: var(--secondary-color);
    --badge-bg-dark: var(--primary-color);
    --badge-text: var(--white);

    /*==================================================
      TABLE
    ==================================================*/
    --table-head-text: var(--black);
    --table-head-bg: var(--bg-light);
    --table-row-bg: var(--bg-soft-green);
    --table-border: var(--border-light);

    /*==================================================
      BORDER RADIUS
    ==================================================*/
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-round: 50px;

    /*==================================================
      SHADOWS
    ==================================================*/
    --shadow-xs: 0 2px 6px rgba(33, 51, 109, 0.05);
    --shadow-sm: 0 2px 8px rgba(33, 51, 109, 0.08);
    --shadow-md: 0 8px 24px rgba(33, 51, 109, 0.12);
    --shadow-lg: 0 15px 40px rgba(33, 51, 109, 0.18);

    /*==================================================
      TRANSITIONS
    ==================================================*/
    --transition-fast: .2s ease;
    --transition: .3s ease;
    --transition-slow: .5s ease;

    /*==================================================
      CONTAINER
    ==================================================*/
    --container-width: 1200px;
    --container-padding: 24px;

    /*==================================================
      SECTION SPACING
    ==================================================*/
    --section-space: 80px;
    --section-space-sm: 60px;

    /*==================================================
      TYPOGRAPHY
    ==================================================*/
    --heading-xl: clamp(36px, 5vw, 56px);
    --heading-lg: clamp(28px, 4vw, 42px);
    --heading-md: clamp(22px, 3vw, 34px);
    --heading-sm: clamp(18px, 2vw, 24px);

    --body-lg: 18px;
    --body-md: 16px;
    --body-sm: 14px;
    --body-xs: 13px;

    --line-height-heading: 1.2;
    --line-height-body: 1.7;
}

/* ─── SECTION : FACILE ONE HERO ─── */

.facile-one-hero {
    padding: var(--section-space) 0;
    background: linear-gradient(135deg, var(--bg-light-blue) 0%, var(--bg-soft-orange) 100%);
    overflow: hidden;
}

.facile-one-hero-wrap {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 60px;
    align-items: center;
}

.facile-one-label {
    display: inline-block;
    background: var(--bg-soft-orange);
    color: var(--accent-color-1);
    font-size: var(--body-sm);
    font-weight: 800;
    letter-spacing: 1px;
    padding: 9px 18px;
    border-radius: var(--radius-round);
    margin-bottom: 22px;
}

.facile-one-hero-content h1 {
    color: var(--text-color-1);
    font-size: var(--heading-xl);
    font-weight: 900;
    line-height: var(--line-height-heading);
    margin: 0 0 24px;
}

.facile-one-hero-content p {
    color: var(--text-color-3);
    font-size: var(--body-md);
    line-height: var(--line-height-body);
    margin: 0 0 16px;
    max-width: 680px;
}

/* .facile-one-hero-image,
.facile-one-img-box {
    width: 520px;
    height: 360px;
} */

.facile-one-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.facile-one-hero-app {
    width: clamp(260px, 42vw, 520px);
    height: auto;
    aspect-ratio: 891 / 923;
    object-fit: contain;
    display: block;
}

.facile-one-img-box {
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.facile-one-img-box::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 2px dashed rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-lg);
}

.facile-one-img-box i {
    font-size: 76px;
    margin-bottom: 18px;
    color: var(--accent-color-1);
    position: relative;
    z-index: 1;
}

.facile-one-img-box span {
    font-size: var(--body-lg);
    font-weight: 700;
    position: relative;
    z-index: 1;
}





/* ─── SECTION : FACILE ONE FEATURES ─── */

.facile-one-features {
    padding: var(--section-space) 0;
    background: var(--section-bg);
}

.facile-one-section-head {
    max-width: 880px;
    margin: 0 auto 48px;
    text-align: center;
}

.facile-one-section-head h2 {
    color: var(--text-color-1);
    font-size: var(--heading-lg);
    font-weight: 900;
    line-height: var(--line-height-heading);
    margin: 0 0 16px;
}

.facile-one-section-head p {
    color: var(--text-color-3);
    font-size: var(--body-md);
    line-height: var(--line-height-body);
    margin: 0 auto;
}

.facile-one-feature-row {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}

.facile-one-feature-row:last-child {
    margin-bottom: 0;
}

.facile-one-feature-row-three {
    grid-template-columns: repeat(3, 1fr);
}

.facile-one-feature-row-four {
    grid-template-columns: repeat(4, 1fr);
}

.facile-one-feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.facile-one-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.facile-one-feature-img {
    width: 100%;
    aspect-ratio: 409 / 180;
    background: linear-gradient(135deg, var(--bg-soft-blue), var(--bg-soft-orange));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    position: relative;
}

.facile-one-feature-img::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 2px dashed var(--border-medium);
    border-radius: var(--radius-lg);
}

.facile-one-feature-img i {
    font-size: 42px;
    color: var(--accent-color-1);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.facile-one-feature-img span {
    color: var(--text-color-1);
    font-size: var(--body-sm);
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.facile-one-feature-content {
    padding: 22px;
}

.facile-one-feature-content h3 {
    color: var(--text-color-1);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 10px;
}

.facile-one-feature-content p {
    color: var(--text-color-3);
    font-size: var(--body-sm);
    line-height: var(--line-height-body);
    margin: 0;
}

.facile-one-feature-app {
    display: block;
    width: 100%;
    height: auto;
}

/* ─── SECTION : FACILE ONE BENEFITS ─── */

.facile-one-benefits {
    padding: var(--section-space) 0;
    background: var(--section-bg-alt);
}

.facile-one-benefits-wrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.facile-one-benefits-box,
.facile-one-designed-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 34px;
    box-shadow: var(--shadow-sm);
}

.facile-one-section-title {
    margin-bottom: 26px;
}

.facile-one-section-title h2 {
    color: var(--text-color-1);
    font-size: var(--heading-md);
    font-weight: 900;
    line-height: var(--line-height-heading);
    margin: 0;
}

.facile-one-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.facile-one-benefit-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    min-height: 76px;
    padding: 14px 16px;
    background: var(--bg-light-blue);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.facile-one-benefit-item:hover {
    transform: translateY(-4px);
    border-color: var(--card-hover-border);
    box-shadow: var(--shadow-sm);
}

.facile-one-benefit-item i {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-round);
    background: var(--bg-soft-orange);
    color: var(--accent-color-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.facile-one-benefit-item span {
    color: var(--text-color-1);
    font-size: var(--body-sm);
    font-weight: 700;
    line-height: 1.45;
    text-align: left;
}

.facile-one-designed-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.facile-one-designed-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color-1);
    font-size: var(--body-md);
    font-weight: 600;
    line-height: var(--line-height-body);
}

.facile-one-designed-list li i {
    color: #22c55e;
    font-size: 18px;
    flex-shrink: 0;
}



/* ─── SECTION : FACILE ONE CTA ─── */

.facile-one-cta {
    padding: var(--section-space) 0;
    background: linear-gradient(135deg,
            var(--bg-light-blue) 0%,
            var(--bg-soft-orange) 100%);
}

.facile-one-cta-box {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.facile-one-cta-box::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 250px;
    height: 250px;
    background: var(--bg-soft-orange);
    border-radius: 50%;
    opacity: .35;
}

.facile-one-cta-box::after {
    content: "";
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 220px;
    height: 220px;
    background: var(--bg-soft-blue);
    border-radius: 50%;
    opacity: .8;
}

.facile-one-cta-box>* {
    position: relative;
    z-index: 2;
}

.facile-one-cta h2 {
    color: var(--text-color-1);
    font-size: var(--heading-lg);
    font-weight: 900;
    line-height: var(--line-height-heading);
    margin: 18px 0 24px;
}

.facile-one-cta p {
    max-width: 760px;
    margin: 0 auto 18px;
    color: var(--text-color-3);
    font-size: var(--body-md);
    line-height: var(--line-height-body);
}

.facile-one-cta-tagline {
    margin-top: 38px;
    padding-top: 28px;
    border-top: 1px solid var(--border-light);
}

.facile-one-cta-tagline h3 {
    color: var(--text-color-1);
    font-size: var(--heading-md);
    font-weight: 900;
    margin: 0 0 10px;
}

.facile-one-cta-tagline span {
    display: inline-block;
    color: var(--accent-color-1);
    font-size: var(--body-lg);
    font-weight: 700;
    letter-spacing: .5px;
}

/* ─── SECTION : FACILE ONE FAQ ─── */

.facile-one-faq {
    padding: var(--section-space) 0;
    background: var(--section-bg);
}

.facile-one-faq-wrap {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.facile-one-faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    overflow: hidden;
    transition: var(--transition);
}

.facile-one-faq-item:hover {
    border-color: var(--border-medium);
    box-shadow: var(--shadow-sm);
}

.facile-one-faq-item.active {
    border-left: 4px solid var(--accent-color-1);
    box-shadow: var(--shadow-sm);
}

.facile-one-faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    text-align: left;
}

.facile-one-faq-question span {
    color: var(--text-color-1);
    font-size: var(--body-md);
    font-weight: 800;
    line-height: 1.4;
}

.facile-one-faq-question span b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 30px;
    margin-right: 12px;
    border-radius: var(--radius-round);
    background: var(--bg-soft-orange);
    color: var(--accent-color-1);
    font-size: var(--body-xs);
    font-weight: 900;
}

.facile-one-faq-question i {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-round);
    background: var(--bg-soft-blue);
    color: var(--text-color-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.facile-one-faq-answer {
    display: none;
    padding: 0 24px 22px 74px;
}

.facile-one-faq-item.active .facile-one-faq-answer {
    display: block;
}

.facile-one-faq-answer p {
    color: var(--text-color-3);
    font-size: var(--body-md);
    line-height: var(--line-height-body);
    margin: 0;
}

/* Laptop */
@media (min-width: 993px) and (max-width: 1199px) {
    .facile-one-faq {
        padding: var(--section-space-sm) 0;
    }
}

/* Tablet */
@media (min-width: 577px) and (max-width: 992px) {
    .facile-one-faq {
        padding: var(--section-space-sm) 0;
    }

    .facile-one-faq-wrap {
        max-width: 100%;
    }
}

/* Mobile */
@media (min-width: 391px) and (max-width: 576px) {
    .facile-one-faq {
        padding: 55px 0;
    }

    .facile-one-faq-question {
        padding: 18px;
        gap: 14px;
    }

    .facile-one-faq-question span {
        font-size: var(--body-sm);
    }

    .facile-one-faq-question span b {
        width: 34px;
        height: 28px;
        margin-right: 8px;
    }

    .facile-one-faq-answer {
        padding: 0 18px 20px;
    }

    .facile-one-faq-answer p {
        font-size: var(--body-sm);
    }
}

/* Small Mobile */
@media (max-width: 390px) {
    .facile-one-faq {
        padding: 45px 0;
    }

    .facile-one-faq-question {
        padding: 16px;
        gap: 12px;
    }

    .facile-one-faq-question span {
        font-size: var(--body-sm);
    }

    .facile-one-faq-question span b {
        width: 32px;
        height: 26px;
        margin-right: 7px;
    }

    .facile-one-faq-question i {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .facile-one-faq-answer {
        padding: 0 16px 18px;
    }

    .facile-one-faq-answer p {
        font-size: var(--body-sm);
    }
}

/* ─────────────────────────────────────────────
   FACILE ONE : CTA ACTIONS
───────────────────────────────────────────── */

.facile-one-cta-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.facile-one-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 190px;
    padding: 15px 30px;
    border-radius: var(--radius-round);
    text-decoration: none;
    font-size: var(--body-md);
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--secondary-color));
    border: 1px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.facile-one-btn i {
    transition: var(--transition);
}

.facile-one-btn:hover {
    color: var(--white);
    background: linear-gradient(135deg,
            var(--btn-secondary-hover),
            var(--primary-color));
    border-color: var(--btn-secondary-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.facile-one-btn:hover i {
    transform: translateX(4px);
}

/* ─────────────────────────────────────────────
   APP DOWNLOAD BUTTONS
───────────────────────────────────────────── */

.facile-one-app-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.facile-one-store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.facile-one-store-btn:hover {
    transform: translateY(-3px) scale(1.03);
}

.facile-one-store-btn img {
    display: block;
    height: 54px;
    width: auto;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */

/* Tablet */

@media (min-width:577px) and (max-width:992px) {

    .facile-one-btn {
        min-width: 170px;
        padding: 14px 24px;
    }

}

/* Mobile */

@media (min-width:391px) and (max-width:576px) {

    .facile-one-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .facile-one-btn {
        width: 100%;
        max-width: 320px;
    }

    .facile-one-app-buttons {
        gap: 14px;
    }

    .facile-one-store-btn img {
        height: 48px;
    }

}

/* Small Mobile */

@media (max-width:390px) {

    .facile-one-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .facile-one-btn {
        width: 100%;
        max-width: 100%;
        padding: 14px 22px;
    }

    .facile-one-store-btn img {
        height: 44px;
    }

}

/* ─── RESPONSIVE BREAKPOINTS ───
   Laptop       : 993px - 1199px
   Tablet       : 577px - 992px
   Mobile       : 391px - 576px
   Small Mobile : 390px and below
*/

/* ─── LAPTOP ─── */
@media (min-width: 993px) and (max-width: 1199px) {

    .facile-one-hero,
    .facile-one-features,
    .facile-one-benefits,
    .facile-one-cta {
        padding: var(--section-space-sm) 0;
    }

    .facile-one-hero-wrap {
        grid-template-columns: 1fr 470px;
        gap: 45px;
    }

    .facile-one-hero-image,
    .facile-one-img-box {
        width: 470px;
        height: 325px;
    }

    /* Feature cards: 2, 2, 2, 1 */
    .facile-one-features .container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .facile-one-section-head {
        grid-column: 1 / -1;
        margin-bottom: 16px;
    }

    .facile-one-feature-row-three,
    .facile-one-feature-row-four {
        display: contents;
    }

    .facile-one-feature-row {
        margin-bottom: 0;
    }

    .facile-one-feature-row-four .facile-one-feature-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 11px);
        justify-self: center;
    }

    .facile-one-feature-content {
        padding: 18px;
    }

    .facile-one-feature-content h3 {
        font-size: 20px;
    }

    .facile-one-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .facile-one-benefits-box,
    .facile-one-designed-box {
        padding: 28px;
        height: auto;
        min-height: 0;
    }

    .facile-one-benefits-wrap {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .facile-one-cta-box {
        padding: 50px;
    }

    .facile-one-feature-image {
        height: 190px;
        overflow: hidden;
    }

    .facile-one-feature-image img,
    .facile-one-feature-app {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .facile-one-designed-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 30px;
        row-gap: 10px;
        width: 100%;
    }
}

/* ─── TABLET ─── */
@media (min-width: 577px) and (max-width: 992px) {

    .facile-one-hero,
    .facile-one-features,
    .facile-one-benefits,
    .facile-one-cta {
        padding: var(--section-space-sm) 0;
    }

    .facile-one-hero-wrap,
    .facile-one-benefits-wrap {
        grid-template-columns: 1fr;
    }

    .facile-one-benefits-box,
    .facile-one-designed-box {
        padding: 24px;
        height: auto;
        min-height: 0;
    }

    .facile-one-hero-wrap {
        grid-template-columns: 1fr;
        gap: 42px;
        text-align: center;
    }

    .facile-one-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .facile-one-hero-image,
    .facile-one-img-box {
        width: 100%;
        max-width: 520px;
        height: 360px;
        margin: 0 auto;
    }

    .facile-one-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    /* Feature cards: 2, 2, 2, 1 */
    .facile-one-features .container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .facile-one-section-head {
        grid-column: 1 / -1;
        margin-bottom: 16px;
    }

    .facile-one-feature-row-three,
    .facile-one-feature-row-four {
        display: contents;
    }

    .facile-one-feature-row {
        margin-bottom: 0;
    }

    .facile-one-feature-row-four .facile-one-feature-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 11px);
        justify-self: center;
    }

    .facile-one-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .facile-one-designed-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 24px;
        row-gap: 10px;
    }

    .facile-one-cta-box {
        padding: 45px;
    }

    .facile-one-feature-image {
        height: 190px;
        overflow: hidden;
    }

    .facile-one-feature-image img,
    .facile-one-feature-app {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }
}

/* ─── MOBILE ─── */
@media (min-width: 391px) and (max-width: 576px) {

    .facile-one-hero,
    .facile-one-features,
    .facile-one-benefits,
    .facile-one-cta {
        padding: 55px 0;
    }

    .facile-one-hero-wrap,
    .facile-one-feature-row-three,
    .facile-one-feature-row-four,
    .facile-one-benefits-wrap,
    .facile-one-benefits-grid {
        grid-template-columns: 1fr;
    }

    .facile-one-hero-wrap {
        gap: 34px;
        text-align: center;
    }

    .facile-one-label {
        font-size: var(--body-xs);
        padding: 8px 15px;
        margin-bottom: 18px;
    }

    .facile-one-hero-content h1 {
        margin-bottom: 18px;
    }

    .facile-one-hero-content p {
        font-size: var(--body-sm);
        margin-left: auto;
        margin-right: auto;
    }

    .facile-one-hero-image,
    .facile-one-img-box {
        width: 100%;
        height: 280px;
    }

    .facile-one-img-box i {
        font-size: 58px;
    }

    .facile-one-section-head {
        margin-bottom: 32px;
    }

    .facile-one-section-head h2 {
        margin-bottom: 12px;
    }

    .facile-one-section-head p,
    .facile-one-feature-content p {
        font-size: var(--body-sm);
    }

    .facile-one-feature-row {
        gap: 20px;
        margin-bottom: 20px;
    }

    .facile-one-feature-content {
        padding: 20px;
    }

    .facile-one-benefits-box,
    .facile-one-designed-box {
        padding: 24px;
        border-radius: var(--radius-lg);
    }

    .facile-one-benefit-item {
        min-height: auto;
        padding: 18px;
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
    }

    .facile-one-cta-box {
        padding: 35px 24px;
    }
}

/* ─── SMALL MOBILE ─── */
@media (max-width: 390px) {

    .facile-one-hero,
    .facile-one-features,
    .facile-one-benefits,
    .facile-one-cta {
        padding: 45px 0;
    }

    .facile-one-hero-wrap,
    .facile-one-feature-row-three,
    .facile-one-feature-row-four,
    .facile-one-benefits-wrap,
    .facile-one-benefits-grid {
        grid-template-columns: 1fr;
    }

    .facile-one-hero-wrap {
        gap: 28px;
        text-align: center;
    }

    .facile-one-label {
        font-size: var(--body-xs);
        padding: 7px 13px;
        margin-bottom: 16px;
    }

    .facile-one-hero-content h1 {
        margin-bottom: 16px;
    }

    .facile-one-hero-content p {
        font-size: var(--body-sm);
        margin-left: auto;
        margin-right: auto;
    }

    .facile-one-hero-image,
    .facile-one-img-box {
        width: 100%;
        height: 240px;
    }

    .facile-one-img-box {
        border-radius: var(--radius-lg);
    }

    .facile-one-img-box i {
        font-size: 50px;
    }

    .facile-one-img-box span,
    .facile-one-section-head p,
    .facile-one-feature-content p,
    .facile-one-benefit-item span {
        font-size: var(--body-sm);
    }

    .facile-one-section-head {
        margin-bottom: 28px;
    }

    .facile-one-section-head h2 {
        margin-bottom: 10px;
    }

    .facile-one-feature-row {
        gap: 18px;
        margin-bottom: 18px;
    }

    .facile-one-feature-card,
    .facile-one-benefits-box,
    .facile-one-designed-box {
        border-radius: var(--radius-lg);
    }

    .facile-one-feature-content {
        padding: 18px;
    }

    .facile-one-feature-img i {
        font-size: 34px;
    }

    .facile-one-benefits-box,
    .facile-one-designed-box {
        padding: 20px;
    }

    .facile-one-benefit-item {
        min-height: auto;
        padding: 16px;
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
    }

    .facile-one-benefit-item i {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .facile-one-cta-box {
        padding: 30px 20px;
    }
}