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

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    background: #0b0b0b;

    color: #ffffff;

    font-family: "Inter", sans-serif;

    overflow-x: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
}



/* ======================================================
   SELECTION
====================================================== */

::selection {
    background: #ff2727;
    color: #fff;
}



/* ======================================================
   SCROLLBAR
====================================================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #080808;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff2727;
}



/* ======================================================
   GLOBAL CONTAINER
====================================================== */

.content-container,
.about-container {
    width: min(1180px, calc(100% - 80px));

    margin: 0 auto;
}



/* ======================================================
   LOADER
====================================================== */

#loader {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #050505;

    transition: opacity 0.8s ease;
}

.loader-content {
    text-align: center;
}

.loader-content h1 {
    font-family: "Anton", sans-serif;

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

    font-weight: 400;

    letter-spacing: 2px;
}

.loader-content p {
    margin-top: 10px;

    color: rgba(255,255,255,0.48);

    font-size: 11px;

    letter-spacing: 4px;

    text-transform: uppercase;
}

.loader-line {
    width: 230px;

    height: 2px;

    margin: 30px auto 0;

    overflow: hidden;

    background: rgba(255,255,255,0.1);
}

.loader-line span {
    display: block;

    width: 100%;

    height: 100%;

    background: #ff2c2c;

    animation: loaderAnimation 1.4s ease infinite;
}

@keyframes loaderAnimation {

    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }

}



/* ======================================================
   BACKGROUND
====================================================== */

#bg-video {
    position: fixed;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    z-index: -5;
}

.overlay {
    position: fixed;

    inset: 0;

    z-index: -4;

    background:
        linear-gradient(
            180deg,
            rgba(8,8,8,.48),
            rgba(12,12,12,.72)
        );
}



/* ======================================================
   NAVBAR
====================================================== */

.navbar {
    position: fixed;

    top: 20px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 999;

    width: min(1180px, calc(100% - 40px));

    min-height: 72px;

    padding: 0 24px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border: 1px solid rgba(255,255,255,0.11);

    border-radius: 18px;

    background: rgba(10,10,10,0.6);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);
}

.nav-logo {
    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,0.13);

    border-radius: 50%;

    font-family: "Anton", sans-serif;

    font-size: 16px;

    letter-spacing: 1px;

    transition: 0.3s;
}

.nav-logo:hover {
    background: #ff2929;

    border-color: #ff2929;
}

.nav-links {
    display: flex;

    align-items: center;

    gap: 34px;
}

