/* =====================================================
   RAFAEL STUDIO AUTOMOTIVO
   PREMIUM LIGHT DESIGN
===================================================== */


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: #F4F6F8;
    color: #0B0D10;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    overflow-x: hidden;
}


a {
    text-decoration: none;
    color: inherit;
}


button {
    font-family: inherit;
}


/* =====================================================
   VARIABLES
===================================================== */

:root {

    --blue: #0756A3;

    --blue-dark: #063B73;

    --blue-light: #1683E8;

    --black: #0B0D10;

    --white: #FFFFFF;

    --off-white: #F4F6F8;

    --gray: #8A929B;

    --border:
        rgba(11, 13, 16, .10);

}


/* =====================================================
   HEADER
===================================================== */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 92px;

    padding:
        0 5.5vw;

    display: flex;

    align-items: center;

    justify-content: space-between;

    z-index: 100;

    color: #fff;

    transition:
        height .5s ease,
        background .5s ease,
        color .5s ease,
        border-color .5s ease,
        backdrop-filter .5s ease;

}


.header.scrolled {

    height: 70px;

    background:
        rgba(255,255,255,.82);

    color: var(--black);

    border-bottom:
        1px solid
        rgba(11,13,16,.08);

    backdrop-filter:
        blur(22px);

    -webkit-backdrop-filter:
        blur(22px);

}


/* =====================================================
   BRAND
===================================================== */

.brand {

    display: flex;

    align-items: center;

    gap: 11px;

}


.brand-mark {

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background:
        currentColor;

    transition:
        background .4s ease;

}


.brand-name {

    display: flex;

    flex-direction: column;

    font-size: 19px;

    font-weight: 800;

    line-height: .9;

    letter-spacing: .12em;

}


.brand-name small {

    margin-top: 5px;

    font-size: 6px;

    font-weight: 500;

    letter-spacing: .22em;

    opacity: .55;

}


/* =====================================================
   NAV
===================================================== */

.nav {

    position: absolute;

    left: 50%;

    transform:
        translateX(-50%);

    display: flex;

    align-items: center;

    gap: 38px;

}


.nav-item {

    position: relative;

    color:
        rgba(255,255,255,.65);

    font-size: 11px;

    font-weight: 500;

    transition:
        color .3s ease;

}


.header.scrolled .nav-item {

    color:
        rgba(11,13,16,.52);

}


.nav-item:hover,
.nav-item.active {

    color: #fff;

}


.header.scrolled
.nav-item:hover,
.header.scrolled
.nav-item.active {

    color: var(--blue);

}


.nav-item::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: -9px;

    width: 0;

    height: 2px;

    background:
        currentColor;

    transform:
        translateX(-50%);

    transition:
        width .3s ease;

}


.nav-item.active::after {

    width: 16px;

}


/* =====================================================
   HEADER CTA
===================================================== */

.header-cta {

    display: flex;

    align-items: center;

    gap: 13px;

    padding:
        12px 17px;

    border:
        1px solid
        rgba(255,255,255,.28);

    border-radius: 100px;

    font-size: 10px;

    transition:
        .35s ease;

}


.header.scrolled .header-cta {

    border-color:
        rgba(7,86,163,.25);

    color:
        var(--blue);

}


.header-cta i {

    font-style: normal;

    font-size: 15px;

}


.header-cta:hover {

    color:
        var(--blue);

    background:
        #fff;

    border-color:
        #fff;

}


.header.scrolled
.header-cta:hover {

    color: #fff;

    background:
        var(--blue);

    border-color:
        var(--blue);

}


/* =====================================================
   MOBILE MENU
===================================================== */

.menu-toggle {

    display: none;

    width: 42px;
    height: 42px;

    border:
        1px solid
        rgba(255,255,255,.3);

    border-radius: 50%;

    background:
        transparent;

}


.header.scrolled
.menu-toggle {

    border-color:
        rgba(11,13,16,.2);

}


.menu-toggle span {

    display: block;

    width: 16px;
    height: 1px;

    margin: 4px auto;

    background:
        currentColor;

}


