:root {

    /* Brand Colors */
    --primary-color: #21336d;
    --secondary-color: #1e3a8a;
    --accent-color-1: #f5821f;
    --accent-color-2: #21336d;
    --muted-color: #667085;

    /* Neutral Colors */
    --black: #000000;
    --bg-light: #eef2f7;
    --bg-light-blue: #f8fbff;
    --bg-soft-blue: #eaf1fe;
    --bg-soft-green: #e6f7f7;
    --border-light: #e2e8f0;
    --border-medium: #c4cedb;

    /* Table */
    --table-head-text: var(--black);
    --table-head-bg: var(--bg-light);
    --table-tr-bg: var(--bg-soft-green);
    --table-border: var(--border-light);

    /* Card */
    --card-bg: var(--bg-light);
    --card-bg-1: var(--bg-light-blue);
    --card-border: var(--border-medium);
    --card-border-left: var(--primary-color);
    --card-border-left-2: var(--accent-color-1);

    /* Text */
    --text-color-1: var(--primary-color);
    --text-color-2: var(--secondary-color);
    --text-color-3: var(--muted-color);

    /* Badge */
    --batch-bg-1: var(--bg-soft-blue);
    --batch-bg-2: var(--secondary-color);
    --batch-bg-3: var(--primary-color);
    --batch-font-weight: 800;
}

/* =========================================================
   TEXT UTILITES
========================================================= */

.page-header__inner h1 {
    font-size: 60px !important;
}

@media (min-width: 993px) and (max-width: 1199px) {
    .page-header__inner h1 {
        font-size: 38px !important;
    }
}

@media (min-width: 577px) and (max-width: 992px) {
    .page-header__inner h1 {
        font-size: 34px !important;
    }
}

@media (min-width: 391px) and (max-width: 576px) {
    .page-header__inner h1 {
        font-size: 30px !important;
    }
}

@media (max-width: 390px) {
    .page-header__inner h1 {
        font-size: 26px !important;
    }
}

.aut-txt-blue {
    color: var(--primary-color) !important;
}

.aut-txt-orange {
    color: var(--accent-color-1) !important;
}

.aut-hero-title,
.aut-info-title,
.aut-act-title {
    color: var(--black);
}

/* =========================================================
   AUTOMATION PAGE - COMMON WRAPPER
========================================================= */

.aut-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .aut-wrap {
        max-width: 1160px;
    }
}

@media (min-width: 993px) and (max-width: 1199px) {
    .aut-wrap {
        max-width: 960px;
    }
}

@media (min-width: 577px) and (max-width: 992px) {
    .aut-wrap {
        max-width: 100%;
    }
}

@media (min-width: 391px) and (max-width: 576px) {
    .aut-wrap {
        max-width: 100%;
    }
}

@media (max-width: 390px) {
    .aut-wrap {
        max-width: 100%;
    }
}


/* =========================================================
   AUTOMATION PAGE - COMMON HERO SECTION
========================================================= */

.aut-hero-sec {
    position: relative;
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--bg-light-blue) 0%, #ffffff 48%, var(--bg-soft-blue) 100%);
    overflow: hidden;
}

.aut-hero-sec::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -100px;
    width: 360px;
    height: 360px;
    background: rgba(33, 51, 109, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.aut-hero-sec::after {
    content: "";
    position: absolute;
    left: -110px;
    bottom: -150px;
    width: 300px;
    height: 300px;
    background: rgba(245, 130, 31, 0.07);
    border-radius: 50%;
    pointer-events: none;
}

.aut-hero-box {
    position: relative;
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 55px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: 52px 58px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(33, 51, 109, 0.08);
}

.aut-hero-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 60px;
    width: 110px;
    height: 5px;
    background: var(--accent-color-1);
    border-radius: 0 0 8px 8px;
}

.aut-hero-title {
    max-width: 850px;
    margin: 0 0 24px;
    color: var(--primary-color);
    font-size: 46px;
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -1.2px;
}

.aut-hero-desc {
    max-width: 940px;
    margin: 0 0 17px;
    color: var(--text-color-3);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
}

.aut-hero-desc-last {
    margin-bottom: 0;
}


/* =========================================================
   DESKTOP - 1200px TO 1399px
========================================================= */

@media (min-width: 1200px) and (max-width: 1399px) {
    .aut-hero-sec {
        padding: 72px 24px;
    }

    .aut-hero-box {
        grid-template-columns: 1.35fr 0.65fr;
        gap: 48px;
        padding: 50px 54px;
    }

    .aut-hero-title {
        font-size: 43px;
    }

    .aut-hero-desc {
        font-size: 16.5px;
    }
}


/* =========================================================
   LAPTOP - 993px TO 1199px
========================================================= */

@media (min-width: 993px) and (max-width: 1199px) {
    .aut-hero-sec {
        padding: 62px 24px;
    }

    .aut-hero-box {
        grid-template-columns: 1.25fr 0.75fr;
        gap: 38px;
        padding: 46px 48px;
    }

    .aut-hero-box::before {
        left: 48px;
    }

    .aut-hero-title {
        max-width: 760px;
        font-size: 39px;
    }

    .aut-hero-desc {
        font-size: 16px;
        line-height: 1.75;
    }
}


/* =========================================================
   TABLET - 577px TO 992px
========================================================= */

@media (min-width: 577px) and (max-width: 992px) {
    .aut-hero-sec {
        padding: 52px 22px;
    }

    .aut-hero-sec::before {
        width: 280px;
        height: 280px;
    }

    .aut-hero-box {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 38px;
    }

    .aut-hero-box::before {
        left: 38px;
        width: 90px;
    }

    .aut-hero-title {
        margin-bottom: 20px;
        font-size: 34px;
        line-height: 1.18;
        letter-spacing: -0.7px;
    }

    .aut-hero-desc {
        margin-bottom: 15px;
        font-size: 15.5px;
        line-height: 1.7;
    }
}


/* =========================================================
   MOBILE - 391px TO 576px
========================================================= */