.nav-links a {
    position: relative;

    font-size: 12px;

    font-weight: 500;

    color: rgba(255,255,255,0.72);

    transition: 0.3s;
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -7px;

    width: 0;

    height: 1px;

    background: #ff2929;

    transition: 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-btn {
    display: none;

    width: 42px;

    height: 42px;

    border: none;

    background: transparent;
}

.menu-btn span {
    width: 22px;

    height: 1px;

    display: block;

    margin: 7px auto;

    background: #fff;
}



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

.hero-section {
    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    padding: 150px 0 70px;
}

.hero-content {
    width: min(1180px, calc(100% - 80px));

    margin: 0 auto;
}

.hero-eyebrow {
    margin-bottom: 15px;

    color: #ff3636;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 5px;
}

.hero-title {
    font-family: "Anton", sans-serif;

    font-size: clamp(105px, 16vw, 250px);

    font-weight: 400;

    line-height: 0.9;

    letter-spacing: -4px;

    color: #e82121;
}

.hero-bottom {
    margin-top: 55px;

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 50px;
}

.hero-bottom > div:first-child {
    max-width: 610px;
}

.hero-bottom h2 {
    font-size: clamp(27px, 4vw, 46px);

    font-weight: 600;

    letter-spacing: -1.5px;
}

.hero-bottom p {
    max-width: 590px;

    margin-top: 17px;

    color: rgba(255,255,255,0.55);

    font-size: 14px;

    line-height: 1.8;
}

.hero-buttons {
    display: flex;

    gap: 12px;
}

.primary-btn,
.secondary-btn {
    min-height: 52px;

    padding: 0 22px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    border-radius: 4px;

    font-size: 11px;

    font-weight: 600;

    transition: 0.35s;
}

.primary-btn {
    background: #f1f1f1;

    color: #080808;
}

.primary-btn:hover {
    background: #ff2929;

    color: #fff;

    transform: translateY(-3px);
}

.secondary-btn {
    border: 1px solid rgba(255,255,255,0.2);

    background: rgba(255,255,255,0.02);
}

.secondary-btn:hover {
    border-color: rgba(255,255,255,0.5);

    background: rgba(255,255,255,0.08);
}

.scroll-indicator {
    position: absolute;

    right: 35px;

    bottom: 55px;

    display: flex;

    align-items: center;

    gap: 14px;

    transform: rotate(90deg);

    transform-origin: right bottom;
}

.scroll-indicator span {
    font-size: 8px;

    letter-spacing: 3px;

    color: rgba(255,255,255,0.4);
}

.scroll-line {
    width: 70px;

    height: 1px;

    background: rgba(255,255,255,0.2);
}



/* ======================================================
   COMMON SECTION
====================================================== */

.about-section,
.services-section,
.why-section,
.projects-section,
.logo-section,
.tech-section,
.process-section,
.contact-section {
    padding: 125px 0;
}

.section-heading {
    max-width: 760px;

    margin-bottom: 70px;
}

.section-heading > span,
.contact-heading > span {
    display: inline-block;

    margin-bottom: 18px;

    color: #ff3737;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 4px;
}

.section-heading h2 {
    font-family: "Anton", sans-serif;

    font-size: clamp(55px, 7vw, 95px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -1px;
}

.section-heading p {
    max-width: 620px;

    margin-top: 24px;

    color: rgba(255,255,255,0.52);

    font-size: 14px;

    line-height: 1.8;
}



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

.about-section {
    background: rgba(12,12,12,0.68);
}

.about-container {
    width: 100%;

    display: grid;

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

    gap: 22px;
}

.about-block {
    min-height: 370px;

    padding: 35px;

    border: 1px solid rgba(255,255,255,0.09);

    background: rgba(255,255,255,0.025);

    transition: 0.4s;
}

.about-block:hover {
    transform: translateY(-7px);

    border-color: rgba(255,50,50,0.35);
}

.about-number {
    display: block;

    margin-bottom: 55px;

    color: #ff3636;

    font-size: 10px;

    letter-spacing: 3px;
}

.about-block h3 {
    margin-bottom: 23px;

    font-family: "Anton", sans-serif;

    font-size: 31px;

    font-weight: 400;
}

.about-block p {
    margin-bottom: 16px;

    color: rgba(255,255,255,0.52);

    font-size: 13px;

    line-height: 1.75;
}



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

.services-section {
    background: rgba(8,8,8,0.73);
}

.services-grid {
    display: grid;

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

    gap: 24px;
}

.service-card {
    min-height: 650px;

    padding: 35px;

    display: flex;

    flex-direction: column;

    border: 1px solid rgba(255,255,255,0.1);

    background: rgba(255,255,255,0.025);

    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(255,45,45,0.4);

    background: rgba(255,255,255,0.04);
}

.service-top {
    margin-bottom: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.service-number {
    color: #ff3737;

    font-size: 10px;

    letter-spacing: 3px;
}

.service-icon {
    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 50%;

    font-size: 16px;
}

.service-card h3 {
    max-width: 260px;

    font-family: "Anton", sans-serif;

    font-size: 35px;

    font-weight: 400;

    line-height: 1.1;
}

.service-card > p {
    margin-top: 20px;

    color: rgba(255,255,255,0.5);

    font-size: 13px;

    line-height: 1.7;
}

.service-card ul {
    list-style: none;

    margin-top: 35px;

    margin-bottom: 30px;
}

.service-card li {
    padding: 10px 0;

    border-bottom: 1px solid rgba(255,255,255,0.06);

    color: rgba(255,255,255,0.65);

    font-size: 11px;
}

.service-card li::before {
    content: "↳";

    margin-right: 10px;

    color: #ff3535;
}

.service-price {
    position: static;

    width: 100%;

    margin-top: auto;

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,0.18);
}

.service-price small {
    display: block;

    margin-bottom: 7px;

    color: rgba(255,255,255,0.35);

    font-size: 8px;

    letter-spacing: 2px;
}

.service-price strong {
    font-family: "Anton", sans-serif;

    font-size: 37px;

    font-weight: 400;
}



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

.why-section {
    background: rgba(15,15,15,0.69);
}

.why-grid {
    display: grid;

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

    gap: 20px;
}

.why-card {
    min-height: 250px;

    padding: 30px;

    border-top: 1px solid rgba(255,255,255,0.14);

    background: rgba(255,255,255,0.018);

    transition: 0.4s;
}

.why-card:hover {
    background: rgba(255,255,255,0.04);

    transform: translateY(-5px);
}

.why-card > span {
    color: #ff3535;

    font-size: 9px;

    letter-spacing: 3px;
}

.why-card h3 {
    margin-top: 48px;

    font-size: 21px;

    font-weight: 600;
}

.why-card p {
    margin-top: 15px;

    color: rgba(255,255,255,0.48);

    font-size: 12px;

    line-height: 1.7;
}



/* ======================================================
   PROJECTS
====================================================== */

.projects-section {
    background: rgba(8,8,8,0.73);
}

.projects-grid {
    display: grid;

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

    gap: 28px;
}

.project-card {
    position: relative;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.1);

    border-radius: 22px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.018)
        );

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.project-card:hover {
    transform: translateY(-9px);

    border-color: rgba(255,45,45,0.42);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.45),
        0 0 35px rgba(255,0,0,0.06);
}

