/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    background: #F7F4EC;

    color: #111111;

    font-family: "Comic Neue", sans-serif;

    overflow-x: hidden;
}


/* =========================================================
   HERO
========================================================= */

.automation-hero {

    width: 100%;

    min-height: 680px;

    padding: 65px 40px 90px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    background: #F7F4EC;

}


/* =========================================================
   HERO PILL
========================================================= */

.automation-pill {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    padding: 9px 18px;

    border: 1px solid #D9D9D9;

    border-radius: 30px;

    background: #FFFFFF;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.04);

    font-family: "Comic Neue", sans-serif;

    font-size: 13px;

    color: #222222;

    margin-bottom: 30px;
}


.pill-icon {

    color: #1683F7;

    font-size: 18px;

    line-height: 1;
}


/* =========================================================
   HERO TITLE
========================================================= */

.automation-hero h1 {

    max-width: 1250px;

    margin: 0;

    font-family: "Sniglet", cursive;

    font-size: clamp(44px, 4.1vw, 66px);

    font-weight: 400;

    line-height: 1.25;

    letter-spacing: -1.5px;

    color: #111111;
}


.gold-text {

    color: #C99B00;
}


/* =========================================================
   HERO UNDERLINE
========================================================= */

.hero-underline {

    width: 350px;

    height: 3px;

    background: #C99B00;

    margin-top: 2px;

    transform: rotate(-1deg);

    border-radius: 50%;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {

    max-width: 1150px;

    margin: 42px auto 0;

    font-family: "Comic Neue", sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.65;

    color: #454545;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 20px;

    margin-top: 48px;
}


.hero-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 50px;

    padding: 0 22px;

    border-radius: 7px;

    text-decoration: none;

    font-family: "Sniglet", cursive;

    font-size: 15px;

    font-weight: 400;

    transition: 0.25s ease;
}


.primary-btn {

    background: #000000;

    color: #FFFFFF;
}


.secondary-btn {

    background: #FFFFFF;

    color: #111111;
}


.hero-btn:hover {

    transform: translateY(-2px);

}



/* =========================================================
   PROBLEM SECTION
========================================================= */

.problem-section {

    width: 100%;

    background: #F7F4EC;

    padding: 80px 5.5% 100px;
}


.problem-container {

    width: 100%;

    max-width: 1300px;

    margin: 0 auto;
}


.problem-container > h2 {

    margin: 0;

    font-family: "Sniglet", cursive;

    font-size: clamp(38px, 4vw, 55px);

    font-weight: 400;

    line-height: 1.25;

    letter-spacing: -1px;

    color: #111111;
}


/* =========================================================
   PROBLEM LIST
========================================================= */

.problem-list {

    margin-top: 75px;
}


.problem-item {

    min-height: 100px;

    display: grid;

    grid-template-columns: 45px 1fr;

    align-items: center;

    gap: 0;

    border-bottom: 1px solid #D4D2CB;
}


.problem-item:first-child {

    border-top: 1px solid #D4D2CB;
}


.problem-number {

    font-family: "Sniglet", cursive;

    font-size: 31px;

    color: #111111;
}


.problem-item p {

    margin: 0;

    padding: 20px 0;

    font-family: "Comic Neue", sans-serif;

    font-size: 17px;

    line-height: 1.45;

    color: #303030;
}


/* =========================================================
   CHALLENGES
========================================================= */

.challenges-section {

    margin-top: 95px;
}


.challenges-section h3 {

    margin: 0 0 70px;

    text-align: center;

    font-family: "Sniglet", cursive;

    font-size: 31px;

    font-weight: 400;
}


.challenge-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 38px 20px;
}


.challenge-card {

    min-height: 98px;

    padding: 20px 30px;

    display: flex;

    align-items: center;

    gap: 20px;

    background: #FFFFFF;

    border-radius: 9px;

    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.03);
}


.challenge-card span {

    flex-shrink: 0;

    font-family: "Sniglet", cursive;

    font-size: 45px;

    line-height: 1;

    color: #F2DDB8;
}


