/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    background: #f7f4ed;
    color: #171717;

    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;

    padding: 24px 0;

    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo {
    font-size: 24px;
    font-weight: 800;

    letter-spacing: -1.5px;
}

.logo span {
    font-weight: 400;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;

    font-size: 15px;
    font-weight: 500;
}

.main-nav a {
    opacity: .55;

    transition:
        opacity .2s ease,
        transform .2s ease;
}

.main-nav a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.header-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 20px;

    background: #171717;
    color: #fff;

    border-radius: 100px;

    font-size: 14px;
    font-weight: 600;

    transition:
        transform .2s ease,
        background .2s ease;
}

.header-contact:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}


/* =========================================================
   BUTTONS
========================================================= */

.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 14px 25px;

    border-radius: 100px;

    font-size: 15px;
    font-weight: 700;

    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-dark {
    background: #171717;
    color: #fff;
}

.button-dark:hover {
    background: #7c3aed;
}

.button-light {
    background: #fff;

    border: 2px solid #171717;
}

.button-light:hover {
    background: #c8ff00;
}


/* =========================================================
   LABEL
========================================================= */

.label {
    display: inline-flex;
    align-items: center;

    margin-bottom: 25px;

    padding: 8px 14px;

    background: #c8ff00;
    color: #171717;

    border-radius: 100px;

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .5px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 800px;

    display: flex;
    align-items: center;

    padding: 140px 0 100px;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    right: -120px;
    top: 110px;

    background: #c8ff00;

    border-radius: 50%;

    z-index: -1;
}

.hero::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    left: -50px;
    bottom: 70px;

    background: #ff4fa3;

    border-radius: 35px;

    transform: rotate(20deg);

    z-index: -1;
}

.hero-grid {
    display: grid;

    grid-template-columns: 1.15fr .85fr;

    gap: 80px;

    align-items: center;
}

.hero h1 {
    max-width: 850px;

    font-size: clamp(58px, 8vw, 105px);

    line-height: .88;

    letter-spacing: -6px;

    margin-bottom: 35px;
}

.hero h1 .accent {
    color: #7c3aed;
}

.hero-text {
    max-width: 600px;

    margin-bottom: 40px;

    font-size: 21px;

    color: #555;
}


/* =========================================================
   HERO CARD
========================================================= */

.hero-card {
    position: relative;

    min-height: 440px;

    padding: 32px;

    background: #7c3aed;
    color: #fff;

    border-radius: 40px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transform: rotate(3deg);

    box-shadow:
        18px 18px 0 #171717;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.hero-card:hover {
    transform: rotate(0deg) translateY(-6px);

    box-shadow:
        10px 10px 0 #171717;
}

.hero-card::before {
    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    right: 25px;
    top: 25px;

    background: #ff4fa3;

    border-radius: 50%;
}

.hero-card-top {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.hero-card-title {
    position: relative;
    z-index: 2;

    font-size: clamp(55px, 6vw, 78px);

    font-weight: 900;

    line-height: .82;

    letter-spacing: -5px;
}
.hero-card-center {
    position: relative;
    z-index: 2;
}

.hero-card-center strong {
    display: block;

    font-size: clamp(55px, 6vw, 78px);

    font-weight: 900;

    line-height: .82;

    letter-spacing: -5px;
}
.hero-card-bottom {
    position: relative;
    z-index: 2;

    max-width: 260px;

    font-size: 15px;

    color: #eee;
}


/* =========================================================
   SECTIONS
========================================================= */

section {
    padding: 120px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 60px;
}

.section-title {
    font-size: 55px;

    line-height: .95;

    letter-spacing: -3px;
}

.section-description {
    max-width: 450px;

    color: #666;

    font-size: 16px;
}

/* =========================================================
   SERVICES SECTION
========================================================= */

.services {
    display: block;
}

.service {
    position: relative;

    min-height: 290px;

    padding: 30px;

    border-radius: 28px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.service:hover {
    transform: translateY(-7px) rotate(-1deg);

    box-shadow:
        8px 8px 0 #171717;
}

.service:nth-child(1) {
    background: #c8ff00;
}

.service:nth-child(2) {
    background: #7c3aed;
    color: #fff;
}

.service:nth-child(3) {
    background: #ff4fa3;
}

.service:nth-child(4) {
    background: #fff;
    border: 2px solid #171717;
}

.service:nth-child(5) {
    background: #171717;
    color: #fff;
}

.service:nth-child(6) {
    background: #ffd84d;
}

.service-number {
    font-size: 13px;

    font-weight: 700;

    opacity: .55;
}

.service h3 {
    margin-bottom: 12px;

    font-size: 27px;

    line-height: 1;

    letter-spacing: -1px;
}

.service p {
    max-width: 300px;

    font-size: 15px;

    opacity: .7;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    position: relative;

    background: #171717;

    color: #fff;

    overflow: hidden;
}

.about::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -100px;
    bottom: -150px;

    background: #7c3aed;

    border-radius: 50%;
}

.about-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 100px;
}