.project-image {
    position: relative;

    width: 100%;

    height: 250px;

    overflow: hidden;

    background: #101010;
}

.project-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: top;

    transition:
        transform 0.65s ease,
        filter 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.045);
}

.project-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(0,0,0,0.78) 100%
        );

    pointer-events: none;
}

.project-image-overlay {
    position: absolute;

    left: 20px;

    bottom: 18px;

    z-index: 2;
}

.project-image-overlay span {
    display: inline-flex;

    padding: 8px 12px;

    border: 1px solid rgba(255,255,255,0.16);

    border-radius: 50px;

    background: rgba(0,0,0,0.68);

    backdrop-filter: blur(10px);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;

    color: rgba(255,255,255,0.78);
}

.project-content {
    position: relative;

    min-height: 390px;

    padding: 30px;

    display: flex;

    flex-direction: column;
}

.project-number {
    margin-bottom: 22px;

    font-family: "Anton", sans-serif;

    font-size: 14px;

    letter-spacing: 3px;

    color: #ff3131;
}

.project-content h3 {
    margin: 0 0 16px;

    font-family: "Anton", sans-serif;

    font-size: 31px;

    font-weight: 400;

    letter-spacing: 0.5px;
}

.project-content p {
    margin-bottom: 26px;

    color: rgba(255,255,255,0.58);

    font-size: 13px;

    line-height: 1.8;
}

.project-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 30px;
}

.project-tags span {
    padding: 7px 10px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 6px;

    background: rgba(255,255,255,0.045);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.7px;

    color: rgba(255,255,255,0.67);
}

.project-footer {
    margin-top: auto;

    padding-top: 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    border-top: 1px solid rgba(255,255,255,0.08);
}

.project-type {
    font-size: 10px;

    color: rgba(255,255,255,0.45);
}

.project-status {
    color: #ff4b4b;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1.2px;
}



/* ======================================================
   LOGO / BRAND WORK
====================================================== */

.logo-section {
    background: rgba(12,12,12,0.7);
}

.logo-gallery {
    width: min(900px, 100%);

    margin: 70px auto 0;

    display: grid;

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

    gap: 28px;
}

.brand-card {
    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.1);

    background: rgba(255,255,255,0.025);

    transition: 0.4s;
}

.brand-card:hover {
    transform: translateY(-8px);

    border-color: rgba(255,255,255,0.25);
}

.brand-preview {
    width: 100%;

    height: 330px;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;
}

.sakha-preview {
    background: #071329;
}

.brand-logo-image {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: contain;

    object-position: center;

    padding: 20px;

    transition: transform 0.5s ease;
}

.brand-card:hover .brand-logo-image {
    transform: scale(1.035);
}

.novaforge-preview {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 16px;

    background:
        radial-gradient(
            circle at center,
            #092839,
            #020814 70%
        );
}