.challenge-card strong {

    font-family: "Comic Neue", sans-serif;

    font-size: 15px;

    font-weight: 700;

    line-height: 1.35;

    color: #111111;
}



/* =========================================================
   WORKFLOW SECTION
========================================================= */

.workflow-section {

    width: 100%;

    min-height: 620px;

    background: #F7F4EC;

    padding: 80px 5.5% 100px;

    border-top: 1px solid #DEDCD5;
}


.workflow-container {

    width: 100%;

    max-width: 1300px;

    min-height: 470px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: start;
}


/* =========================================================
   WORKFLOW LEFT
========================================================= */

.workflow-left {

    padding-top: 0;
}


.section-line {

    display: block;

    width: 46px;

    height: 2px;

    background: #111111;

    margin-bottom: 22px;
}


.workflow-left h2 {

    margin: 0;

    font-family: "Sniglet", cursive;

    font-size: 47px;

    font-weight: 400;

    line-height: 1.15;

    letter-spacing: -1px;
}


.workflow-left h3 {

    margin: 28px 0 0;

    font-family: "Sniglet", cursive;

    font-size: 45px;

    font-weight: 400;

    line-height: 1.25;

    color: #5B5D68;
}


/* =========================================================
   WORKFLOW RIGHT
========================================================= */

.workflow-right {

    padding-top: 78px;
}


.workflow-right p {

    margin: 0 0 8px;

    font-family: "Comic Neue", sans-serif;

    font-size: 18px;

    line-height: 1.65;

    color: #5B5D68;
}



/* =========================================================
   AUTOMATION SERVICES
========================================================= */

.automation-services {

    width: 100%;

    padding: 75px 0 90px;

    background: #F7F4EC;

    overflow: hidden;
}


.services-heading {

    text-align: center;

    padding: 0 20px 85px;
}


.services-heading h2 {

    margin: 0;

    font-family: "Sniglet", cursive;

    font-size: 48px;

    font-weight: 400;

    line-height: 1.2;
}


.services-heading p {

    margin: 35px 0 0;

    font-family: "Comic Neue", sans-serif;

    font-size: 17px;

    color: #555555;
}


/* =========================================================
   HORIZONTAL SCROLL
========================================================= */

.services-scroll {

    width: 100%;

    overflow-x: auto;

    overflow-y: hidden;

    padding-bottom: 15px;

    scrollbar-width: thin;

    scrollbar-color: #B9B5AA transparent;

    cursor: grab;
}


.services-scroll:active {

    cursor: grabbing;
}


