/* =====================================================
   WEBYNAMO
   MAIN STYLESHEET
===================================================== */


/* =====================================================
   GOOGLE FONTS
===================================================== */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");


/* =====================================================
   VARIABLES
===================================================== */

:root {
    --background: #f5f5f2;
    --text: #111111;
    --muted: #70706b;
    --border: #ddddD7;
    --white: #ffffff;
    --dark: #111111;
    --dark-soft: #181818;
    --accent: #c7ff3d;
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background);
    color: var(--text);

    font-family: "DM Sans", sans-serif;

    line-height: 1.6;
}

body,
button,
input,
textarea,
select {
    font-family: "DM Sans", sans-serif;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    position: sticky;
    top: 0;

    z-index: 1000;

    min-height: 76px;

    padding: 0 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    background: rgba(245, 245, 242, 0.94);

    backdrop-filter: blur(14px);

    border-bottom: 1px solid var(--border);
}


/* WEBYNAMO LOGO */

.logo {
    flex-shrink: 0;

    font-family: "Space Grotesk", sans-serif;

    font-size: 23px;
    font-weight: 700;

    letter-spacing: -1px;
}

.logo span {
    color: var(--accent);

    background: var(--dark);

    padding: 2px 5px;

    margin-left: 2px;
}


/* NAVIGATION */

.navbar nav {
    display: flex;
    align-items: center;

    gap: 28px;
}

.navbar nav a {
    position: relative;

    color: var(--text);

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    transition: opacity 0.2s ease;
}

.navbar nav a:hover {
    opacity: 0.55;
}

.navbar nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: var(--accent);

    transition: width 0.25s ease;
}

.navbar nav a:hover::after {
    width: 100%;
}


/* =====================================================
   SHARED
===================================================== */

.eyebrow {
    margin-bottom: 18px;

    color: var(--muted);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.section-header {
    max-width: 800px;

    margin-bottom: 55px;
}

.section-header h2 {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(38px, 5vw, 68px);

    line-height: 1;

    letter-spacing: -3px;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: calc(100vh - 76px);

    padding: 80px 6%;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(380px, 0.95fr);

    gap: 70px;

    align-items: center;
}

.hero-content {
    max-width: 820px;
}

.hero h1 {
    max-width: 800px;

    margin-bottom: 28px;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(58px, 8vw, 110px);

    line-height: 0.9;

    letter-spacing: -6px;
}

.hero-description {
    max-width: 600px;

    margin-bottom: 34px;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.75;
}


/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}

.primary-button,
.secondary-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 15px 22px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.primary-button {
    background: var(--dark);
    color: var(--white);
}

.primary-button:hover {
    transform: translateY(-3px);
}

.secondary-button {
    background: transparent;

    border: 1px solid var(--border);
}

.secondary-button:hover {
    background: var(--white);

    transform: translateY(-3px);
}


/* =====================================================
   BROWSER PREVIEW
===================================================== */

.browser-preview {
    width: 100%;

    background: var(--white);

    border: 1px solid var(--border);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.07);

    overflow: hidden;
}

.browser-bar {
    min-height: 52px;

    padding: 0 16px;

    display: flex;
    align-items: center;

    gap: 18px;

    background: #eeeeea;

    border-bottom: 1px solid var(--border);
}

.browser-dots {
    display: flex;

    gap: 6px;
}

.browser-dots span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #b7b7b1;
}

.browser-address {
    flex: 1;

    padding: 7px 14px;

    background: var(--white);

    color: #9a9a95;

    font-size: 10px;
}


/* =====================================================
   WEBYNAMO WN LOGO PREVIEW
===================================================== */

.browser-screen {
    min-height: 470px;

    padding: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(199, 255, 61, 0.07),
            transparent 40%
        ),
        var(--background);
}

.brand-orb {
    position: relative;

    width: 225px;
    height: 225px;

    border-radius: 50%;

    background: var(--dark);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.14);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.brand-orb:hover {
    transform:
        translateY(-6px)
        rotate(2deg);

    box-shadow:
        0 28px 65px rgba(0, 0, 0, 0.18);
}


/* WN LETTERS */

.brand-initials {
    position: absolute;

    top: 42px;

    color: var(--white);

    font-family: "Space Grotesk", sans-serif;

    font-size: 53px;
    font-weight: 700;

    letter-spacing: -6px;

    transform: rotate(-7deg);
}


/* GREEN DOT */

.brand-dot {
    position: absolute;

    bottom: 38px;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 18px rgba(199, 255, 61, 0.65);
}


/* =====================================================
   PORTFOLIO
===================================================== */

.portfolio {
    padding: 110px 6%;

    background: var(--white);
}