.about .section-description {
    margin-top: 15px;

    color: #aaa;
}

.about-text {
    font-size: 32px;

    line-height: 1.2;

    letter-spacing: -1px;
}

.about-text strong {
    color: #c8ff00;
}


/* =========================================================
   PROCESS
========================================================= */

.process {
    border-bottom: 1px solid #ddd;
}

.steps {
    border-top: 2px solid #171717;
}

.step {
    display: grid;

    grid-template-columns: 100px 1fr 1fr;

    gap: 30px;

    padding: 30px 0;

    border-bottom: 1px solid #ccc;

    transition:
        padding .2s ease,
        background .2s ease;
}

.step:hover {
    padding-left: 15px;
    padding-right: 15px;

    background: #c8ff00;
}

.step-number {
    color: #777;

    font-weight: 600;
}

.step h3 {
    font-size: 23px;

    letter-spacing: -.5px;
}

.step p {
    color: #666;
}


/* =========================================================
   CTA
========================================================= */

.cta {
    position: relative;

    padding: 160px 0;

    text-align: center;

    overflow: hidden;
}

.cta::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    left: -80px;
    top: 70px;

    background: #ff4fa3;

    border-radius: 50%;
}

.cta::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -50px;
    bottom: 40px;

    background: #c8ff00;

    border-radius: 40px;

    transform: rotate(20deg);
}

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

.cta h2 {
    max-width: 900px;

    margin: 0 auto 35px;

    font-size: clamp(48px, 7vw, 86px);

    line-height: .9;

    letter-spacing: -5px;
}

.cta p {
    margin-bottom: 35px;

    color: #666;

    font-size: 18px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 65px 0 30px;

    background: #171717;

    color: #fff;
}

.footer-main {
    display: flex;

    justify-content: space-between;

    gap: 80px;

    padding-bottom: 60px;
}

.footer-brand p {
    margin-top: 18px;

    color: #aaa;

    font-size: 14px;
}

.footer-links {
    display: flex;

    gap: 100px;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 10px;

    min-width: 130px;
}

.footer-title {
    margin-bottom: 8px;

    font-size: 12px;

    color: #777;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.footer-column a {
    font-size: 14px;

    transition: color .2s ease;
}

.footer-column a:hover {
    color: #c8ff00;
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;

    border-top: 1px solid #333;

    font-size: 13px;

    color: #777;
}


/* =========================================================
   INNER PAGES
========================================================= */

.page-hero {
    position: relative;

    padding: 180px 0 100px;

    overflow: hidden;
}

.page-hero::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: -70px;
    top: 130px;

    background: #c8ff00;

    border-radius: 50%;

    z-index: -1;
}

.page-hero h1 {
    max-width: 900px;

    font-size: clamp(58px, 8vw, 105px);

    line-height: .88;

    letter-spacing: -6px;
}

.page-intro {
    max-width: 650px;

    margin-top: 40px;

    font-size: 22px;

    color: #666;
}

.page-section {
    padding: 100px 0;
}

.page-cta {
    padding: 130px 0;

    text-align: center;

    background: #c8ff00;
}

.page-cta h2 {
    margin-bottom: 20px;

    font-size: clamp(45px, 6vw, 75px);

    line-height: .9;

    letter-spacing: -4px;
}

.page-cta p {
    max-width: 500px;

    margin: 0 auto 30px;

    color: #444;
}


/* =========================================================
   SERVICE LIST
========================================================= */

.services-list {
    border-top: 2px solid #171717;
}