.services-track {

    display: flex;

    align-items: stretch;

    gap: 0;

    width: max-content;

    padding-left: max(0px, calc((100vw - 1440px) / 2));

    padding-right: 80px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {

    position: relative;

    width: 310px;

    min-height: 370px;

    flex: 0 0 310px;

    padding: 55px 45px 40px;

    border: 1px solid rgba(0, 0, 0, 0.05);

    border-radius: 30px;

    margin-right: -20px;

    overflow: hidden;

    transition:
        transform 0.25s ease,
        z-index 0.25s ease;

    z-index: 1;
}


.service-card:hover {

    transform: translateY(-8px);

    z-index: 5;
}


.service-card h3 {

    margin: 0 0 28px;

    font-family: "Sniglet", cursive;

    font-size: 23px;

    font-weight: 400;

    line-height: 1.25;
}


.service-card p {

    margin: 0;

    font-family: "Comic Neue", sans-serif;

    font-size: 15px;

    line-height: 1.55;
}


/* =========================================================
   SERVICE CARD COLORS
========================================================= */

.card-white {

    background: #FFFFFF;

    z-index: 1;
}


.card-purple {

    background: #F0ECFF;

    color: #554B91;

    z-index: 2;

    transform: rotate(-1deg);
}


.card-purple:hover {

    transform: rotate(-1deg) translateY(-8px);
}


.card-blue {

    background: #DDF4FC;

    color: #4A78A7;

    z-index: 3;

    transform: rotate(1deg);
}


.card-blue:hover {

    transform: rotate(1deg) translateY(-8px);
}


.card-yellow {

    background: #FFF0D0;

    color: #B85E16;

    z-index: 4;

    transform: rotate(-1deg);
}


.card-yellow:hover {

    transform: rotate(-1deg) translateY(-8px);
}


.card-green {

    background: #E5FFD8;

    color: #4E7F51;

    z-index: 5;

    transform: rotate(1deg);
}


.card-green:hover {

    transform: rotate(1deg) translateY(-8px);
}


/* =========================================================
   WORKFLOW DECORATION
========================================================= */

.workflow-icon {

    position: absolute;

    left: 60px;

    bottom: 55px;

    width: 170px;

    height: 90px;
}


.workflow-icon span {

    position: absolute;

    width: 25px;

    height: 25px;

    border: 2px solid #6254A2;

    border-radius: 50%;
}


.workflow-icon span:nth-child(1) {

    left: 0;

    top: 20px;
}


.workflow-icon span:nth-child(2) {

    left: 65px;

    top: 20px;
}


.workflow-icon span:nth-child(3) {

    right: 0;

    top: 20px;
}


.workflow-icon span:nth-child(4) {

    left: 65px;

    bottom: 0;
}


.workflow-icon::before {

    content: "";

    position: absolute;

    width: 65px;

    height: 2px;

    background: #6254A2;

    left: 24px;

    top: 32px;
}


.workflow-icon::after {

    content: "";

    position: absolute;

    width: 65px;

    height: 2px;

    background: #6254A2;

    left: 89px;

    top: 32px;
}



/* =========================================================
   PROCESS SECTION
========================================================= */

.process {

    width: 100%;

    position: relative;

    background: #F7F4EC;

    padding: 90px 0 120px;

    overflow: hidden;
}


.process-wrapper {

    width: 100%;

    max-width: 1300px;

    min-height: 850px;

    margin: 0 auto;

    position: relative;
}


/* =========================================================
   PROCESS HEADING
========================================================= */

.process-heading {

    position: absolute;

    left: 0;

    top: 360px;

    width: 420px;

    z-index: 5;
}


.heading-line {

    display: block;

    width: 52px;

    height: 2px;

    background: #151515;

    margin-bottom: 22px;
}


.process-heading h2 {

    margin: 0;

    font-family: "Sniglet", cursive;

    font-size: 46px;

    font-weight: 400;

    line-height: 1.45;

    letter-spacing: -1.2px;

    color: #111111;
}



/* =========================================================
   PROCESS PATH
========================================================= */

.process-path {

    position: absolute;

    left: 190px;

    top: 100px;

    width: 1050px;

    height: 720px;

    z-index: 1;

    pointer-events: none;
}



/* =========================================================
   PROCESS CARD
========================================================= */

.process-card {

    position: absolute;

    width: 320px;

    min-height: 205px;

    padding: 22px;

    background: #FFFFFF;

    border-radius: 8px;

    box-shadow:
        0 7px 20px rgba(0, 0, 0, 0.13);

    z-index: 4;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.process-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.16);
}



/* =========================================================
   PROCESS CARD POSITIONS
========================================================= */

.card-1 {

    top: 0;

    left: 105px;
}


.card-2 {

    top: 225px;

    left: 510px;
}


.card-3 {

    top: 600px;

    left: 375px;
}


.card-4 {

    top: 630px;

    left: 850px;
}


.card-5 {

    top: 75px;

    left: 905px;
}



/* =========================================================
   CARD TOP
========================================================= */

.card-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 10px;
}



/* =========================================================
   ICON BOX
========================================================= */