@media (min-width: 391px) and (max-width: 576px) {
    .aut-hero-sec {
        padding: 38px 16px;
    }

    .aut-hero-sec::before {
        top: -90px;
        right: -120px;
        width: 240px;
        height: 240px;
    }

    .aut-hero-sec::after {
        left: -100px;
        bottom: -120px;
        width: 220px;
        height: 220px;
    }

    .aut-hero-box {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 34px 25px;
    }

    .aut-hero-box::before {
        left: 25px;
        width: 75px;
        height: 4px;
    }

    .aut-hero-title {
        margin-bottom: 18px;
        font-size: 29px;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .aut-hero-desc {
        margin-bottom: 14px;
        font-size: 14.5px;
        line-height: 1.68;
    }
}


/* =========================================================
   SMALL MOBILE - 390px AND BELOW
========================================================= */

@media (max-width: 390px) {
    .aut-hero-sec {
        padding: 32px 13px;
    }

    .aut-hero-sec::before {
        top: -80px;
        right: -120px;
        width: 220px;
        height: 220px;
    }

    .aut-hero-sec::after {
        left: -100px;
        bottom: -110px;
        width: 200px;
        height: 200px;
    }

    .aut-hero-box {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 31px 20px;
    }

    .aut-hero-box::before {
        left: 20px;
        width: 65px;
        height: 4px;
    }

    .aut-hero-title {
        margin-bottom: 17px;
        font-size: 26px;
        line-height: 1.2;
        letter-spacing: -0.4px;
    }

    .aut-hero-desc {
        margin-bottom: 13px;
        font-size: 14px;
        line-height: 1.65;
    }
}

/* =========================================================
   AUTOMATION PAGE - COMMON INFO SECTION
========================================================= */

.aut-info-sec {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
}

.aut-info-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
    padding: 55px 60px;
    background: var(--bg-light-blue);
    border: 1px solid var(--border-light);
    border-radius: 24px;
}

.aut-info-title {
    margin: 0;
    color: var(--primary-color);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.aut-info-body {
    padding-top: 5px;
}

.aut-info-desc {
    margin: 0 0 18px;
    color: var(--text-color-3);
    font-size: 17px;
    line-height: 1.8;
}

.aut-info-desc-last {
    margin-bottom: 0;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .aut-info-sec {
        padding: 72px 24px;
    }

    .aut-info-grid {
        gap: 58px;
        padding: 50px 54px;
    }

    .aut-info-title {
        font-size: 38px;
    }

    .aut-info-desc {
        font-size: 16.5px;
    }
}

@media (min-width: 993px) and (max-width: 1199px) {
    .aut-info-sec {
        padding: 62px 24px;
    }

    .aut-info-grid {
        gap: 48px;
        padding: 46px 48px;
    }

    .aut-info-title {
        font-size: 35px;
    }

    .aut-info-desc {
        font-size: 16px;
        line-height: 1.75;
    }
}

@media (min-width: 577px) and (max-width: 992px) {
    .aut-info-sec {
        padding: 52px 22px;
    }

    .aut-info-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 40px 38px;
        border-radius: 20px;
    }

    .aut-info-title {
        max-width: 680px;
        font-size: 32px;
    }

    .aut-info-desc {
        font-size: 15.5px;
        line-height: 1.7;
    }
}

@media (min-width: 391px) and (max-width: 576px) {
    .aut-info-sec {
        padding: 38px 16px;
    }

    .aut-info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 34px 25px;
        border-radius: 18px;
    }

    .aut-info-title {
        font-size: 28px;
        line-height: 1.22;
    }

    .aut-info-desc {
        margin-bottom: 14px;
        font-size: 14.5px;
        line-height: 1.68;
    }
}

@media (max-width: 390px) {
    .aut-info-sec {
        padding: 32px 13px;
    }

    .aut-info-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 31px 20px;
        border-radius: 16px;
    }

    .aut-info-title {
        font-size: 25px;
        line-height: 1.22;
    }

    .aut-info-desc {
        margin-bottom: 13px;
        font-size: 14px;
        line-height: 1.65;
    }
}

/* =========================================================
   AUTOMATION PAGE - COMMON ACTIVITIES SECTION
========================================================= */

.aut-act-sec {
    width: 100%;
    padding: 80px 20px;
    background: var(--bg-light-blue);
}

.aut-act-head {
    max-width: 860px;
    margin: 0 auto 42px;
    text-align: center;
}

.aut-act-title {
    margin: 0 0 16px;
    color: var(--primary-color);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.aut-act-desc {
    margin: 0;
    color: var(--text-color-3);
    font-size: 17px;
    line-height: 1.75;
}

.aut-act-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.aut-act-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: auto;
    padding: 15px 20px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    transition: all 0.25s ease;
}

.aut-act-item:hover {
    transform: translateY(-2px);
    border-color: var(--border-medium);
    box-shadow: 0 10px 24px rgba(33, 51, 109, 0.08);
}

.aut-act-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    color: var(--primary-color);
    background: var(--bg-soft-blue);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 800;
}

.aut-act-item p {
    margin: 0;
    color: var(--text-color-1);
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.45;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .aut-act-sec {
        padding: 72px 24px;
    }

    .aut-act-title {
        font-size: 38px;
    }

    .aut-act-desc {
        font-size: 16.5px;
    }
}

@media (min-width: 993px) and (max-width: 1199px) {
    .aut-act-sec {
        padding: 62px 24px;
    }

    .aut-act-head {
        margin-bottom: 36px;
    }

    .aut-act-title {
        font-size: 35px;
    }

    .aut-act-desc {
        font-size: 16px;
    }

    .aut-act-item {
        min-height: 68px;
        padding: 16px 18px;
    }
}

@media (min-width: 577px) and (max-width: 992px) {
    .aut-act-sec {
        padding: 52px 22px;
    }

    .aut-act-head {
        margin-bottom: 32px;
    }

    .aut-act-title {
        font-size: 32px;
    }

    .aut-act-desc {
        font-size: 15.5px;
    }

    .aut-act-grid {
        gap: 15px;
    }

    .aut-act-item {
        min-height: 66px;
        padding: 15px 16px;
    }

    .aut-act-item p {
        font-size: 15px;
    }
}

@media (min-width: 391px) and (max-width: 576px) {
    .aut-act-sec {
        padding: 38px 16px;
    }

    .aut-act-head {
        margin-bottom: 28px;
    }

    .aut-act-title {
        margin-bottom: 14px;
        font-size: 28px;
        line-height: 1.22;
    }

    .aut-act-desc {
        font-size: 14.5px;
        line-height: 1.68;
    }

    .aut-act-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .aut-act-item {
        min-height: 62px;
        padding: 14px 15px;
    }

    .aut-act-icon {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
        font-size: 16px;
    }

    .aut-act-item p {
        font-size: 14.5px;
    }
}

@media (max-width: 390px) {
    .aut-act-sec {
        padding: 32px 13px;
    }

    .aut-act-head {
        margin-bottom: 24px;
    }

    .aut-act-title {
        margin-bottom: 13px;
        font-size: 25px;
        line-height: 1.22;
    }

    .aut-act-desc {
        font-size: 14px;
        line-height: 1.65;
    }

    .aut-act-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .aut-act-item {
        min-height: 60px;
        padding: 13px 14px;
        border-radius: 12px;
    }

    .aut-act-icon {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        font-size: 15px;
    }

    .aut-act-item p {
        font-size: 14px;
    }
}

/* =========================================================
   AUTOMATION PAGE - COMMON BENEFITS SECTION
========================================================= */