/* =====================================================
   HERO
===================================================== */

.hero {

    position: relative;

    height: 600vh;

    background:
        #08090A;

}


/* =====================================================
   STICKY STAGE
===================================================== */

.hero-stage {

    position: sticky;

    top: 0;

    width: 100%;

    height: 100vh;

    overflow: hidden;

}


/* =====================================================
   VIDEO
===================================================== */

.video-container {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

}


.video-container video {

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;

}


/* =====================================================
   VIDEO OVERLAY
===================================================== */

.hero-dark {

    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        rgba(0,0,0,.08);

}


.hero-left-gradient {

    position: absolute;

    inset: 0;

    z-index: 3;

    pointer-events: none;

    background:

        linear-gradient(
            90deg,
            rgba(0,0,0,.68) 0%,
            rgba(0,0,0,.38) 30%,
            rgba(0,0,0,.08) 60%,
            transparent 100%
        );

}


.hero-bottom-gradient {

    position: absolute;

    inset: 0;

    z-index: 4;

    pointer-events: none;

    background:

        linear-gradient(
            180deg,
            rgba(0,0,0,.36) 0%,
            transparent 28%,
            transparent 68%,
            rgba(0,0,0,.65) 100%
        );

}


/* =====================================================
   HERO COPY
===================================================== */

.hero-copy {

    position: absolute;

    z-index: 10;

    left: 8vw;

    top: 50%;

    width:
        min(620px, 85vw);

    transform:
        translateY(-45%);

    color: #fff;

}


.eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 28px;

    color:
        rgba(255,255,255,.68);

    font-size: 9px;

    letter-spacing: .23em;

    text-transform: uppercase;

}


.eyebrow-line {

    width: 32px;

    height: 2px;

    background:
        var(--blue-light);

}


/* =====================================================
   HERO TITLE
===================================================== */

.hero-copy h1 {

    font-size:
        clamp(
            54px,
            6.5vw,
            96px
        );

    line-height: .89;

    letter-spacing:
        -.065em;

    font-weight: 300;

}


.hero-copy h1 em {

    font-style: normal;

    font-weight: 800;

}


.hero-copy h1 em::after {

    content: "";

    display: inline-block;

    width: 10px;
    height: 10px;

    margin-left: 8px;

    border-radius: 50%;

    background:
        var(--blue-light);

}


/* =====================================================
   HERO DESCRIPTION
===================================================== */

.hero-copy p {

    max-width: 430px;

    margin-top: 34px;

    color:
        rgba(255,255,255,.70);

    font-size: 13px;

    line-height: 1.8;

}


/* =====================================================
   HERO ACTIONS
===================================================== */

.hero-actions {

    display: flex;

    align-items: center;

    gap: 27px;

    margin-top: 36px;

}


.primary-button {

    display: flex;

    align-items: center;

    gap: 20px;

    min-height: 51px;

    padding:
        0 20px;

    background:
        var(--blue);

    color: #fff;

    border-radius: 100px;

    font-size: 10px;

    transition:
        transform .3s ease,
        background .3s ease;

}


.primary-button strong {

    font-size: 16px;

    font-weight: 400;

}


.primary-button:hover {

    transform:
        translateY(-3px);

    background:
        var(--blue-light);

}


.text-button {

    display: flex;

    align-items: center;

    gap: 12px;

    color:
        rgba(255,255,255,.78);

    font-size: 10px;

}


.text-button span {

    font-size: 15px;

    transition:
        transform .3s ease;

}


.text-button:hover span {

    transform:
        translateX(5px);

}


/* =====================================================
   SIDE INFO
===================================================== */

.side-info {

    position: absolute;

    z-index: 10;

    right: 5.5vw;

    top: 50%;

    transform:
        translateY(-50%);

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 14px;

    color: #fff;

}


.side-number {

    display: flex;

    align-items: baseline;

    gap: 5px;

}


.side-number span {

    font-size: 31px;

    font-weight: 400;

    letter-spacing: -.04em;

}


.side-number small {

    color:
        rgba(255,255,255,.42);

    font-size: 10px;

}