.nova-symbol {
    width: 72px;

    height: 72px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(31,212,255,0.4);

    border-radius: 18px;

    background: rgba(25,202,255,0.08);

    color: #27dcff;

    font-family: "Anton", sans-serif;

    font-size: 41px;
}

.novaforge-preview > div:last-child {
    display: flex;

    flex-direction: column;
}

.novaforge-preview strong {
    font-size: 26px;

    letter-spacing: 1px;
}

.novaforge-preview span {
    margin-top: 4px;

    color: #29dafa;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 5px;
}

.brand-info {
    padding: 28px;
}

.brand-info > span {
    color: #ff3a3a;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 3px;
}

.brand-info h3 {
    margin-top: 14px;

    font-family: "Anton", sans-serif;

    font-size: 29px;

    font-weight: 400;
}

.brand-info p {
    margin-top: 13px;

    color: rgba(255,255,255,0.48);

    font-size: 12px;

    line-height: 1.7;
}



/* ======================================================
   TECH STACK
====================================================== */

.tech-section {
    background: rgba(8,8,8,0.72);
}

.tech-grid {
    display: grid;

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

    border-top: 1px solid rgba(255,255,255,0.1);

    border-left: 1px solid rgba(255,255,255,0.1);
}

.tech-card {
    min-height: 180px;

    padding: 25px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border-right: 1px solid rgba(255,255,255,0.1);

    border-bottom: 1px solid rgba(255,255,255,0.1);

    transition: 0.35s;
}

.tech-card:hover {
    background: rgba(255,255,255,0.04);
}

.tech-card span {
    color: #ff3333;

    font-size: 8px;

    letter-spacing: 3px;
}

.tech-card h3 {
    font-size: 20px;

    font-weight: 500;
}



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

.process-section {
    background: rgba(13,13,13,0.69);
}

.process-grid {
    display: grid;

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

    gap: 16px;
}

.process-card {
    min-height: 280px;

    padding: 30px;

    border: 1px solid rgba(255,255,255,0.08);

    background: rgba(255,255,255,0.018);

    transition: 0.4s;
}

.process-card:hover {
    transform: translateY(-6px);

    border-color: rgba(255,45,45,0.35);
}

.process-card > span {
    color: #ff3939;

    font-size: 9px;

    letter-spacing: 3px;
}

.process-card h3 {
    margin-top: 80px;

    font-family: "Anton", sans-serif;

    font-size: 29px;

    font-weight: 400;
}

.process-card p {
    margin-top: 14px;

    color: rgba(255,255,255,0.48);

    font-size: 12px;

    line-height: 1.7;
}



/* ======================================================
   CONTACT
====================================================== */

.contact-section {
    background: rgba(7,7,7,0.78);
}

.contact-heading {
    max-width: 850px;
}

.contact-heading h2 {
    font-family: "Anton", sans-serif;

    font-size: clamp(65px, 8vw, 110px);

    font-weight: 400;

    line-height: 0.98;
}

.contact-heading p {
    margin-top: 25px;

    color: rgba(255,255,255,0.48);

    line-height: 1.7;
}

.contact-layout {
    margin-top: 85px;

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 70px;
}

.contact-email-card {
    min-height: 420px;

    padding: 35px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    border: 1px solid rgba(255,255,255,0.1);

    background: rgba(255,255,255,0.02);
}

.contact-small {
    margin-bottom: auto;

    color: #ff3838;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 4px;
}

.contact-email-card h3 {
    font-family: "Anton", sans-serif;

    font-size: 46px;

    font-weight: 400;
}

.contact-email-card p {
    max-width: 390px;

    margin-top: 15px;

    color: rgba(255,255,255,0.47);

    font-size: 12px;

    line-height: 1.7;
}

.email-link {
    margin-top: 40px;

    padding-bottom: 13px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid rgba(255,255,255,0.2);

    font-size: 13px;
}

.contact-form {
    display: flex;

    flex-direction: column;

    gap: 28px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.form-group label {
    color: rgba(255,255,255,0.4);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 3px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    padding: 17px 0;

    border: none;

    border-bottom: 1px solid rgba(255,255,255,0.15);

    border-radius: 0;

    outline: none;

    background: transparent;

    color: #fff;

    transition: 0.3s;
}

.form-group select {
    color-scheme: dark;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.26);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #ff3939;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    min-height: 58px;

    margin-top: 10px;

    padding: 0 23px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border: none;

    background: #f1f1f1;

    color: #090909;

    font-size: 11px;

    font-weight: 700;

    transition: 0.35s;
}