.aut-ben-sec {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
}

.aut-ben-head {
    max-width: 900px;
    margin: 0 auto 42px;
    text-align: center;
}

.aut-ben-title {
    margin: 0;
    color: var(--primary-color);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.aut-ben-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.aut-ben-card {
    position: relative;
    padding: 26px 24px;
    background: var(--bg-light-blue);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: all 0.25s ease;
}

.aut-ben-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-medium);
    box-shadow: 0 12px 28px rgba(33, 51, 109, 0.08);
}

.aut-ben-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    color: var(--primary-color);
    background: var(--bg-soft-blue);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-size: 19px;
}

.aut-ben-card h3 {
    margin: 0 0 10px;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}

.aut-ben-card p {
    margin: 0;
    color: var(--text-color-3);
    font-size: 15px;
    line-height: 1.7;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .aut-ben-sec {
        padding: 72px 24px;
    }

    .aut-ben-title {
        font-size: 38px;
    }

    .aut-ben-card {
        padding: 24px 22px;
    }
}

@media (min-width: 993px) and (max-width: 1199px) {
    .aut-ben-sec {
        padding: 62px 24px;
    }

    .aut-ben-title {
        font-size: 35px;
    }

    .aut-ben-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (min-width: 577px) and (max-width: 992px) {
    .aut-ben-sec {
        padding: 52px 22px;
    }

    .aut-ben-head {
        margin-bottom: 32px;
    }

    .aut-ben-title {
        font-size: 32px;
    }

    .aut-ben-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .aut-ben-card {
        padding: 22px 20px;
    }

    .aut-ben-card h3 {
        font-size: 17px;
    }

    .aut-ben-card p {
        font-size: 14.5px;
    }
}

@media (min-width: 391px) and (max-width: 576px) {
    .aut-ben-sec {
        padding: 38px 16px;
    }

    .aut-ben-head {
        margin-bottom: 28px;
    }

    .aut-ben-title {
        font-size: 28px;
        line-height: 1.22;
    }

    .aut-ben-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .aut-ben-card {
        padding: 20px 18px;
        border-radius: 14px;
    }

    .aut-ben-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 15px;
        font-size: 17px;
    }

    .aut-ben-card h3 {
        font-size: 16.5px;
    }

    .aut-ben-card p {
        font-size: 14.5px;
        line-height: 1.65;
    }
}

@media (max-width: 390px) {
    .aut-ben-sec {
        padding: 32px 13px;
    }

    .aut-ben-head {
        margin-bottom: 24px;
    }

    .aut-ben-title {
        font-size: 25px;
        line-height: 1.22;
    }

    .aut-ben-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .aut-ben-card {
        padding: 18px 16px;
        border-radius: 13px;
    }

    .aut-ben-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 14px;
        font-size: 16px;
    }

    .aut-ben-card h3 {
        font-size: 16px;
    }

    .aut-ben-card p {
        font-size: 14px;
        line-height: 1.65;
    }
}

/* =========================================================
   AUTOMATION PAGE - COMMON FEATURES SECTION
========================================================= */

.aut-feat-sec {
    width: 100%;
    padding: 80px 20px;
    background: var(--bg-light-blue);
}

.aut-feat-head {
    max-width: 920px;
    margin: 0 auto 42px;
    text-align: center;
}

.aut-feat-title {
    margin: 0;
    color: var(--primary-color);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.aut-feat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.aut-feat-card {
    position: relative;
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 16px;
    row-gap: 6px;
    align-items: start;
    padding: 22px 22px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 14px;
    transition: all 0.25s ease;
}

.aut-feat-card:hover {
    transform: translateY(-2px);
    border-left-color: var(--accent-color-1);
    box-shadow: 0 10px 26px rgba(33, 51, 109, 0.08);
}

.aut-feat-icon {
    grid-row: 1 / span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    background: var(--bg-soft-blue);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-size: 19px;
}

.aut-feat-card h3 {
    margin: 2px 0 0;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}

.aut-feat-card p {
    margin: 0;
    color: var(--text-color-3);
    font-size: 15px;
    line-height: 1.65;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .aut-feat-sec {
        padding: 72px 24px;
    }

    .aut-feat-title {
        font-size: 38px;
    }

    .aut-feat-card {
        padding: 21px 20px;
    }
}

@media (min-width: 993px) and (max-width: 1199px) {
    .aut-feat-sec {
        padding: 62px 24px;
    }

    .aut-feat-title {
        font-size: 35px;
    }

    .aut-feat-grid {
        gap: 16px;
    }

    .aut-feat-card {
        grid-template-columns: 48px 1fr;
        padding: 20px 18px;
    }

    .aut-feat-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .aut-feat-card h3 {
        font-size: 17px;
    }

    .aut-feat-card p {
        font-size: 14.5px;
    }
}

@media (min-width: 577px) and (max-width: 992px) {
    .aut-feat-sec {
        padding: 52px 22px;
    }

    .aut-feat-head {
        margin-bottom: 32px;
    }

    .aut-feat-title {
        font-size: 32px;
    }

    .aut-feat-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .aut-feat-card {
        grid-template-columns: 48px 1fr;
        padding: 20px 18px;
    }

    .aut-feat-icon {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }

    .aut-feat-card h3 {
        font-size: 17px;
    }

    .aut-feat-card p {
        font-size: 14.5px;
    }
}

@media (min-width: 391px) and (max-width: 576px) {
    .aut-feat-sec {
        padding: 38px 16px;
    }

    .aut-feat-head {
        margin-bottom: 28px;
    }

    .aut-feat-title {
        font-size: 28px;
        line-height: 1.22;
    }

    .aut-feat-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .aut-feat-card {
        grid-template-columns: 44px 1fr;
        column-gap: 13px;
        padding: 18px 16px;
        border-radius: 13px;
    }

    .aut-feat-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 10px;
    }

    .aut-feat-card h3 {
        font-size: 16.5px;
    }

    .aut-feat-card p {
        font-size: 14.5px;
        line-height: 1.62;
    }
}

@media (max-width: 390px) {
    .aut-feat-sec {
        padding: 32px 13px;
    }

    .aut-feat-head {
        margin-bottom: 24px;
    }

    .aut-feat-title {
        font-size: 25px;
        line-height: 1.22;
    }

    .aut-feat-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .aut-feat-card {
        grid-template-columns: 42px 1fr;
        column-gap: 12px;
        padding: 16px 14px;
        border-radius: 12px;
    }

    .aut-feat-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
        border-radius: 9px;
    }

    .aut-feat-card h3 {
        font-size: 16px;
    }

    .aut-feat-card p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* =========================================================
   AUTOMATION PAGE - FACILE ONE SECTION
========================================================= */

.aut-one-sec {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
}