.service-item {
    display: grid;

    grid-template-columns: 80px 1fr 50px;

    align-items: center;

    gap: 30px;

    padding: 35px 0;

    border-bottom: 1px solid #ccc;

    transition:
        padding .2s ease,
        background .2s ease;
}

.service-item:hover {
    padding-left: 15px;
    padding-right: 15px;

    background: #c8ff00;
}

.service-item .service-number {
    color: #777;
}

.service-item h2 {
    margin-bottom: 8px;

    font-size: 31px;

    letter-spacing: -1px;
}

.service-item p {
    max-width: 600px;

    color: #666;
}

.service-arrow {
    font-size: 30px;
}


/* =========================================================
   CONTENT GRID
========================================================= */

.content-grid {
    display: grid;

    grid-template-columns: .7fr 1.3fr;

    gap: 100px;
}

.content-grid > div:first-child h2 {
    font-size: 48px;

    line-height: .95;

    letter-spacing: -2px;
}

.content-item {
    padding: 25px 0;

    border-top: 1px solid #ccc;
}

.content-item h3 {
    margin-bottom: 8px;

    font-size: 25px;
}

.content-item p {
    color: #666;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .container {
        width: min(100% - 30px, 600px);
    }

    .site-header {
        padding: 18px 0;
    }

    .main-nav {
        display: none;
    }

    .header-contact {
        padding: 9px 15px;

        font-size: 13px;
    }

    .hero {
        min-height: auto;

        padding: 130px 0 90px;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .hero h1 {
        letter-spacing: -4px;
    }

    .hero::before {
        width: 220px;
        height: 220px;

        right: -100px;
        top: 200px;
    }

    .hero-card {
        min-height: 350px;

        transform: rotate(2deg);

        box-shadow:
            10px 10px 0 #171717;
    }

    .hero-card-title,
    .hero-card-center strong {
        font-size: 58px;
    }

    section {
        padding: 85px 0;
    }

    .section-head {
        display: grid;

        gap: 25px;

        margin-bottom: 40px;
    }

    .section-title {
        font-size: 44px;
    }

    .services {
        grid-template-columns: 1fr;
    }

    .service {
        min-height: 250px;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .about-text {
        font-size: 25px;
    }

    .step {
        grid-template-columns: 50px 1fr;

        gap: 15px;
    }

    .step p {
        grid-column: 2;
    }

    .cta {
        padding: 110px 0;
    }

    .cta h2 {
        letter-spacing: -4px;
    }

    .footer-main {
        flex-direction: column;

        gap: 50px;

        padding-bottom: 40px;
    }

    .footer-links {
        gap: 50px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .page-hero {
        padding: 140px 0 70px;
    }

    .page-hero h1 {
        letter-spacing: -4px;
    }

    .content-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .service-item {
        grid-template-columns: 45px 1fr 30px;

        gap: 15px;
    }

    .service-item h2 {
        font-size: 24px;
    }
}
/* =========================================================
   CONTACT FORM
========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns: .75fr 1.25fr;

    gap: 100px;

    align-items: start;
}

.contact-grid .section-description {
    margin-top: 25px;
}

.contact-direct {
    display: flex;
    flex-direction: column;

    gap: 10px;

    margin-top: 50px;

    padding-top: 30px;

    border-top: 1px solid #ccc;
}

.contact-direct p {
    margin-bottom: 5px;

    color: #777;

    font-size: 14px;
}

.contact-direct a {
    width: fit-content;

    font-size: 18px;
    font-weight: 600;

    border-bottom: 2px solid #c8ff00;

    transition:
        color .2s ease,
        border-color .2s ease;
}

.contact-direct a:hover {
    color: #7c3aed;

    border-color: #7c3aed;
}


/* FORM */

.contact-form {
    padding: 40px;

    background: #fff;

    border: 2px solid #171717;

    border-radius: 30px;

    box-shadow: 10px 10px 0 #171717;
}

.form-field {
    margin-bottom: 25px;
}

.form-field label {
    display: block;

    margin-bottom: 9px;

    font-size: 14px;
    font-weight: 700;
}

.form-field input,
.form-field textarea {
    display: block;

    width: 100%;

    padding: 15px 17px;

    background: #f7f4ed;

    border: 2px solid #ddd;

    border-radius: 14px;

    color: #171717;

    outline: none;

    transition:
        border-color .2s ease,
        background .2s ease;
}

.form-field textarea {
    min-height: 170px;

    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    background: #fff;

    border-color: #7c3aed;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #999;
}


/* HONEYPOT */

.form-honeypot {
    position: absolute;

    left: -9999px;

    width: 1px;
    height: 1px;

    overflow: hidden;
}


/* NOTE */

.form-note {
    max-width: 500px;

    margin-top: 15px;

    color: #888;

    font-size: 12px;
    line-height: 1.5;
}


/* SUCCESS */

.form-success {
    padding: 60px 40px;

    background: #c8ff00;

    border-radius: 30px;

    text-align: center;

    border: 2px solid #171717;
}

.form-success-icon {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 25px;

    background: #171717;

    color: #c8ff00;

    border-radius: 50%;

    font-size: 32px;
    font-weight: 800;
}

.form-success h2 {
    margin-bottom: 15px;

    font-size: 38px;

    line-height: 1;

    letter-spacing: -2px;
}

.form-success p {
    margin-bottom: 30px;

    color: #444;
}


/* ERROR */

.form-error {
    margin-bottom: 20px;

    padding: 15px 18px;

    background: #ff4fa3;

    border: 2px solid #171717;

    border-radius: 14px;

    font-size: 14px;
    font-weight: 600;
}


/* MOBILE */

@media (max-width: 800px) {

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .contact-form {
        padding: 25px;

        box-shadow: 6px 6px 0 #171717;
    }

    .form-success {
        padding: 45px 25px;
    }

}
/* =========================================================
   PRICES
========================================================= */

.price-list {
    border-top: 2px solid #171717;
}

.price-item {
    display: grid;

    grid-template-columns: 70px 1fr auto;

    gap: 30px;

    align-items: center;

    padding: 35px 20px;

    border-bottom: 1px solid #ccc;

    transition:
        background .2s ease,
        padding .2s ease;
}

.price-item:hover {
    background: #c8ff00;

    padding-left: 35px;
    padding-right: 35px;
}

.price-number {
    color: #777;

    font-size: 14px;
    font-weight: 700;
}

.price-content h2 {
    margin-bottom: 8px;

    font-size: 28px;

    letter-spacing: -1px;
}

.price-content p {
    max-width: 600px;

    color: #666;
}

.price-value {
    white-space: nowrap;

    font-size: 20px;
    font-weight: 800;
}


/* =========================================================
   FAQ
========================================================= */

.faq-list {
    max-width: 900px;

    margin: 0 auto;

    border-top: 2px solid #171717;
}

.faq-item {
    border-bottom: 1px solid #ccc;
}

.faq-item summary {
    position: relative;

    padding: 30px 55px 30px 0;

    cursor: pointer;

    list-style: none;

    font-size: 25px;
    font-weight: 700;

    letter-spacing: -.5px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";

    position: absolute;

    right: 0;
    top: 25px;

    font-size: 32px;
    font-weight: 400;

    transition: transform .2s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-width: 750px;

    padding: 0 0 30px;
}

.faq-answer p {
    color: #666;

    font-size: 17px;
}


/* =========================================================
   WHY
========================================================= */

.why-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.why-item {
    min-height: 320px;

    padding: 30px;

    border-radius: 28px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border: 2px solid #171717;
}

.why-number {
    font-size: 13px;
    font-weight: 800;

    opacity: .55;
}

.why-item h2 {
    margin-bottom: 15px;

    font-size: 30px;

    line-height: 1;

    letter-spacing: -1.5px;
}

.why-item p {
    max-width: 500px;

    color: #555;
}

.why-item-lime {
    background: #c8ff00;
}

.why-item-purple {
    background: #7c3aed;

    color: #fff;
}

.why-item-purple p {
    color: #eee;
}

.why-item-pink {
    background: #ff4fa3;
}

.why-item-white {
    background: #fff;
}

.why-item-dark {
    background: #171717;

    color: #fff;
}

.why-item-dark p {
    color: #aaa;
}

.why-item-yellow {
    background: #ffd84d;
}


/* =========================================================
   404
========================================================= */

.error-page {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 160px 0 100px;

    overflow: hidden;
}

.error-number {
    margin-bottom: 20px;

    color: #7c3aed;

    font-size: clamp(90px, 16vw, 190px);

    font-weight: 900;

    line-height: .75;

    letter-spacing: -12px;
}

.error-page h1 {
    margin-bottom: 30px;

    font-size: clamp(55px, 8vw, 100px);

    line-height: .85;

    letter-spacing: -6px;
}

.error-page h1 span {
    color: #7c3aed;
}

.error-page p {
    margin-bottom: 35px;

    color: #666;

    font-size: 18px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .price-item {
        grid-template-columns: 40px 1fr;

        gap: 15px;

        padding: 25px 0;
    }

    .price-content h2 {
        font-size: 23px;
    }

    .price-content p {
        font-size: 14px;
    }

    .price-value {
        grid-column: 2;

        font-size: 18px;
    }

    .faq-item summary {
        padding: 25px 45px 25px 0;

        font-size: 20px;
    }

    .faq-item summary::after {
        top: 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .why-list {
        grid-template-columns: 1fr;
    }

    .why-item {
        min-height: 270px;
    }

    .error-number {
        letter-spacing: -7px;
    }

    .error-page h1 {
        letter-spacing: -4px;
    }

}
.form-note a {
    color: #171717;
    font-weight: 700;

    text-decoration: underline;
    text-decoration-color: #7c3aed;
    text-decoration-thickness: 2px;
}
/* =========================================================
   SERVICES CARDS
========================================================= */

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.service-card {
    position: relative;

    min-height: 290px;

    padding: 30px;

    border-radius: 28px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.service-card:hover {
    transform: translateY(-7px) rotate(-1deg);

    box-shadow:
        8px 8px 0 #171717;
}

.service-card:nth-child(1) {
    background: #c8ff00;
}

.service-card:nth-child(2) {
    background: #7c3aed;
    color: #fff;
}

.service-card:nth-child(3) {
    background: #ff4fa3;
}

.service-card:nth-child(4) {
    background: #fff;

    border: 2px solid #171717;
}

.service-card:nth-child(5) {
    background: #171717;
    color: #fff;
}

.service-card:nth-child(6) {
    background: #ffd84d;
}

.service-card .service-number {
    font-size: 13px;

    font-weight: 700;

    opacity: .55;
}

.service-card h3 {
    margin-bottom: 12px;

    font-size: 27px;

    line-height: 1;

    letter-spacing: -1px;
}

.service-card p {
    max-width: 300px;

    font-size: 15px;

    opacity: .7;
}


/* =========================================================
   HOW TO START
========================================================= */

.process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.process-item {
    position: relative;

    min-height: 290px;

    padding: 30px;

    border-radius: 28px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;

    border: 2px solid #171717;

    background: #fff;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.process-item:hover {
    transform: translateY(-7px) rotate(-1deg);

    box-shadow:
        8px 8px 0 #171717;
}

.process-item:nth-child(1) {
    background: #c8ff00;
}

.process-item:nth-child(2) {
    background: #7c3aed;
    color: #fff;
}

.process-item:nth-child(3) {
    background: #ff4fa3;
}

.process-item:nth-child(4) {
    background: #ffd84d;
}

.process-number {
    font-size: 13px;

    font-weight: 700;

    opacity: .55;
}

.process-item h3 {
    margin-bottom: 12px;

    font-size: 27px;

    line-height: 1;

    letter-spacing: -1px;
}

.process-item p {
    max-width: 300px;

    font-size: 15px;

    opacity: .7;
}


/* =========================================================
   CTA CONTACTS
========================================================= */

.cta-contacts {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 25px;

    margin-top: 30px;
}

.cta-contacts a {
    display: inline-block;

    font-size: 15px;

    font-weight: 700;

    color: #171717;

    text-decoration: underline;

    text-decoration-color: #7c3aed;

    text-decoration-thickness: 2px;

    text-underline-offset: 4px;

    transition:
        opacity .2s ease,
        transform .2s ease;
}

.cta-contacts a:hover {
    opacity: .65;

    transform: translateY(-2px);
}


/* =========================================================
   MOBILE — SERVICES + PROCESS
========================================================= */

@media (max-width: 800px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 250px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-item {
        min-height: 250px;
    }

    .cta-contacts {
        flex-direction: column;

        align-items: center;

        gap: 14px;
    }

}
/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

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

}

@media (max-width: 600px) {

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-item {
        min-height: auto;
        padding: 24px;
    }

    .process-item .process-number {
        margin-bottom: 28px;
    }

    .cta-contacts {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

}