.project-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}

.project-card {
    overflow: hidden;

    background: var(--background);

    border: 1px solid var(--border);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.08);
}


/* PROJECT IMAGE */

.project-image {
    height: 260px;

    position: relative;

    display: flex;
    align-items: flex-end;

    padding: 22px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 65% 30%,
            rgba(199, 255, 61, 0.45),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #161616,
            #303030
        );

    transition: transform 0.4s ease;
}

.project-card:nth-child(2) .project-image {
    background:
        radial-gradient(
            circle at 65% 35%,
            rgba(139, 92, 246, 0.7),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #100b1c,
            #292042
        );
}

.project-card:nth-child(3) .project-image {
    background:
        radial-gradient(
            circle at 65% 35%,
            rgba(255, 156, 66, 0.6),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #24130a,
            #4a2714
        );
}

.project-card:hover .project-image {
    transform: scale(1.02);
}

.project-image span {
    padding: 7px 10px;

    background: rgba(255, 255, 255, 0.92);

    color: var(--text);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;
}


/* PROJECT TEXT */

.project-info {
    min-height: 265px;

    padding: 26px;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    gap: 25px;
}

.project-type {
    margin-bottom: 6px;

    color: var(--muted);

    font-size: 11px;
    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.project-info h3 {
    margin-bottom: 12px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 25px;

    letter-spacing: -1px;
}

.project-info p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;
}

.project-info a {
    width: fit-content;

    color: var(--text);

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;
}

.project-info a:hover {
    text-decoration: underline;
}


/* =====================================================
   SERVICES
===================================================== */

.services {
    padding: 110px 6%;

    background: var(--dark);

    color: var(--white);
}

.services .eyebrow {
    color: var(--accent);
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.service-card {
    min-height: 320px;

    padding: 28px;

    background: var(--dark-soft);

    border: 1px solid #303030;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: var(--accent);
}

.service-card > span {
    display: block;

    margin-bottom: 80px;

    color: var(--accent);

    font-size: 12px;
    font-weight: 700;
}

.service-card h3 {
    margin-bottom: 14px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 23px;
}

.service-card p {
    color: #aaaaa5;

    font-size: 14px;

    line-height: 1.7;
}


/* =====================================================
   PRICING
===================================================== */

.pricing {
    padding: 110px 6%;

    background: var(--background);
}

.pricing-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

    align-items: stretch;
}

.price-card {
    position: relative;

    padding: 34px;

    background: var(--white);

    border: 1px solid var(--border);

    display: flex;
    flex-direction: column;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.07);
}

.price-card.featured {
    border: 2px solid var(--dark);
}

.popular-label {
    position: absolute;

    top: 0;
    right: 0;

    padding: 8px 12px;

    background: var(--accent);
    color: var(--dark);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}

.price-name {
    margin-bottom: 10px;

    color: var(--muted);

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
}

.price-card h3 {
    margin-bottom: 18px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 48px;

    letter-spacing: -3px;
}

.price-card > p:not(.price-name) {
    min-height: 75px;

    margin-bottom: 28px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;
}

.price-card ul {
    margin-bottom: 32px;

    list-style: none;
}

.price-card li {
    padding: 10px 0;

    border-bottom: 1px solid #ecece8;

    font-size: 13px;
}

.price-card li::before {
    content: "✓";

    margin-right: 9px;

    font-weight: 700;
}

.price-card a {
    margin-top: auto;

    display: block;

    padding: 14px 18px;

    background: var(--dark);
    color: var(--white);

    text-align: center;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.price-card a:hover {
    transform: translateY(-2px);
}

.price-card.featured a {
    background: var(--accent);

    color: var(--dark);
}


/* =====================================================
   ABOUT
===================================================== */

.about {
    padding: 120px 6%;

    background: var(--white);
}

.about-content {
    max-width: 900px;

    margin: 0 auto;
}

.about-content h2 {
    margin-bottom: 30px;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(42px, 6vw, 74px);

    line-height: 1;

    letter-spacing: -4px;
}

.about-content > p:not(.eyebrow) {
    max-width: 720px;

    margin-bottom: 18px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;
}


/* =====================================================
   TESTIMONIALS
===================================================== */

.testimonials {
    padding: 110px 6%;

    background: var(--background);
}

.testimonial-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}

.testimonial-card {
    min-height: 280px;

    padding: 30px;

    background: var(--white);

    border: 1px solid var(--border);

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.07);
}

.testimonial-text {
    margin-bottom: 30px;

    font-size: 17px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;

    gap: 4px;
}

.testimonial-author strong {
    font-size: 14px;
}