.aut-one-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.aut-one-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.aut-one-img-box {
    position: relative;
    width: 100%;
    max-width: 470px;
    padding: 35px;
    background: linear-gradient(145deg, var(--bg-light-blue), var(--bg-soft-blue));
    border: 1px solid var(--border-light);
    border-radius: 28px;
    overflow: hidden;
}

.aut-one-img-box::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: rgba(245, 130, 31, 0.10);
    border-radius: 50%;
}

.aut-one-img-box::after {
    content: "";
    position: absolute;
    left: -70px;
    bottom: -80px;
    width: 200px;
    height: 200px;
    background: rgba(33, 51, 109, 0.08);
    border-radius: 50%;
}

.aut-one-img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    margin: 0 auto;
}

.aut-one-title {
    margin: 0 0 18px;
    color: var(--primary-color);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.aut-one-desc {
    margin: 0 0 16px;
    color: var(--text-color-3);
    font-size: 16px;
    line-height: 1.75;
}

.aut-one-subtitle {
    margin: 28px 0 18px;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
}

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

.aut-one-item {
    display: flex;
    align-items: center;
    gap: 11px;
}

.aut-one-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    color: var(--primary-color);
    background: var(--bg-soft-blue);
    border: 1px solid var(--border-light);
    border-radius: 9px;
    font-size: 14px;
}

.aut-one-item p {
    margin: 0;
    color: var(--text-color-1);
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.45;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .aut-one-sec {
        padding: 72px 24px;
    }

    .aut-one-grid {
        gap: 52px;
    }

    .aut-one-title {
        font-size: 38px;
    }
}

@media (min-width: 993px) and (max-width: 1199px) {
    .aut-one-sec {
        padding: 62px 24px;
    }

    .aut-one-grid {
        gap: 44px;
    }

    .aut-one-img-box {
        max-width: 420px;
        padding: 30px;
    }

    .aut-one-title {
        font-size: 35px;
    }

    .aut-one-desc {
        font-size: 15.5px;
    }
}

@media (min-width: 577px) and (max-width: 992px) {
    .aut-one-sec {
        padding: 52px 22px;
    }

    .aut-one-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .aut-one-img-box {
        max-width: 430px;
        padding: 30px;
    }

    .aut-one-title {
        font-size: 32px;
    }

    .aut-one-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 391px) and (max-width: 576px) {
    .aut-one-sec {
        padding: 38px 16px;
    }

    .aut-one-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .aut-one-img-box {
        max-width: 360px;
        padding: 24px;
        border-radius: 22px;
    }

    .aut-one-title {
        font-size: 28px;
        line-height: 1.22;
    }

    .aut-one-desc {
        font-size: 14.5px;
        line-height: 1.68;
    }

    .aut-one-subtitle {
        margin-top: 24px;
        font-size: 21px;
    }

    .aut-one-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .aut-one-item p {
        font-size: 14.5px;
    }
}