.side-label {

    color:
        rgba(255,255,255,.45);

    font-size: 8px;

    letter-spacing: .3em;

}


/* =====================================================
   PROGRESS
===================================================== */

.progress {

    position: absolute;

    z-index: 15;

    right: 5.5vw;

    bottom: 47px;

    width: 180px;

}


.progress-line {

    width: 100%;

    height: 2px;

    background:
        rgba(255,255,255,.25);

}


.progress-line span {

    display: block;

    width: 2.7%;

    height: 100%;

    background:
        var(--blue-light);

}


/* =====================================================
   SCROLL HINT
===================================================== */

/* =====================================================
   SCROLL HINT — CENTRALIZADO
===================================================== */

.scroll-hint {
    position: absolute;

    left: 50%;
    bottom: 38px;

    z-index: 30;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 11px;

    transform: translateX(-50%);

    color: rgba(255, 255, 255, 0.62);

    font-size: 8px;
    font-weight: 500;

    letter-spacing: 0.28em;
    text-transform: uppercase;

    white-space: nowrap;

    pointer-events: none;

    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}


/* =====================================================
   MOUSE
===================================================== */

.mouse {
    position: relative;

    width: 19px;
    height: 30px;

    border: 1px solid rgba(255, 255, 255, 0.52);

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.025);
}


/* =====================================================
   INDICADOR DO MOUSE
===================================================== */

.mouse span {
    position: absolute;

    left: 50%;
    top: 6px;

    width: 2px;
    height: 6px;

    border-radius: 10px;

    background: #ffffff;

    transform: translateX(-50%);

    animation:
        mouseScroll
        1.8s
        cubic-bezier(.45, 0, .55, 1)
        infinite;
}


/* =====================================================
   ANIMAÇÃO
===================================================== */

@keyframes mouseScroll {

    0% {
        opacity: 0;

        transform:
            translate(-50%, 0);
    }

    20% {
        opacity: 1;
    }

    55% {
        opacity: 1;
    }

    100% {
        opacity: 0;

        transform:
            translate(-50%, 12px);
    }
}


/* =====================================================
   TEXTO
===================================================== */

.scroll-text {
    display: block;

    opacity: 0.8;

    transition:
        opacity 0.3s ease;
}


/* =====================================================
   HOVER / INTERAÇÃO
===================================================== */

.scroll-hint:hover .scroll-text {
    opacity: 1;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .scroll-hint {
        bottom: 34px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .scroll-hint {
        left: 50%;

        bottom: 25px;

        gap: 9px;

        font-size: 7px;

        letter-spacing: 0.22em;

        transform:
            translateX(-50%);
    }


    .mouse {
        width: 17px;
        height: 27px;
    }


    .mouse span {
        top: 5px;

        width: 2px;
        height: 5px;
    }

}


.mouse {

    position: relative;

    width: 17px;

    height: 27px;

    border:
        1px solid
        rgba(255,255,255,.5);

    border-radius: 20px;

}


.mouse span {

    position: absolute;

    left: 50%;

    top: 6px;

    width: 2px;

    height: 5px;

    border-radius: 5px;

    background:
        var(--blue-light);

    transform:
        translateX(-50%);

    animation:
        mouseScroll 1.8s
        infinite ease-in-out;

}


@keyframes mouseScroll {

    0% {

        opacity: 0;

        transform:
            translate(-50%,0);

    }

    30% {

        opacity: 1;

    }

    70% {

        opacity: 1;

    }

    100% {

        opacity: 0;

        transform:
            translate(-50%,9px);

    }

}


/* =====================================================
   HERO STATS
===================================================== */

.hero-stats {

    position: absolute;

    z-index: 12;

    right: 5.5vw;

    bottom: 90px;

    display: flex;

    gap: 30px;

}


.stat {

    display: flex;

    flex-direction: column;

    gap: 5px;

}


.stat strong {

    font-size: 9px;

    font-weight: 500;

    color:
        rgba(255,255,255,.78);

}


.stat span {

    color:
        rgba(255,255,255,.40);

    font-size: 7px;

    letter-spacing: .15em;

    text-transform: uppercase;

}


/* =====================================================
   MANIFESTO
===================================================== */

.manifesto {

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding:
        100px 30px;

    background:
        var(--off-white);

}


.manifesto-inner {

    max-width: 900px;

    text-align: center;

}


.section-tag {

    display: inline-block;

    font-size: 9px;

    letter-spacing: .3em;

    opacity: .45;

}


.section-tag.blue {

    color:
        var(--blue);

    opacity: 1;

}


.manifesto h2 {

    margin-top: 30px;

    font-size:
        clamp(
            46px,
            7vw,
            100px
        );

    line-height: .94;

    letter-spacing:
        -.065em;

    font-weight: 300;

}


.manifesto h2 span {

    display: block;

    color:
        var(--blue);

    font-weight: 700;

}


.manifesto p {

    max-width: 520px;

    margin:
        35px auto 0;

    color:
        #737B84;

    font-size: 15px;

    line-height: 1.8;

}


/* =====================================================
   SERVICES
===================================================== */

.services {

    padding:
        140px 7vw;

    background:
        #fff;

}


.section-heading {

    display: grid;

    grid-template-columns:
        1fr 380px;

    gap: 80px;

    align-items: end;

    margin-bottom: 80px;

}


.section-heading h2 {

    margin-top: 20px;

    font-size:
        clamp(
            48px,
            6vw,
            82px
        );

    line-height: .94;

    letter-spacing:
        -.06em;

    font-weight: 300;

}


.section-heading p {

    color:
        #747C84;

    font-size: 14px;

    line-height: 1.8;

}


/* =====================================================
   SERVICES GRID
===================================================== */

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    border-top:
        1px solid var(--border);

    border-left:
        1px solid var(--border);

}