.testimonial-author span {
    color: var(--muted);

    font-size: 12px;
}


/* =====================================================
   FAQ
===================================================== */

.faq {
    padding: 110px 6%;

    background: var(--white);
}

.faq-list {
    max-width: 900px;

    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item summary {
    position: relative;

    padding: 24px 45px 24px 0;

    cursor: pointer;

    list-style: none;

    font-family: "Space Grotesk", sans-serif;

    font-size: 18px;
    font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";

    position: absolute;

    top: 17px;
    right: 0;

    color: var(--text);

    font-size: 28px;
    font-weight: 400;

    transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    max-width: 750px;

    padding: 0 40px 25px 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.75;
}


/* =====================================================
   CONTACT
===================================================== */

.contact {
    padding: 110px 6%;

    background: var(--dark);

    color: var(--white);
}

.contact .section-header {
    max-width: 750px;
}

.contact .section-header .eyebrow {
    color: var(--accent);
}

.contact .section-header > p:last-child {
    max-width: 600px;

    margin-top: 18px;

    color: #aaaaa5;

    font-size: 16px;
}

.contact-form {
    max-width: 800px;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.form-group:nth-child(4) {
    grid-column: 1 / -1;
}

.form-group label {
    color: #d2d2ce;

    font-size: 12px;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    padding: 15px 16px;

    background: #191919;

    color: var(--white);

    border: 1px solid #393939;

    outline: none;

    border-radius: 0;

    transition: border-color 0.2s ease;
}

.form-group textarea {
    min-height: 150px;

    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #777773;
}

.form-group select option {
    background: #191919;
    color: var(--white);
}


/* SEND BUTTON */

.submit-button {
    grid-column: 1 / -1;

    padding: 16px 22px;

    border: none;

    background: var(--accent);

    color: var(--dark);

    cursor: pointer;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
}

.submit-button:disabled {
    opacity: 0.6;

    cursor: not-allowed;

    transform: none;
}


/* FORM MESSAGE */

#formMessage {
    grid-column: 1 / -1;

    display: none;

    padding: 14px 16px;

    background: #191919;

    border: 1px solid #393939;

    color: #dcdcd7;

    font-size: 13px;
}

#formMessage:not(:empty) {
    display: block;
}


/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-top: 25px;

    padding: 15px 22px;

    background: var(--white);

    color: var(--dark);

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.whatsapp-button:hover {
    transform: translateY(-3px);

    opacity: 0.88;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    min-height: 110px;

    padding: 30px 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    background: #090909;

    color: var(--white);

    border-top: 1px solid #252525;
}

.footer p {
    color: #777773;

    font-size: 12px;
}


/* =====================================================
   SCROLL REVEAL
===================================================== */

.project-card,
.service-card,
.price-card,
.about-content,
.contact-form {
    opacity: 1;

    transform: translateY(0);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .hero {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .browser-preview {
        max-width: 700px;
    }

    .project-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card {
        max-width: 700px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

}


/* =====================================================
   SMALL TABLET / MOBILE NAV
===================================================== */

@media (max-width: 760px) {

    .navbar {
        min-height: auto;

        padding-top: 16px;
        padding-bottom: 16px;

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

    .navbar nav {
        width: 100%;

        padding-bottom: 4px;

        overflow-x: auto;

        gap: 20px;

        scrollbar-width: none;
    }

    .navbar nav::-webkit-scrollbar {
        display: none;
    }

    .navbar nav a {
        flex-shrink: 0;
    }


    /* HERO */

    .hero {
        min-height: auto;

        padding: 70px 6%;
    }

    .hero h1 {
        font-size: clamp(52px, 15vw, 78px);

        letter-spacing: -4px;
    }

    .browser-screen {
        min-height: 370px;
    }

    .brand-orb {
        width: 190px;
        height: 190px;
    }

    .brand-initials {
        top: 36px;

        font-size: 44px;
    }

    .brand-dot {
        bottom: 32px;
    }


    /* PROJECTS */

    .project-grid {
        grid-template-columns: 1fr;
    }


    /* SERVICES */

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 250px;
    }

    .service-card > span {
        margin-bottom: 45px;
    }


    /* CONTACT */

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group:nth-child(4),
    .submit-button,
    #formMessage {
        grid-column: 1;
    }


    /* FOOTER */

    .footer {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 520px) {

    .hero,
    .portfolio,
    .services,
    .pricing,
    .about,
    .testimonials,
    .faq,
    .contact {
        padding-left: 5%;
        padding-right: 5%;
    }

    .hero {
        padding-top: 55px;
        padding-bottom: 70px;
    }

    .hero h1 {
        font-size: 52px;

        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .browser-screen {
        min-height: 300px;

        padding: 20px;
    }

    .brand-orb {
        width: 155px;
        height: 155px;
    }

    .brand-initials {
        top: 29px;

        font-size: 37px;

        letter-spacing: -4px;
    }

    .brand-dot {
        bottom: 26px;

        width: 10px;
        height: 10px;
    }

    .section-header h2,
    .about-content h2 {
        letter-spacing: -2px;
    }

    .project-image {
        height: 220px;
    }

    .price-card,
    .testimonial-card,
    .service-card {
        padding: 25px;
    }

    .faq-item summary {
        font-size: 16px;
    }

    .footer {
        padding-left: 5%;
        padding-right: 5%;
    }

}
/* =====================================================
   GREEN SCROLL PROGRESS BAR
===================================================== */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    z-index: 9999;

    background: transparent;
}

.scroll-progress-bar {
    width: 0%;
    height: 100%;

    background: var(--accent);

    box-shadow:
        0 0 8px rgba(199, 255, 61, 0.7),
        0 0 16px rgba(199, 255, 61, 0.35);

    transition: width 0.08s linear;
}
/* =====================================================
   BACK TO TOP BUTTON
===================================================== */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 48px;
    height: 48px;

    border: none;

    background: #111111;
    color: var(--accent);

    font-size: 22px;
    font-weight: 700;

    cursor: pointer;

    z-index: 9998;

    opacity: 0;
    visibility: hidden;

    transform: translateY(12px);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.18);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease,
        background 0.2s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    color: #111111;

    transform: translateY(-3px);
}