.submit-btn:hover {
    background: #ff3030;

    color: #fff;
}

.submit-btn:disabled {
    opacity: 0.6;

    cursor: not-allowed;
}



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

.footer {
    padding: 55px 0;

    border-top: 1px solid rgba(255,255,255,0.08);

    background: #060606;
}

.footer-content {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;
}

.footer h2 {
    font-family: "Anton", sans-serif;

    font-size: 36px;

    font-weight: 400;
}

.footer p {
    margin-top: 5px;

    color: rgba(255,255,255,0.38);

    font-size: 8px;

    letter-spacing: 4px;
}

.back-top {
    color: rgba(255,255,255,0.5);

    font-size: 9px;

    letter-spacing: 2px;

    transition: 0.3s;
}

.back-top:hover {
    color: #ff3838;
}



/* ======================================================
   TABLET
====================================================== */

@media (max-width: 1050px) {

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

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

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

}



/* ======================================================
   950PX
====================================================== */

@media (max-width: 950px) {

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

    .about-block {
        min-height: auto;
    }

    .about-number {
        margin-bottom: 30px;
    }

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

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

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

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

        gap: 35px;
    }

}



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

@media (max-width: 768px) {

    .content-container,
    .about-container,
    .hero-content {
        width: min(100% - 38px, 1180px);
    }


    /* NAV */

    .navbar {
        top: 12px;

        width: calc(100% - 24px);

        min-height: 64px;

        padding: 0 16px;
    }

    .menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;

        top: 74px;

        left: 0;

        width: 100%;

        padding: 25px;

        display: none;

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;

        border: 1px solid rgba(255,255,255,0.1);

        border-radius: 15px;

        background: rgba(10,10,10,0.96);

        backdrop-filter: blur(20px);
    }

    .nav-links.active {
        display: flex;
    }


    /* HERO */

    .hero-section {
        min-height: 100svh;

        padding-top: 130px;
    }

    .hero-title {
        font-size: clamp(76px, 25vw, 150px);

        letter-spacing: -2px;
    }

    .hero-bottom {
        margin-top: 45px;

        flex-direction: column;

        align-items: flex-start;

        gap: 32px;
    }

    .hero-buttons {
        width: 100%;

        flex-direction: column;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }


    /* SECTIONS */

    .about-section,
    .services-section,
    .why-section,
    .projects-section,
    .logo-section,
    .tech-section,
    .process-section,
    .contact-section {
        padding: 95px 0;
    }

    .section-heading {
        margin-bottom: 50px;
    }


    /* WHY */

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


    /* PROJECTS */

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

    .project-image {
        height: 240px;
    }

    .project-content {
        min-height: auto;

        padding: 25px;
    }


    /* LOGOS */

    .logo-gallery {
        grid-template-columns: 1fr;
    }

    .brand-preview {
        height: 280px;
    }


    /* TECH */

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


    /* PROCESS */

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

    .process-card {
        min-height: 240px;
    }

    .process-card h3 {
        margin-top: 55px;
    }


    /* CONTACT */

    .contact-layout {
        margin-top: 55px;
    }

    .contact-email-card {
        min-height: 350px;
    }


    /* FOOTER */

    .footer-content {
        align-items: flex-start;

        flex-direction: column;
    }

}



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

@media (max-width: 450px) {

    .hero-eyebrow {
        font-size: 8px;

        letter-spacing: 3px;
    }

    .hero-title {
        font-size: 22vw;
    }

    .hero-bottom h2 {
        font-size: 28px;
    }

    .service-card {
        min-height: auto;

        padding: 28px;
    }

    .service-top {
        margin-bottom: 45px;
    }

    .project-image {
        height: 205px;
    }

    .project-content {
        padding: 22px;
    }

    .project-footer {
        align-items: flex-start;

        flex-direction: column;
    }

    .brand-preview {
        height: 220px;
    }

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

    .contact-heading h2 {
        font-size: 59px;
    }

    .email-link {
        font-size: 11px;
    }

}