.service-card {

    position: relative;

    min-height: 400px;

    padding: 32px;

    border-right:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);

    transition:
        background .4s ease,
        color .4s ease,
        transform .4s ease;

}


.service-card:hover {

    transform:
        translateY(-8px);

    background:
        var(--blue);

    color: #fff;

}


.service-number {

    font-size: 10px;

    color:
        #9BA2A9;

}


.service-card:hover
.service-number {

    color:
        rgba(255,255,255,.6);

}


.service-icon {

    position: absolute;

    top: 32px;

    right: 32px;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(7,86,163,.2);

    border-radius: 50%;

    color:
        var(--blue);

    font-size: 16px;

}


.service-card:hover
.service-icon {

    color: #fff;

    border-color:
        rgba(255,255,255,.3);

}


.service-card h3 {

    margin-top: 170px;

    font-size: 25px;

    letter-spacing: -.04em;

}


.service-card p {

    margin-top: 15px;

    color:
        #7C848C;

    font-size: 12px;

    line-height: 1.7;

}


.service-card:hover p {

    color:
        rgba(255,255,255,.7);

}


.service-arrow {

    position: absolute;

    bottom: 30px;

    right: 30px;

    font-size: 20px;

}


/* =====================================================
   EXPERIENCE
===================================================== */

.experience {

    position: relative;

    min-height: 100vh;

    padding:
        150px 7vw;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background:
        var(--black);

    color: #fff;

    overflow: hidden;

}


.experience::before {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    top: 50%;
    right: -200px;

    transform:
        translateY(-50%);

    background:
        radial-gradient(
            circle,
            rgba(7,86,163,.28),
            transparent 70%
        );

}


.experience-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

}


.experience h2 {

    margin-top: 25px;

    font-size:
        clamp(
            50px,
            7vw,
            100px
        );

    line-height: .92;

    letter-spacing:
        -.065em;

    font-weight: 300;

}


.experience h2 span {

    color:
        var(--blue-light);

    font-weight: 700;

}


.experience-content p {

    max-width: 500px;

    margin-top: 35px;

    color:
        rgba(255,255,255,.5);

    font-size: 14px;

    line-height: 1.8;

}


.experience-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    margin-top: 110px;

    border-top:
        1px solid
        rgba(255,255,255,.12);

}


.experience-item {

    padding:
        25px 0;

    border-right:
        1px solid
        rgba(255,255,255,.12);

}