.card-icon {

    width: 44px;

    height: 44px;

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.card-icon img {

    width: 23px;

    height: 23px;

    object-fit: contain;
}



/* =========================================================
   ICON BACKGROUNDS
========================================================= */

.blue-icon {

    background: #E8F2FF;
}


.gold-icon {

    background: #F5EFDE;
}


.green-icon {

    background: #E8F5EF;
}


.purple-icon {

    background: #EDEAFF;
}


.green-light-icon {

    background: #EEF6E9;
}



/* =========================================================
   STEP NUMBERS
========================================================= */

.step-number {

    font-family: "Comic Neue", sans-serif;

    font-size: 16px;

    font-weight: 400;
}


.blue-number {

    color: #1683F7;
}


.gold-number {

    color: #B28A32;
}


.green-number {

    color: #267052;
}


.purple-number {

    color: #6357E8;
}


.green-dark-number {

    color: #557B50;
}



/* =========================================================
   CARD CONTENT
========================================================= */

.card-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;
}


.card-text {

    flex: 1;

    min-width: 0;
}


.card-text h3 {

    margin: 0 0 8px;

    font-family: "Comic Neue", sans-serif;

    font-size: 15px;

    font-weight: 700;

    line-height: 1.25;

    color: #111111;
}


.card-text p {

    margin: 0;

    font-family: "Comic Neue", sans-serif;

    font-size: 11px;

    font-weight: 400;

    line-height: 1.55;

    color: #777777;
}



/* =========================================================
   CARD IMAGE
========================================================= */

.card-image {

    width: 78px;

    max-height: 78px;

    object-fit: contain;

    flex-shrink: 0;

    align-self: center;
}


.card-2 .card-image {

    width: 75px;
}


.card-3 .card-image {

    width: 75px;
}


.card-4 .card-image {

    width: 78px;
}