/* MOBILE */

@media (max-width: 600px) {

    .back-to-top {
        right: 16px;
        bottom: 16px;

        width: 44px;
        height: 44px;
    }

}
/* =====================================================
   HOW IT WORKS
===================================================== */

.process {
    padding: 110px 6%;
    background: #111111;
    color: #ffffff;
}

.process .eyebrow {
    color: var(--accent);
}

.process .section-header h2 {
    color: #ffffff;
}

.process-intro {
    max-width: 650px;
    margin-top: 18px;

    color: #aaaaa5;

    font-size: 16px;
    line-height: 1.7;
}


/* =====================================================
   PROCESS GRID
===================================================== */

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.process-card {
    min-height: 300px;

    padding: 30px;

    background: #181818;

    border: 1px solid #303030;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-7px);

    border-color: var(--accent);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.25);
}


/* NUMBER */

.process-number {
    display: inline-block;

    margin-bottom: 70px;

    color: var(--accent);

    font-family: "Space Grotesk", sans-serif;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;
}


/* TITLE */

.process-card h3 {
    margin-bottom: 14px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 23px;

    letter-spacing: -1px;
}


/* DESCRIPTION */

.process-card p {
    color: #aaaaa5;

    font-size: 14px;
    line-height: 1.7;
}


/* =====================================================
   HOW IT WORKS RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .process-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 600px) {

    .process {
        padding: 80px 5%;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        min-height: auto;
    }

    .process-number {
        margin-bottom: 40px;
    }

}
/* =====================================================
   WEBYNAMO STATS
===================================================== */

.stats {
    padding: 75px 6%;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    background: var(--accent);
    color: #111111;
}

.stat-item {
    padding: 20px 30px;

    border-right: 1px solid rgba(17, 17, 17, 0.2);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    display: block;

    margin-bottom: 8px;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(48px, 6vw, 75px);
    font-weight: 700;

    line-height: 1;

    letter-spacing: -4px;
}

.stat-item span {
    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =====================================================
   STATS RESPONSIVE
===================================================== */

@media (max-width: 850px) {

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(17, 17, 17, 0.2);
    }

}

@media (max-width: 500px) {

    .stats {
        grid-template-columns: 1fr;
        padding: 55px 5%;
    }

    .stat-item {
        padding: 25px 10px;
    }

}
/* =====================================================
   FLOATING WHATSAPP BUTTON
===================================================== */

.floating-whatsapp {
    position: fixed;

    right: 25px;
    bottom: 85px;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #111111;
    color: var(--accent);

    border: 2px solid var(--accent);

    text-decoration: none;

    font-size: 22px;

    z-index: 9998;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.18),
        0 0 15px rgba(199, 255, 61, 0.15);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.05);

    background: var(--accent);
    color: #111111;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.22),
        0 0 25px rgba(199, 255, 61, 0.45);
}


/* MOBILE */

@media (max-width: 600px) {

    .floating-whatsapp {
        right: 16px;
        bottom: 72px;

        width: 46px;
        height: 46px;

        font-size: 20px;
    }

}