.experience-item:not(:first-child) {

    padding-left: 30px;

}


.experience-item strong {

    display: block;

    color:
        var(--blue-light);

    font-size: 12px;

}


.experience-item span {

    display: block;

    margin-top: 8px;

    color:
        rgba(255,255,255,.55);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: .15em;

}


/* =====================================================
   PROCESS
===================================================== */

.process {

    padding:
        150px 7vw;

    background:
        var(--off-white);

}


.process-heading h2 {

    margin-top: 20px;

    font-size:
        clamp(
            48px,
            6vw,
            82px
        );

    line-height: .94;

    letter-spacing:
        -.06em;

    font-weight: 300;

}


.process-list {

    margin-top: 100px;

    border-top:
        1px solid var(--border);

}


.process-item {

    display: grid;

    grid-template-columns:
        120px 1fr;

    padding:
        35px 0;

    border-bottom:
        1px solid var(--border);

}


.process-item > span {

    color:
        var(--blue);

    font-size: 12px;

}


.process-item h3 {

    font-size: 25px;

    font-weight: 500;

    letter-spacing: -.03em;

}


.process-item p {

    max-width: 500px;

    margin-top: 10px;

    color:
        #7C848C;

    font-size: 13px;

    line-height: 1.7;

}


/* =====================================================
   CONTACT
===================================================== */

.contact {

    position: relative;

    min-height: 90vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 100px 30px;

    background:
        #fff;

    overflow: hidden;

}


.contact-glow {

    position: absolute;

    width: 700px;
    height: 700px;

    background:
        radial-gradient(
            circle,
            rgba(22,131,232,.13),
            transparent 68%
        );

    pointer-events: none;

}


.contact-content {

    position: relative;

    z-index: 2;

    max-width: 900px;

    text-align: center;

}


.contact h2 {

    margin-top: 25px;

    font-size:
        clamp(
            55px,
            8vw,
            115px
        );

    line-height: .9;

    letter-spacing:
        -.07em;

    font-weight: 300;

}


.contact h2 span {

    color:
        var(--blue);

    font-weight: 800;

}


.contact p {

    max-width: 520px;

    margin:
        35px auto;

    color:
        #747C84;

    font-size: 14px;

    line-height: 1.8;

}


.contact-button {

    display: inline-flex;

    align-items: center;

    gap: 30px;

    padding:
        17px 24px;

    color: #fff;

    background:
        var(--blue);

    border-radius: 100px;

    font-size: 11px;

    transition:
        transform .3s ease,
        background .3s ease;

}


.contact-button:hover {

    transform:
        translateY(-4px);

    background:
        var(--blue-light);

}


.contact-button strong {

    font-size: 17px;

}


.contact-content small {

    display: block;

    margin-top: 25px;

    color:
        #9299A0;

    font-size: 10px;

    letter-spacing: .15em;

    text-transform: uppercase;

}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    padding:
        70px 7vw 25px;

    background:
        var(--black);

    color: #fff;

}


.footer-top {

    display: grid;

    grid-template-columns:
        1fr 1fr 1fr;

    gap: 50px;

    padding-bottom:
        70px;

}


.footer-brand {

    display: flex;

    flex-direction: column;

}


.footer-mark {

    width: 9px;
    height: 9px;

    margin-bottom: 15px;

    border-radius: 50%;

    background:
        var(--blue-light);

}


.footer-brand strong {

    font-size: 20px;

    letter-spacing: .13em;

}


.footer-brand small {

    margin-top: 6px;

    color:
        rgba(255,255,255,.4);

    font-size: 7px;

    letter-spacing: .22em;

}


.footer-description {

    max-width: 270px;

    color:
        rgba(255,255,255,.45);

    font-size: 12px;

    line-height: 1.8;

}


.footer-links {

    display: flex;

    justify-content: flex-end;

    gap: 25px;

}


.footer-links a {

    color:
        rgba(255,255,255,.5);

    font-size: 11px;

    transition:
        color .3s ease;

}