.card-5 .card-image {

    width: 78px;
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {


    .workflow-container {

        gap: 50px;
    }


    .process-wrapper {

        max-width: 1100px;

        min-height: 800px;
    }


    .process-heading {

        left: 20px;

        top: 350px;

        width: 350px;
    }


    .process-heading h2 {

        font-size: 40px;
    }


    .card-1 {

        left: 70px;
    }


    .card-2 {

        left: 430px;
    }


    .card-3 {

        left: 300px;
    }


    .card-4 {

        left: 720px;
    }


    .card-5 {

        left: 730px;
    }


    .process-path {

        left: 150px;

        width: 850px;
    }


    .process-card {

        width: 290px;
    }

}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {


    .automation-hero {

        min-height: auto;

        padding: 55px 25px 80px;
    }


    .automation-hero h1 {

        font-size: 42px;
    }


    .hero-description {

        font-size: 15px;
    }


    .problem-section {

        padding: 70px 25px 80px;
    }


    .problem-container > h2 {

        font-size: 40px;
    }


    .challenge-grid {

        grid-template-columns: 1fr 1fr;

        gap: 20px;
    }


    .workflow-section {

        padding: 70px 25px 80px;
    }


    .workflow-container {

        min-height: auto;

        grid-template-columns: 1fr;

        gap: 30px;
    }


    .workflow-left h2 {

        font-size: 42px;
    }


    .workflow-left h3 {

        font-size: 38px;
    }


    .workflow-right {

        padding-top: 0;
    }


    .automation-services {

        padding-top: 70px;
    }


    .services-heading {

        padding-bottom: 55px;
    }


    .services-heading h2 {

        font-size: 40px;
    }


    /* PROCESS */

    .process {

        padding: 70px 25px 80px;
    }


    .process-wrapper {

        min-height: auto;

        display: flex;

        flex-direction: column;
    }


    .process-heading {

        position: relative;

        top: auto;

        left: auto;

        width: 100%;

        margin-bottom: 60px;
    }


    .process-heading h2 {

        font-size: 40px;
    }


    .process-path {

        display: none;
    }


    .process-card {

        position: relative;

        top: auto !important;

        left: auto !important;

        width: 100%;

        max-width: 500px;

        min-height: 205px;

        margin: 0 auto 30px;
    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {


    .automation-hero {

        padding: 45px 18px 65px;
    }


    .automation-pill {

        font-size: 12px;
    }


    .automation-hero h1 {

        font-size: 34px;

        line-height: 1.3;
    }


    .hero-underline {

        width: 220px;
    }


    .hero-description {

        margin-top: 30px;

        font-size: 14px;

        line-height: 1.6;
    }


    .hero-buttons {

        flex-direction: column;

        width: 100%;

        gap: 12px;

        margin-top: 35px;
    }


    .hero-btn {

        width: 100%;

        max-width: 330px;
    }



    /* PROBLEMS */

    .problem-section {

        padding: 60px 18px 70px;
    }


    .problem-container > h2 {

        font-size: 32px;
    }


    .problem-list {

        margin-top: 45px;
    }


    .problem-item {

        grid-template-columns: 35px 1fr;
    }


    .problem-number {

        font-size: 27px;
    }


    .problem-item p {

        font-size: 14px;
    }


    .challenges-section {

        margin-top: 70px;
    }


    .challenges-section h3 {

        font-size: 27px;

        margin-bottom: 40px;
    }


    .challenge-grid {

        grid-template-columns: 1fr;

        gap: 15px;
    }


    .challenge-card {

        min-height: 85px;

        padding: 18px;
    }


    .challenge-card span {

        font-size: 38px;
    }


    .challenge-card strong {

        font-size: 13px;
    }



    /* WORKFLOW */

    .workflow-section {

        padding: 60px 18px 70px;
    }


    .workflow-left h2 {

        font-size: 34px;
    }


    .workflow-left h3 {

        font-size: 33px;

        margin-top: 22px;
    }


    .workflow-right p {

        font-size: 15px;
    }



    /* SERVICES */

    .automation-services {

        padding: 60px 0 70px;
    }


    .services-heading {

        padding: 0 18px 45px;
    }


    .services-heading h2 {

        font-size: 33px;
    }


    .services-heading p {

        margin-top: 20px;

        font-size: 14px;
    }


    .service-card {

        width: 290px;

        flex-basis: 290px;

        min-height: 350px;

        padding: 45px 30px 35px;

        border-radius: 25px;
    }


    .service-card h3 {

        font-size: 21px;
    }


    .service-card p {

        font-size: 14px;
    }



    /* PROCESS */

    .process {

        padding: 60px 18px 70px;
    }


    .process-heading {

        margin-bottom: 45px;
    }


    .process-heading h2 {

        font-size: 34px;

        line-height: 1.3;
    }


    .process-card {

        padding: 20px;

        min-height: 205px;
    }


    .card-text h3 {

        font-size: 15px;
    }


    .card-text p {

        font-size: 11px;
    }


    .card-image {

        width: 70px;
    }

}
/* =========================================================
   HIDE DECORATIVE PROCESS PATH
========================================================= */

.process-path {
    display: none !important;
}
/* =========================================================
   WHO WE WORK WITH
========================================================= */

.who-we-work {
    width: 100%;
    background: #F7F4EC;
    padding: 90px 0 120px;
}


/* =========================================================
   CONTAINER
========================================================= */

.who-container {
    width: calc(100% - 160px);
    max-width: 1280px;
    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.who-heading h2 {
    margin: 0;

    font-family: "Sniglet", cursive;
    font-size: 48px;
    font-weight: 400;

    line-height: 1.2;

    color: #111111;
}


.who-heading h3 {
    margin: 25px 0 0;

    font-family: "Sniglet", cursive;
    font-size: 30px;
    font-weight: 400;

    line-height: 1.3;

    color: #111111;
}


.who-heading p {
    margin: 42px 0 0;

    font-family: "Comic Neue", sans-serif;
    font-size: 17px;
    font-weight: 400;

    color: #707070;
}


/* =========================================================
   BUSINESS GRID
========================================================= */

.business-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 28px 16px;

    margin-top: 85px;
}


/* =========================================================
   BUSINESS CARD
========================================================= */

.business-card {
    height: 160px;

    background: #FFFFFF;

    border: 1px solid #E2E0DB;

    border-radius: 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    box-sizing: border-box;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.business-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   ICON
========================================================= */

.business-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 15px;
}


.business-icon i {
    font-size: 27px;

    color: #111111;
}


/* =========================================================
   CARD TEXT
========================================================= */

.business-card span {
    font-family: "Sniglet", cursive;

    font-size: 17px;
    font-weight: 400;

    line-height: 1.25;

    color: #171717;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .who-container {
        width: calc(100% - 80px);
    }


    .who-heading h2 {
        font-size: 42px;
    }


    .who-heading h3 {
        font-size: 27px;
    }


    .business-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 22px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .who-we-work {
        padding: 65px 0 80px;
    }


    .who-container {
        width: calc(100% - 36px);
    }


    .who-heading h2 {
        font-size: 36px;
    }


    .who-heading h3 {
        font-size: 24px;

        margin-top: 18px;
    }


    .who-heading p {
        margin-top: 30px;

        font-size: 16px;
    }


    .business-grid {
        grid-template-columns: 1fr;

        gap: 16px;

        margin-top: 50px;
    }


    .business-card {
        height: 145px;
    }


    .business-card span {
        font-size: 16px;
    }

}
/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section {
    width: 100%;
    box-sizing: border-box;

    background: #F7F4EC;

    padding: 70px 40px 90px;

    font-family: "Comic Neue", sans-serif;

    color: #111111;
}


/* =========================================================
   FAQ HEADER
========================================================= */

.faq-header {
    text-align: center;

    margin-bottom: 65px;
}


.faq-header h2 {
    margin: 0;

    font-family: "Sniglet", cursive;

    font-size: 40px;
    font-weight: 400;

    line-height: 1.2;

    color: #111111;
}


.faq-header p {
    margin: 24px 0 0;

    font-family: "Comic Neue", sans-serif;

    font-size: 16px;
    font-weight: 400;

    color: #111111;
}


/* =========================================================
   FAQ CONTAINER
========================================================= */

.faq-container {
    width: 100%;
    max-width: 650px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;

    gap: 13px;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.faq-item {
    width: 100%;

    box-sizing: border-box;

    background: #FFFFFF;

    border: 1px solid #D8D6D0;

    border-radius: 32px;

    padding: 10px 18px 20px;

    overflow: hidden;

    transition:
        padding 0.3s ease,
        box-shadow 0.3s ease;
}


.faq-item:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}


/* =========================================================
   QUESTION
========================================================= */

.faq-question {
    min-height: 56px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.faq-question h3 {
    margin: 0;

    padding-left: 2px;

    font-family: "Sniglet", cursive;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.35;

    color: #111111;
}


/* =========================================================
   TOGGLE BUTTON
========================================================= */

.faq-toggle {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    border-radius: 50%;

    border: 1px solid #9E9E9E;

    background: #FFFFFF;

    position: relative;

    cursor: pointer;

    display: flex;

    align-items: center;
    justify-content: center;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.faq-toggle:hover {
    background: #F8F8F8;
}


/* horizontal line */

.faq-toggle span:first-child {
    position: absolute;

    width: 14px;
    height: 1.5px;

    background: #111111;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);
}


/* vertical line */

.faq-toggle span:last-child {
    position: absolute;

    width: 1.5px;
    height: 14px;

    background: #111111;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}


/* =========================================================
   ANSWER
========================================================= */

.faq-answer {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.35s ease,
        opacity 0.25s ease;
}


.faq-answer p {
    margin: 8px 0 0;

    padding: 0 2px;

    font-family: "Comic Neue", sans-serif;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.45;

    color: #222222;
}


/* =========================================================
   ACTIVE FAQ
========================================================= */

.faq-item.active {
    padding-bottom: 20px;
}


.faq-item.active .faq-answer {
    max-height: 180px;

    opacity: 1;
}


.faq-item.active .faq-toggle span:last-child {
    opacity: 0;

    transform:
        translate(-50%, -50%)
        rotate(90deg);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .faq-section {
        padding: 60px 25px 80px;
    }


    .faq-header {
        margin-bottom: 45px;
    }


    .faq-header h2 {
        font-size: 36px;
    }


    .faq-container {
        max-width: 700px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .faq-section {
        padding: 50px 16px 65px;
    }


    .faq-header {
        margin-bottom: 35px;
    }


    .faq-header h2 {
        font-size: 30px;
    }


    .faq-header p {
        font-size: 14px;

        line-height: 1.4;

        margin-top: 15px;
    }


    .faq-container {
        gap: 10px;
    }


    .faq-item {
        border-radius: 24px;

        padding: 8px 14px 16px;
    }


    .faq-question {
        min-height: 50px;

        gap: 10px;
    }


    .faq-question h3 {
        font-size: 14px;
    }


    .faq-toggle {
        width: 40px;
        height: 40px;
    }


    .faq-answer p {
        font-size: 13px;

        line-height: 1.5;
    }

}
/* =========================================================
   FINAL CTA SECTION
========================================================= */

.automation-cta {
    width: 100%;
    min-height: 495px;

    box-sizing: border-box;

    background: #000000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px 40px;

    border-top: 1px solid #F7F4EC;
    border-bottom: 1px solid #F7F4EC;
}


/* =========================================================
   CTA CONTENT
========================================================= */

.cta-content {
    width: 100%;
    max-width: 1450px;

    text-align: center;

    margin: 0 auto;
}


/* =========================================================
   CTA HEADING
========================================================= */

.cta-content h2 {
    margin: 0 0 42px;

    font-family: "Sniglet", cursive;

    font-size: 38px;
    font-weight: 400;

    line-height: 1.2;

    color: #FFFFFF;

    letter-spacing: -0.5px;
}


/* =========================================================
   CTA DESCRIPTION
========================================================= */

.cta-content p {
    width: 100%;
    max-width: 1320px;

    margin: 0 auto 28px;

    font-family: "Comic Neue", sans-serif;

    font-size: 17px;
    font-weight: 400;

    line-height: 1.55;

    color: #FFFFFF;
}


/* =========================================================
   CTA BUTTONS
========================================================= */

.cta-buttons {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 20px;
}


/* =========================================================
   COMMON BUTTON
========================================================= */

.cta-btn {
    min-width: 185px;
    height: 40px;

    padding: 0 20px;

    box-sizing: border-box;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 7px;

    text-decoration: none;

    font-family: "Comic Neue", sans-serif;

    font-size: 14px;
    font-weight: 400;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.cta-primary {
    background: #FFFFFF;

    color: #111111;

    border: 1px solid #FFFFFF;
}


.cta-primary:hover {
    background: #F1F1F1;

    transform: translateY(-2px);
}


/* =========================================================
   SECONDARY BUTTON
========================================================= */

.cta-secondary {
    background: transparent;

    color: #FFFFFF;

    border: 1px solid #FFFFFF;
}


.cta-secondary:hover {
    background: #FFFFFF;

    color: #111111;

    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .automation-cta {
        min-height: 450px;

        padding: 70px 30px;
    }


    .cta-content h2 {
        font-size: 34px;

        margin-bottom: 32px;
    }


    .cta-content p {
        font-size: 16px;

        max-width: 750px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .automation-cta {
        min-height: auto;

        padding: 65px 20px;
    }


    .cta-content h2 {
        font-size: 28px;

        line-height: 1.25;

        margin-bottom: 28px;
    }


    .cta-content p {
        font-size: 15px;

        line-height: 1.5;

        margin-bottom: 25px;
    }


    .cta-buttons {
        flex-direction: column;

        gap: 12px;
    }


    .cta-btn {
        width: 100%;
        max-width: 230px;
    }

}
/* =========================================================
   CTA BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 40px;
}

.hero-buttons .btn {
    font-family: "Sniglet", cursive;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;

    height: 64px;
    padding: 0 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;
    box-sizing: border-box;

    transition: all 0.2s ease;
}

/* Black button */
.hero-buttons .btn-primary {
    background: #000000;
    color: #ffffff;
    border: 1px solid #000000;
}

/* White button */
.hero-buttons .btn-secondary {
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}

/* Hover */
.hero-buttons .btn-primary:hover {
    background: #222222;
}

.hero-buttons .btn-secondary:hover {
    border-color: #000000;
}