@media (max-width: 390px) {
    .aut-one-sec {
        padding: 32px 13px;
    }

    .aut-one-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .aut-one-img-box {
        max-width: 320px;
        padding: 20px;
        border-radius: 20px;
    }

    .aut-one-title {
        font-size: 25px;
        line-height: 1.22;
    }

    .aut-one-desc {
        font-size: 14px;
        line-height: 1.65;
    }

    .aut-one-subtitle {
        margin-top: 22px;
        font-size: 20px;
    }

    .aut-one-list {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .aut-one-item span {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        font-size: 13px;
    }

    .aut-one-item p {
        font-size: 14px;
    }
}

/* =========================================================
   AUTOMATION PAGE - FACILE ONE FEATURES SECTION
========================================================= */

.aut-onefeat-sec {
    width: 100%;
    padding: 80px 20px;
    background: var(--bg-light-blue);
}

.aut-onefeat-head {
    max-width: 900px;
    margin: 0 auto 42px;
    text-align: center;
}

.aut-onefeat-title {
    margin: 0;
    color: var(--primary-color);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.aut-onefeat-list {
    max-width: 980px;
    margin: 0 auto;
}

.aut-onefeat-row {
    display: grid;
    grid-template-columns: 58px 52px 1fr;
    gap: 18px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid var(--border-light);
}

.aut-onefeat-row:first-child {
    border-top: 1px solid var(--border-light);
}

.aut-onefeat-num {
    color: rgba(33, 51, 109, 0.55);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.aut-onefeat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--accent-color-1);
    /* background: var(--bg-soft-blue); */
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-size: 19px;
}

.aut-onefeat-content h3 {
    margin: 0 0 6px;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}

.aut-onefeat-content p {
    margin: 0;
    color: var(--text-color-3);
    font-size: 15px;
    line-height: 1.68;
}

.aut-onefeat-row:hover .aut-onefeat-num {
    color: var(--accent-color-1);
}

.aut-onefeat-row:hover .aut-onefeat-icon {
    background: #fff5ec;
    border-color: rgba(245, 130, 31, 0.35);
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .aut-onefeat-sec {
        padding: 72px 24px;
    }

    .aut-onefeat-title {
        font-size: 38px;
    }
}

@media (min-width: 993px) and (max-width: 1199px) {
    .aut-onefeat-sec {
        padding: 62px 24px;
    }

    .aut-onefeat-title {
        font-size: 35px;
    }

    .aut-onefeat-row {
        grid-template-columns: 54px 48px 1fr;
        gap: 16px;
        padding: 20px 0;
    }

    .aut-onefeat-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

@media (min-width: 577px) and (max-width: 992px) {
    .aut-onefeat-sec {
        padding: 52px 22px;
    }

    .aut-onefeat-head {
        margin-bottom: 32px;
    }

    .aut-onefeat-title {
        font-size: 32px;
    }

    .aut-onefeat-row {
        grid-template-columns: 48px 44px 1fr;
        gap: 14px;
        padding: 18px 0;
    }

    .aut-onefeat-num {
        font-size: 24px;
    }

    .aut-onefeat-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (min-width: 391px) and (max-width: 576px) {
    .aut-onefeat-sec {
        padding: 38px 16px;
    }

    .aut-onefeat-head {
        margin-bottom: 28px;
    }

    .aut-onefeat-title {
        font-size: 28px;
        line-height: 1.22;
    }

    .aut-onefeat-row {
        grid-template-columns: 42px 1fr;
        gap: 12px;
        padding: 17px 0;
    }

    .aut-onefeat-num {
        grid-row: 1;
        font-size: 22px;
    }

    .aut-onefeat-icon {
        display: none;
    }

    .aut-onefeat-content {
        grid-column: 2;
    }

    .aut-onefeat-content h3 {
        font-size: 16.5px;
    }

    .aut-onefeat-content p {
        font-size: 14.5px;
        line-height: 1.64;
    }
}

@media (max-width: 390px) {
    .aut-onefeat-sec {
        padding: 32px 13px;
    }

    .aut-onefeat-head {
        margin-bottom: 24px;
    }

    .aut-onefeat-title {
        font-size: 25px;
        line-height: 1.22;
    }

    .aut-onefeat-row {
        grid-template-columns: 38px 1fr;
        gap: 10px;
        padding: 15px 0;
    }

    .aut-onefeat-num {
        font-size: 20px;
    }

    .aut-onefeat-icon {
        display: none;
    }

    .aut-onefeat-content {
        grid-column: 2;
    }

    .aut-onefeat-content h3 {
        font-size: 16px;
    }

    .aut-onefeat-content p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* =========================================================
   AUTOMATION PAGE - COMMON USERS SECTION
========================================================= */

.aut-user-sec {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
}

.aut-user-head {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.aut-user-title {
    margin: 0 0 14px;
    color: var(--primary-color);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.aut-user-desc {
    margin: 0;
    color: var(--text-color-3);
    font-size: 17px;
    line-height: 1.7;
}

.aut-user-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.aut-user-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 150px;
    padding: 20px 16px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    text-align: center;
    transition: all 0.25s ease;
}

.aut-user-item:hover {
    transform: translateY(-3px);
    border-color: var(--border-medium);
    box-shadow: 0 10px 25px rgba(33, 51, 109, 0.08);
}

.aut-user-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    font-size: 19px;
    transition: all 0.25s ease;
}

.aut-user-item:nth-child(odd) .aut-user-icon {
    background: var(--bg-soft-blue);
    color: var(--primary-color);
    border-color: rgba(33, 51, 109, 0.15);
}

.aut-user-item:nth-child(even) .aut-user-icon {
    background: #fff3e8;
    color: var(--accent-color-1);
    border-color: rgba(245, 130, 31, 0.15);
}

.aut-user-item:nth-child(odd):hover .aut-user-icon {
    background: #fff3e8;
    color: var(--accent-color-1);
    border-color: rgba(245, 130, 31, 0.35);
}

.aut-user-item:nth-child(even):hover .aut-user-icon {
    background: var(--bg-soft-blue);
    color: var(--primary-color);
    border-color: rgba(33, 51, 109, 0.30);
}

.aut-user-item p {
    margin: 0;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .aut-user-sec {
        padding: 72px 24px;
    }

    .aut-user-title {
        font-size: 38px;
    }

    .aut-user-item {
        min-height: 145px;
    }
}

@media (min-width: 993px) and (max-width: 1199px) {
    .aut-user-sec {
        padding: 62px 24px;
    }

    .aut-user-title {
        font-size: 35px;
    }

    .aut-user-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 577px) and (max-width: 992px) {
    .aut-user-sec {
        padding: 52px 22px;
    }

    .aut-user-head {
        margin-bottom: 32px;
    }

    .aut-user-title {
        font-size: 32px;
    }

    .aut-user-desc {
        font-size: 15.5px;
    }

    .aut-user-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .aut-user-item {
        min-height: 135px;
    }
}

@media (min-width: 391px) and (max-width: 576px) {
    .aut-user-sec {
        padding: 38px 16px;
    }

    .aut-user-head {
        margin-bottom: 28px;
    }

    .aut-user-title {
        font-size: 28px;
        line-height: 1.22;
    }

    .aut-user-desc {
        font-size: 14.5px;
    }

    .aut-user-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .aut-user-item {
        min-height: 125px;
        padding: 16px 12px;
        border-radius: 14px;
    }

    .aut-user-icon {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .aut-user-item p {
        font-size: 14px;
    }
}

@media (max-width: 390px) {
    .aut-user-sec {
        padding: 32px 13px;
    }

    .aut-user-head {
        margin-bottom: 24px;
    }

    .aut-user-title {
        font-size: 25px;
        line-height: 1.22;
    }

    .aut-user-desc {
        font-size: 14px;
    }

    .aut-user-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .aut-user-item {
        flex-direction: row;
        justify-content: flex-start;
        min-height: auto;
        padding: 14px;
        text-align: left;
    }

    .aut-user-icon {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        font-size: 15px;
    }

    .aut-user-item p {
        font-size: 14px;
    }
}

/* =========================================================
   AUTOMATION PAGE - COMMON NEED SECTION
========================================================= */

.aut-need-sec {
    width: 100%;
    padding: 80px 20px;
    background: var(--bg-light-blue);
}

.aut-need-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.aut-need-head {
    position: relative;
    padding-left: 28px;
}

.aut-need-head::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 5px;
    height: calc(100% - 8px);
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--primary-color) 50%, var(--accent-color-1) 50%, var(--accent-color-1) 100%);
    border-radius: 10px;
}

.aut-need-label {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--accent-color-1);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.aut-need-title {
    margin: 0;
    color: var(--primary-color);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.aut-need-content {
    display: flex;
    flex-direction: column;
}

.aut-need-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    padding: 26px 0;
    border-bottom: 1px solid var(--border-light);
}

.aut-need-row:first-child {
    border-top: 1px solid var(--border-light);
}

.aut-need-num {
    color: rgba(33, 51, 109, 0.45);
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.aut-need-row:nth-child(even) .aut-need-num {
    color: rgba(245, 130, 31, 0.60);
}

.aut-need-text h3 {
    margin: 0 0 9px;
    color: var(--primary-color);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.35;
}

.aut-need-text p {
    margin: 0;
    color: var(--text-color-3);
    font-size: 16px;
    line-height: 1.75;
}

.aut-need-row:hover .aut-need-num {
    color: var(--accent-color-1);
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .aut-need-sec {
        padding: 72px 24px;
    }

    .aut-need-grid {
        gap: 58px;
    }

    .aut-need-title {
        font-size: 38px;
    }
}

@media (min-width: 993px) and (max-width: 1199px) {
    .aut-need-sec {
        padding: 62px 24px;
    }

    .aut-need-grid {
        gap: 48px;
    }

    .aut-need-title {
        font-size: 35px;
    }

    .aut-need-row {
        grid-template-columns: 56px 1fr;
        gap: 18px;
        padding: 22px 0;
    }

    .aut-need-num {
        font-size: 27px;
    }

    .aut-need-text h3 {
        font-size: 18px;
    }

    .aut-need-text p {
        font-size: 15.5px;
    }
}

@media (min-width: 577px) and (max-width: 992px) {
    .aut-need-sec {
        padding: 52px 22px;
    }

    .aut-need-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .aut-need-title {
        max-width: 680px;
        font-size: 32px;
    }

    .aut-need-row {
        padding: 20px 0;
    }

    .aut-need-text p {
        font-size: 15px;
    }
}

@media (min-width: 391px) and (max-width: 576px) {
    .aut-need-sec {
        padding: 38px 16px;
    }

    .aut-need-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .aut-need-head {
        padding-left: 20px;
    }

    .aut-need-title {
        font-size: 28px;
        line-height: 1.22;
    }

    .aut-need-row {
        grid-template-columns: 45px 1fr;
        gap: 14px;
        padding: 18px 0;
    }

    .aut-need-num {
        font-size: 23px;
    }

    .aut-need-text h3 {
        font-size: 16.5px;
    }

    .aut-need-text p {
        font-size: 14.5px;
        line-height: 1.65;
    }
}

@media (max-width: 390px) {
    .aut-need-sec {
        padding: 32px 13px;
    }

    .aut-need-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .aut-need-head {
        padding-left: 18px;
    }

    .aut-need-label {
        margin-bottom: 12px;
        font-size: 10px;
    }

    .aut-need-title {
        font-size: 25px;
        line-height: 1.22;
    }

    .aut-need-row {
        grid-template-columns: 40px 1fr;
        gap: 12px;
        padding: 16px 0;
    }

    .aut-need-num {
        font-size: 21px;
    }

    .aut-need-text h3 {
        margin-bottom: 7px;
        font-size: 16px;
    }

    .aut-need-text p {
        font-size: 14px;
        line-height: 1.62;
    }
}

/* =========================================================
   AUTOMATION PAGE - COMMON CTA SECTION
========================================================= */

.aut-cta-sec {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
}

.aut-cta-box {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 50px;
    align-items: center;
    padding: 54px 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #172652 100%);
    border-radius: 24px;
    overflow: hidden;
}

.aut-cta-box::before {
    content: "";
    position: absolute;
    top: -110px;
    right: 120px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.aut-cta-box::after {
    content: "";
    position: absolute;
    left: -90px;
    bottom: -120px;
    width: 250px;
    height: 250px;
    background: rgba(245, 130, 31, 0.10);
    border-radius: 50%;
}

.aut-cta-content {
    position: relative;
    z-index: 2;
}

.aut-cta-title {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.aut-cta-desc {
    max-width: 820px;
    margin: 0 0 15px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.75;
}

.aut-cta-line {
    margin-top: 24px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
}

.aut-cta-line span {
    color: var(--accent-color-1);
}

.aut-cta-iconbox {
    position: relative;
    z-index: 2;
    min-height: 220px;
}

.aut-cta-icon {
    position: absolute;
    top: 20px;
    left: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    color: var(--primary-color);
    background: #ffffff;
    border-radius: 22px;
    font-size: 36px;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.15);
    transform: rotate(-8deg);
}

.aut-cta-icon-two {
    top: 110px;
    left: 10px;
    width: 72px;
    height: 72px;
    color: var(--accent-color-1);
    font-size: 28px;
    transform: rotate(8deg);
}

.aut-cta-icon-three {
    top: 120px;
    left: 140px;
    width: 68px;
    height: 68px;
    color: var(--primary-color);
    background: var(--bg-soft-blue);
    font-size: 25px;
    transform: rotate(10deg);
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .aut-cta-sec {
        padding: 72px 24px;
    }

    .aut-cta-box {
        grid-template-columns: 1fr 250px;
        padding: 50px 54px;
    }

    .aut-cta-title {
        font-size: 39px;
    }
}

@media (min-width: 993px) and (max-width: 1199px) {
    .aut-cta-sec {
        padding: 62px 24px;
    }

    .aut-cta-box {
        grid-template-columns: 1fr 220px;
        gap: 40px;
        padding: 46px 48px;
    }

    .aut-cta-title {
        font-size: 36px;
    }

    .aut-cta-desc {
        font-size: 15.5px;
    }

    .aut-cta-icon {
        left: 55px;
        width: 82px;
        height: 82px;
        font-size: 32px;
    }
}

@media (min-width: 577px) and (max-width: 992px) {
    .aut-cta-sec {
        padding: 52px 22px;
    }

    .aut-cta-box {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 42px 38px;
        border-radius: 20px;
    }

    .aut-cta-title {
        font-size: 32px;
    }

    .aut-cta-iconbox {
        display: none;
    }
}

@media (min-width: 391px) and (max-width: 576px) {
    .aut-cta-sec {
        padding: 38px 16px;
    }

    .aut-cta-box {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 34px 25px;
        border-radius: 18px;
    }

    .aut-cta-title {
        font-size: 28px;
        line-height: 1.22;
    }

    .aut-cta-desc {
        font-size: 14.5px;
        line-height: 1.68;
    }

    .aut-cta-line {
        margin-top: 20px;
        font-size: 18px;
    }

    .aut-cta-iconbox {
        display: none;
    }
}

@media (max-width: 390px) {
    .aut-cta-sec {
        padding: 32px 13px;
    }

    .aut-cta-box {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        border-radius: 16px;
    }

    .aut-cta-title {
        font-size: 25px;
        line-height: 1.22;
    }

    .aut-cta-desc {
        font-size: 14px;
        line-height: 1.65;
    }

    .aut-cta-line {
        margin-top: 18px;
        font-size: 17px;
    }

    .aut-cta-iconbox {
        display: none;
    }
}

/* =========================================================
   AUTOMATION PAGE - FACILE HUB SECTION
========================================================= */

.aut-hub-sec {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
}

.aut-hub-head {
    max-width: 900px;
    margin: 0 auto 55px;
    text-align: center;
}

.aut-hub-title {
    margin: 0 0 18px;
    color: var(--primary-color);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.aut-hub-desc {
    margin: 0 auto 14px;
    color: var(--text-color-3);
    font-size: 16px;
    line-height: 1.75;
}

.aut-hub-desc-last {
    margin-bottom: 0;
}

.aut-hub-layout {
    display: grid;
    grid-template-columns: 1fr 190px 1fr;
    gap: 38px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}

.aut-hub-side {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.aut-hub-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 60px;
}

.aut-hub-item p {
    margin: 0;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
}

.aut-hub-item span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    color: var(--primary-color);
    background: var(--bg-soft-blue);
    border: 1px solid rgba(33, 51, 109, 0.14);
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.25s ease;
}

.aut-hub-left .aut-hub-item {
    justify-content: flex-end;
    text-align: right;
}

.aut-hub-right .aut-hub-item {
    justify-content: flex-start;
    text-align: left;
}

.aut-hub-left .aut-hub-item::after {
    content: "";
    position: absolute;
    right: -39px;
    width: 38px;
    height: 1px;
    background: var(--border-medium);
}

.aut-hub-right .aut-hub-item::before {
    content: "";
    position: absolute;
    left: -39px;
    width: 38px;
    height: 1px;
    background: var(--border-medium);
}

.aut-hub-side .aut-hub-item:nth-child(even) span {
    color: var(--accent-color-1);
    background: #fff3e8;
    border-color: rgba(245, 130, 31, 0.18);
}

.aut-hub-item:hover span {
    transform: scale(1.08);
}

.aut-hub-side .aut-hub-item:nth-child(odd):hover span {
    color: var(--accent-color-1);
    background: #fff3e8;
}

.aut-hub-side .aut-hub-item:nth-child(even):hover span {
    color: var(--primary-color);
    background: var(--bg-soft-blue);
}

.aut-hub-center {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.aut-hub-center::before {
    content: "";
    position: absolute;
    width: 185px;
    height: 185px;
    border: 1px dashed rgba(33, 51, 109, 0.20);
    border-radius: 50%;
}

.aut-hub-center::after {
    content: "";
    position: absolute;
    width: 138px;
    height: 138px;
    border: 1px solid rgba(245, 130, 31, 0.14);
    border-radius: 50%;
}

.aut-hub-core {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 118px;
    height: 118px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 14px 35px rgba(33, 51, 109, 0.18);
}

.aut-hub-core-icon {
    margin-bottom: 7px;
    color: var(--accent-color-1);
    font-size: 27px;
}

.aut-hub-core strong {
    color: #ffffff;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0.5px;
}


/* =========================================================
   DESKTOP - 1200px TO 1399px
========================================================= */

@media (min-width: 1200px) and (max-width: 1399px) {
    .aut-hub-sec {
        padding: 72px 24px;
    }

    .aut-hub-title {
        font-size: 38px;
    }

    .aut-hub-layout {
        grid-template-columns: 1fr 180px 1fr;
        gap: 34px;
    }

    .aut-hub-item p {
        font-size: 15.5px;
    }

    .aut-hub-item span {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        font-size: 17px;
    }

    .aut-hub-center::before {
        width: 175px;
        height: 175px;
    }

    .aut-hub-center::after {
        width: 132px;
        height: 132px;
    }

    .aut-hub-core {
        width: 112px;
        height: 112px;
    }

    .aut-hub-core-icon {
        font-size: 26px;
    }

    .aut-hub-core strong {
        font-size: 18px;
    }
}


/* =========================================================
   LAPTOP - 993px TO 1199px
========================================================= */

@media (min-width: 993px) and (max-width: 1199px) {
    .aut-hub-sec {
        padding: 62px 24px;
    }

    .aut-hub-title {
        font-size: 35px;
    }

    .aut-hub-layout {
        grid-template-columns: 1fr 160px 1fr;
        gap: 30px;
    }

    .aut-hub-item p {
        font-size: 15px;
    }

    .aut-hub-item span {
        width: 46px;
        height: 46px;
        flex: 0 0 46px;
        font-size: 17px;
    }

    .aut-hub-center {
        min-height: 320px;
    }

    .aut-hub-center::before {
        width: 155px;
        height: 155px;
    }

    .aut-hub-center::after {
        width: 118px;
        height: 118px;
    }

    .aut-hub-core {
        width: 104px;
        height: 104px;
    }

    .aut-hub-core-icon {
        font-size: 24px;
    }

    .aut-hub-core strong {
        font-size: 17px;
    }

    .aut-hub-left .aut-hub-item::after {
        right: -31px;
        width: 30px;
    }

    .aut-hub-right .aut-hub-item::before {
        left: -31px;
        width: 30px;
    }
}


/* =========================================================
   TABLET - 577px TO 992px
========================================================= */

@media (min-width: 577px) and (max-width: 992px) {
    .aut-hub-sec {
        padding: 52px 22px;
    }

    .aut-hub-head {
        margin-bottom: 36px;
    }

    .aut-hub-title {
        font-size: 32px;
    }

    .aut-hub-desc {
        font-size: 15.5px;
    }

    .aut-hub-layout {
        grid-template-columns: 1fr 125px 1fr;
        gap: 20px;
    }

    .aut-hub-center {
        min-height: 300px;
    }

    .aut-hub-center::before {
        width: 120px;
        height: 120px;
    }

    .aut-hub-center::after {
        width: 94px;
        height: 94px;
    }

    .aut-hub-core {
        width: 84px;
        height: 84px;
    }

    .aut-hub-core-icon {
        font-size: 20px;
    }

    .aut-hub-core strong {
        font-size: 14px;
    }

    .aut-hub-item span {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        font-size: 15px;
    }

    .aut-hub-left .aut-hub-item::after,
    .aut-hub-right .aut-hub-item::before {
        display: none;
    }

    .aut-hub-item p {
        font-size: 14px;
    }
}


/* =========================================================
   MOBILE - 391px TO 576px
========================================================= */

@media (min-width: 391px) and (max-width: 576px) {
    .aut-hub-sec {
        padding: 38px 16px;
    }

    .aut-hub-head {
        margin-bottom: 30px;
    }

    .aut-hub-title {
        font-size: 28px;
        line-height: 1.22;
    }

    .aut-hub-desc {
        font-size: 14.5px;
        line-height: 1.68;
    }

    .aut-hub-layout {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .aut-hub-center {
        order: 1;
        min-height: 155px;
    }

    .aut-hub-left {
        order: 2;
    }

    .aut-hub-right {
        order: 3;
    }

    .aut-hub-center::before {
        width: 140px;
        height: 140px;
    }

    .aut-hub-center::after {
        width: 105px;
        height: 105px;
    }

    .aut-hub-core {
        width: 86px;
        height: 86px;
    }

    .aut-hub-core-icon {
        font-size: 20px;
    }

    .aut-hub-core strong {
        font-size: 14px;
    }

    .aut-hub-side {
        width: 100%;
        gap: 10px;
    }

    .aut-hub-item,
    .aut-hub-left .aut-hub-item,
    .aut-hub-right .aut-hub-item {
        justify-content: flex-start;
        text-align: left;
    }

    .aut-hub-left .aut-hub-item {
        flex-direction: row-reverse;
    }

    .aut-hub-left .aut-hub-item::after,
    .aut-hub-right .aut-hub-item::before {
        display: none;
    }

    .aut-hub-item {
        padding: 12px 14px;
        background: var(--bg-light-blue);
        border: 1px solid var(--border-light);
        border-radius: 12px;
    }

    .aut-hub-item span {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        font-size: 15px;
    }

    .aut-hub-item p {
        font-size: 14.5px;
    }
}


/* =========================================================
   SMALL MOBILE - 390px AND BELOW
========================================================= */

@media (max-width: 390px) {
    .aut-hub-sec {
        padding: 32px 13px;
    }

    .aut-hub-head {
        margin-bottom: 26px;
    }

    .aut-hub-title {
        font-size: 25px;
        line-height: 1.22;
    }

    .aut-hub-desc {
        font-size: 14px;
        line-height: 1.65;
    }

    .aut-hub-layout {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .aut-hub-center {
        order: 1;
        min-height: 145px;
    }

    .aut-hub-left {
        order: 2;
    }

    .aut-hub-right {
        order: 3;
    }

    .aut-hub-center::before {
        width: 128px;
        height: 128px;
    }

    .aut-hub-center::after {
        width: 96px;
        height: 96px;
    }

    .aut-hub-core {
        width: 80px;
        height: 80px;
    }

    .aut-hub-core-icon {
        font-size: 19px;
    }

    .aut-hub-core strong {
        font-size: 13px;
    }

    .aut-hub-side {
        width: 100%;
        gap: 9px;
    }

    .aut-hub-item,
    .aut-hub-left .aut-hub-item,
    .aut-hub-right .aut-hub-item {
        justify-content: flex-start;
        text-align: left;
    }

    .aut-hub-left .aut-hub-item {
        flex-direction: row-reverse;
    }

    .aut-hub-left .aut-hub-item::after,
    .aut-hub-right .aut-hub-item::before {
        display: none;
    }

    .aut-hub-item {
        padding: 11px 12px;
        background: var(--bg-light-blue);
        border: 1px solid var(--border-light);
        border-radius: 11px;
    }

    .aut-hub-item span {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        font-size: 14px;
    }

    .aut-hub-item p {
        font-size: 14px;
    }
}

/* =========================================================
   AUTOMATION PAGE - HERO SHAPES / TREE
========================================================= */

.aut-hero-tree {
    position: relative;
    width: 100%;
    max-width: 330px;
    min-height: 390px;
    margin: 0 auto;
    padding: 20px 0;
}

.aut-tree-line {
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color-1), var(--primary-color));
    transform: translateX(-50%);
    opacity: 0.25;
}

.aut-tree-item {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 82px;
    margin-bottom: 12px;
}

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

.aut-tree-left {
    justify-content: flex-start;
    padding-right: 48%;
}

.aut-tree-right {
    justify-content: flex-end;
    padding-left: 48%;
}

.aut-tree-item::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 42px;
    height: 2px;
    background: var(--border-medium);
}

.aut-tree-left::before {
    left: calc(50% - 42px);
}

.aut-tree-right::before {
    left: 50%;
}

.aut-tree-node {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    background: var(--bg-soft-blue);
    border: 1px solid rgba(33, 51, 109, 0.15);
    font-size: 18px;
    transform: translate(-50%, -50%);
    transition: all 0.25s ease;
}

.aut-tree-circle {
    border-radius: 50%;
}

.aut-tree-square {
    color: var(--accent-color-1);
    background: #fff3e8;
    border-color: rgba(245, 130, 31, 0.18);
    border-radius: 12px;
}

.aut-tree-diamond {
    border-radius: 10px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.aut-tree-diamond i {
    transform: rotate(-45deg);
}

.aut-tree-hex {
    color: var(--accent-color-1);
    background: #fff3e8;
    border: 0;
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
}

.aut-tree-text {
    width: 125px;
    padding: 11px 12px;
    background: var(--bg-light-blue);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    transition: all 0.25s ease;
}

.aut-tree-left .aut-tree-text {
    text-align: right;
}

.aut-tree-right .aut-tree-text {
    text-align: left;
}

.aut-tree-text p {
    margin: 0;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.aut-tree-item:hover .aut-tree-text {
    border-color: rgba(245, 130, 31, 0.30);
    box-shadow: 0 8px 20px rgba(33, 51, 109, 0.07);
}

.aut-tree-item:hover .aut-tree-node {
    color: var(--accent-color-1);
    background: #fff3e8;
    border-color: rgba(245, 130, 31, 0.30);
}

.aut-tree-item:hover .aut-tree-square,
.aut-tree-item:hover .aut-tree-hex {
    color: var(--primary-color);
    background: var(--bg-soft-blue);
}


/* =========================================================
   DESKTOP - 1200px TO 1399px
========================================================= */

@media (min-width: 1200px) and (max-width: 1399px) {
    .aut-hero-tree {
        max-width: 310px;
        min-height: 370px;
    }
}


/* =========================================================
   LAPTOP - 993px TO 1199px
========================================================= */

@media (min-width: 993px) and (max-width: 1199px) {
    .aut-hero-tree {
        max-width: 285px;
        min-height: 360px;
    }

    .aut-tree-text {
        width: 110px;
        padding: 10px;
    }

    .aut-tree-text p {
        font-size: 12.5px;
    }

    .aut-tree-node {
        width: 46px;
        height: 46px;
        font-size: 17px;
    }
}


/* =========================================================
   TABLET - 577px TO 992px
========================================================= */

@media (min-width: 577px) and (max-width: 992px) {
    .aut-hero-tree {
        max-width: 500px;
        min-height: auto;
        padding: 15px 0;
    }

    .aut-tree-line {
        top: 20px;
        bottom: 20px;
    }

    .aut-tree-text {
        width: 180px;
    }
}


/* =========================================================
   MOBILE - 391px TO 576px
========================================================= */

@media (min-width: 391px) and (max-width: 576px) {
    .aut-hero-tree {
        max-width: 100%;
        min-height: auto;
        padding: 5px 0;
    }

    .aut-tree-line {
        left: 25px;
    }

    .aut-tree-item {
        justify-content: flex-start;
        min-height: 72px;
        padding: 0 0 0 65px;
    }

    .aut-tree-left,
    .aut-tree-right {
        padding-right: 0;
        padding-left: 65px;
    }

    .aut-tree-item::before {
        left: 25px;
        width: 28px;
    }

    .aut-tree-node {
        left: 25px;
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .aut-tree-text {
        width: 100%;
    }

    .aut-tree-left .aut-tree-text,
    .aut-tree-right .aut-tree-text {
        text-align: left;
    }
}


/* =========================================================
   SMALL MOBILE - 390px AND BELOW
========================================================= */

@media (max-width: 390px) {
    .aut-hero-tree {
        max-width: 100%;
        min-height: auto;
        padding: 5px 0;
    }

    .aut-tree-line {
        left: 22px;
    }

    .aut-tree-item {
        justify-content: flex-start;
        min-height: 68px;
        padding: 0 0 0 58px;
    }

    .aut-tree-left,
    .aut-tree-right {
        padding-right: 0;
        padding-left: 58px;
    }

    .aut-tree-item::before {
        left: 22px;
        width: 25px;
    }

    .aut-tree-node {
        left: 22px;
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .aut-tree-text {
        width: 100%;
        padding: 10px 11px;
    }

    .aut-tree-left .aut-tree-text,
    .aut-tree-right .aut-tree-text {
        text-align: left;
    }

    .aut-tree-text p {
        font-size: 12.5px;
    }
}