.footer-links a:hover {

    color:
        var(--blue-light);

}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-top:
        22px;

    border-top:
        1px solid
        rgba(255,255,255,.08);

    color:
        rgba(255,255,255,.3);

    font-size: 9px;

}


.footer-bottom a {

    color:
        rgba(255,255,255,.45);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .header {

        padding:
            0 4vw;

    }


    .nav {

        gap: 22px;

    }


    .hero-copy {

        left: 6vw;

    }


    .side-info,
    .progress {

        right: 4vw;

    }


    .scroll-hint {

        left: 4vw;

    }


    .services-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .section-heading {

        grid-template-columns:
            1fr 300px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .hero {

        height: 650vh;

    }


    .header {

        height: 76px;

        padding:
            0 22px;

    }


    .header.scrolled {

        height: 68px;

    }


    .nav {

        position: fixed;

        inset: 0;

        width: 100%;
        height: 100vh;

        display: flex;

        flex-direction: column;

        justify-content: center;

        align-items: center;

        gap: 30px;

        background:
            rgba(255,255,255,.96);

        color:
            var(--black);

        transform:
            translateX(100%);

        transition:
            transform .5s cubic-bezier(.22,1,.36,1);

    }


    .nav.mobile-open {

        transform:
            translateX(0);

    }


    .nav-item {

        color:
            var(--black);

        font-size: 22px;

    }


    .header-cta {

        display: none;

    }


    .menu-toggle {

        position: relative;

        z-index: 110;

        display: block;

        color: #fff;

    }


    .header.scrolled
    .menu-toggle {

        color:
            var(--black);

    }


    .menu-toggle.open
    span:first-child {

        transform:
            translateY(3px)
            rotate(45deg);

    }


    .menu-toggle.open
    span:last-child {

        transform:
            translateY(-3px)
            rotate(-45deg);

    }


    .hero-left-gradient {

        background:

            linear-gradient(
                90deg,
                rgba(0,0,0,.78) 0%,
                rgba(0,0,0,.48) 60%,
                rgba(0,0,0,.08) 100%
            );

    }


    .hero-copy {

        left: 22px;

        top: 48%;

        width:
            calc(100% - 44px);

    }


    .hero-copy h1 {

        font-size:
            clamp(
                44px,
                12vw,
                66px
            );

    }


    .hero-copy p {

        max-width: 330px;

        font-size: 12px;

    }


    .hero-actions {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap: 20px;

    }


    .side-info {

        top: auto;

        right: 22px;

        bottom: 95px;

        transform: none;

    }


    .side-label {

        display: none;

    }


    .progress {

        right: 22px;

        bottom: 35px;

        width: 110px;

    }


    .hero-stats {

        display: none;

    }


    .scroll-hint {

        left: 22px;

        bottom: 34px;

    }


    .scroll-hint > span {

        display: none;

    }


    .manifesto {

        min-height: 80vh;

    }


    .services {

        padding:
            100px 22px;

    }


    .section-heading {

        display: block;

        margin-bottom: 55px;

    }


    .section-heading p {

        margin-top: 25px;

    }


    .services-grid {

        grid-template-columns:
            1fr;

    }


    .service-card {

        min-height: 330px;

    }


    .service-card h3 {

        margin-top: 125px;

    }


    .experience {

        padding:
            100px 22px;

    }


    .experience-grid {

        grid-template-columns:
            repeat(2,1fr);

        margin-top: 70px;

    }


    .experience-item {

        border-bottom:
            1px solid
            rgba(255,255,255,.12);

    }


    .process {

        padding:
            100px 22px;

    }


    .process-list {

        margin-top: 60px;

    }


    .process-item {

        grid-template-columns:
            50px 1fr;

    }


    .contact {

        min-height: 80vh;

    }


    .footer {

        padding:
            60px 22px 25px;

    }


    .footer-top {

        grid-template-columns:
            1fr;

        gap: 40px;

    }


    .footer-links {

        justify-content:
            flex-start;

        flex-wrap: wrap;

    }


    .footer-bottom {

        flex-direction:
            column;

        align-items:
            flex-start;

        gap: 12px;

    }

}