:root {
    /* Core Brand */
    --black: #000000;
    --navy-dark: #021D46;
    --navy: #093674;

    /* Brand Blues */
    --blue: #2669B7;
    --medium-blue: #055AB5;
    --bright-blue: #007BFF;

    /* Gradient Accents */
    --purple: #6E3BA7;
    --magenta: #A23BA7;
    --red: #E6242B;

    /* Neutral */
    --white: #FFFFFF;

    /* Supporting Colors */
    --text-light: #DCE7F5;
    --text-muted: #8FA4BD;

    /* Brand Gradient */
    --brand-gradient: linear-gradient(
        90deg,
        #007BFF,
        #6E3BA7,
        #A23BA7,
        #E6242B
    );
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(0, 123, 255, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(110, 59, 167, 0.08),
            transparent 30%
        ),
        var(--black);

    color: var(--white);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    overflow-x: hidden;
}
h1 {
    font-size: 60px;

    margin-bottom: 20px;

    letter-spacing: -2px;
}
p {
    font-size: 22px;

    color: var(--bright-blue);

    letter-spacing: 2px;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 60px;

    background: rgba(2, 29, 70, 0.85);

    border-bottom: 1px solid rgba(0, 123, 255, 0.35);

    backdrop-filter: blur(12px);

    position: sticky;
    top: 0;

    z-index: 1000;
}
.logo img {
    display: block;

    width: 190px;

    height: auto;
}

.nav-links {
    display: flex;

    align-items: center;

    gap: 35px;
}


.nav-links a {
    position: relative;

    color: var(--white);

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 0.5px;

    transition: 0.3s;
}
.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: var(--bright-blue);

    box-shadow:
        0 0 8px rgba(0, 123, 255, 0.7);

    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--bright-blue);
}

.nav-links a:hover::after {
    width: 100%;
}
/* =========================
   HERO SECTION
========================= */

.hero {
    position: relative;

    min-height: calc(100vh - 90px);

    display: flex;
    align-items: center;

    padding: 80px 60px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(0, 123, 255, 0.20),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(162, 59, 167, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #000000 0%,
            #021D46 100%
        );
}
.hero-content {
    max-width: 900px;
}
.eyebrow {
    margin: 0;

    color: var(--bright-blue);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 4px;
}
.hero h1 span {
    color: var(--bright-blue);
}
.hero-description {
    max-width: 600px;

    margin: 30px 0 40px;

    color: #B8C3D1;

    font-size: 19px;

    line-height: 1.6;

    white-space: nowrap;
}
.hero-buttons {
    display: flex;

    gap: 15px;
}

.primary-button,
.secondary-button {
    display: inline-block;

    padding: 16px 28px;

    text-decoration: none;

    font-weight: 700;

    transition: 0.3s;
}
.primary-button {
    position: relative;

    background: var(--bright-blue);

    color: var(--white);

    border: 1px solid var(--bright-blue);

    box-shadow:
        0 0 20px rgba(0, 123, 255, 0.25);

    overflow: hidden;
}

.primary-button:hover {
    background: var(--medium-blue);

    transform: translateY(-3px);

    box-shadow:
        0 0 30px rgba(0, 123, 255, 0.45);
}
.secondary-button {
    border: 1px solid var(--blue);

    background: rgba(9, 54, 116, 0.2);

    color: var(--white);

    backdrop-filter: blur(8px);
}

.secondary-button:hover {
    border-color: var(--bright-blue);

    background: rgba(0, 123, 255, 0.12);

    box-shadow:
        0 0 20px rgba(0, 123, 255, 0.15);
}
/* =========================
   SERVICES SECTION
========================= */

.services {
    padding: 120px 60px;

    background: var(--white);

    color: var(--navy-dark);
}
.section-heading {
    max-width: 750px;

    margin-bottom: 70px;
}

.section-heading h2 {
    margin: 15px 0 20px;

    font-size: clamp(40px, 5vw, 70px);

    line-height: 1;

    letter-spacing: -2px;
}

.section-heading h2 span {
    color: var(--blue);
}

.section-heading > p:last-child {
    max-width: 600px;

    color: #526070;

    font-size: 18px;

    line-height: 1.6;
}
.service-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}
.service-card {
    position: relative;

    padding: 45px;

    background: #F4F7FB;

    border: 1px solid #D9E2EE;

    transition: 0.3s;
}
.service-number {
    display: block;

    margin-bottom: 35px;

    color: var(--bright-blue);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;
}
.service-card h3 {
    margin: 0 0 15px;

    font-size: 30px;

    color: var(--navy-dark);
}
.service-card p {
    margin-bottom: 30px;

    color: #526070;

    line-height: 1.6;
}
.service-card a {
    color: var(--blue);

    text-decoration: none;

    font-weight: 700;
}

.service-card a:hover {
    color: var(--bright-blue);
}
.service-card:hover {
    transform: translateY(-6px);

    border-color: var(--blue);

    box-shadow: 0 15px 40px rgba(2, 29, 70, 0.12);
}

.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(0, 123, 255, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0, 123, 255, 0.06) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent
    );

    pointer-events: none;
}
.hero h1 {
    margin: 20px 0;

    max-width: 1000px;

    font-size: clamp(
        52px,
        8vw,
        110px
    );

    line-height: 0.92;

    font-weight: 900;

    letter-spacing: -3px;

    text-transform: uppercase;
}
.hero h1 span {
    background: var(--brand-gradient);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-description::before {
    content: "";

    display: block;

    width: 110px;

    height: 2px;

    margin-bottom: 25px;

    background: var(--brand-gradient);

    box-shadow:
        0 0 10px rgba(0, 123, 255, 0.7);
}
.menu-button {
    display: none;

    width: 40px;
    height: 40px;

    padding: 5px;

    background: transparent;
    border: none;

    cursor: pointer;

    position: relative;
    z-index: 10000;
}

.menu-button span {
    display: block;

    width: 28px;
    height: 3px;

    margin: 5px auto;

    background: #FFFFFF;

    transition: all 0.3s ease;
}

/* =========================
   SERVICES SECTION
   ========================= */

.services {
    padding: 100px 8%;

    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(0, 123, 255, 0.10),
            transparent 35%
        ),
        #000000;

    position: relative;
}


.section-header {
    max-width: 1000px;

    margin: 0 auto 75px;

    text-align: center;
}


.section-label {
    margin-bottom: 15px;

    color: #007BFF;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 5px;

    text-transform: uppercase;
}


.section-header h2 {
    margin-bottom: 25px;

    color: #FFFFFF;

    font-size: clamp(42px, 5vw, 64px);

    line-height: 1.08;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: -1px;
}


.section-header h2 span {
    background: var(--brand-gradient);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}


.section-description {
    max-width: 650px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.70);

    font-size: 17px;

    line-height: 1.8;
}

.service-grid {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.service-card {
    padding: 35px 30px;

    background: rgba(2, 29, 70, 0.55);

    border: 1px solid rgba(0, 123, 255, 0.30);

    border-radius: 14px;

    backdrop-filter: blur(10px);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: #007BFF;

    box-shadow:
        0 15px 40px rgba(0, 123, 255, 0.15);
}

.service-icon {
    width: 55px;
    height: 55px;

    margin-bottom: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #007BFF;

    border-radius: 12px;

    color: #007BFF;

    font-size: 26px;

    background: rgba(0, 123, 255, 0.08);
}

.service-card h3 {
    margin-bottom: 15px;

    color: #FFFFFF;

    font-size: 22px;

    font-weight: 700;
}

.service-card p {
    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 15px;

    line-height: 1.7;
}

.service-card a {
    color: #007BFF;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition: color 0.3s ease;
}

.service-card a:hover {
    color: #FFFFFF;
}

/* =========================================
   FEATURED WORK
   ========================================= */

.featured-work {
    padding: 140px 6% 120px;

    background: var(--black);

    position: relative;
}


/* SECTION HEADER */

.featured-work .section-header {
    max-width: 900px;

    margin: 0 auto 70px;

    text-align: center;
}

.featured-work .section-label {
    margin-bottom: 18px;

    color: var(--blue);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 5px;
}

.featured-work .section-header h2 {
    margin-bottom: 25px;

    color: var(--white);

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.05;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: -1px;
}

.featured-work .section-header h2 span {
    background: linear-gradient(
        90deg,
        #007BFF,
        #6E3BA7,
        #A23BA7,
        #E6242B
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}

.featured-work .section-description {
    max-width: 650px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.7);

    font-size: 16px;

    line-height: 1.8;
}


/* PROJECT GRID */

.work-grid {
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}


/* PROJECT CARD */

.work-card {
    overflow: hidden;

    background: var(--navy-dark);

    border: 1px solid rgba(0, 123, 255, 0.35);

    border-radius: 10px;

    transition: transform 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

.work-card:hover {
    transform: translateY(-8px);

    border-color: var(--blue);

    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
}


/* PROJECT IMAGE */

.work-image {
    height: 240px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(0, 123, 255, 0.18),
            transparent 60%
        ),
        #021D46;

    color: var(--blue);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;
}
.work-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

     transition: transform 0.4s ease;
}

.work-card:hover .work-image img {
    transform: scale(1.04);

}

/* PROJECT CONTENT */

.work-content {
    padding: 30px;
}

.work-category {
    display: block;

    margin-bottom: 12px;

    color: var(--blue);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;
}

.work-content h3 {
    margin-bottom: 15px;

    color: var(--white);

    font-size: 28px;

    font-weight: 800;
}

.work-content p {
    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 14px;

    line-height: 1.7;
}

.work-link {
    color: var(--blue);

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition: color 0.3s ease;
}

.work-link:hover {
    color: #FFFFFF;
}

/* =========================================
   CONTACT SECTION
   ========================================= */

.contact {
    padding: 120px 6%;
    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(0, 123, 255, 0.10),
            transparent 55%
        ),
        var(--black);

    text-align: center;
}


/* CONTACT HEADER */

.contact .section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact .section-header h2 {
    margin-bottom: 25px;
    color: var(--white);
    font-size: clamp(45px, 6vw, 75px);
    line-height: 1.05;
    font-weight: 800;
    text-transform: uppercase;
}

.contact .section-header h2 span {
    background: var(--brand-gradient);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}

.contact .section-header p {
    max-width: 700px;
    margin: 0 auto;

    color: rgba(255, 255, 255, 0.7);

    font-size: 16px;
    line-height: 1.8;
}


/* EMAIL + TELEGRAM */

.contact-options {
    max-width: 900px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}


.contact-card {
    display: flex;

    align-items: center;

    gap: 20px;

    padding: 30px;

    text-align: left;

    background: rgba(2, 29, 70, 0.65);

    border: 1px solid rgba(0, 123, 255, 0.3);

    border-radius: 12px;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.contact-card:hover {
    transform: translateY(-6px);

    border-color: var(--blue);

    box-shadow:
        0 15px 40px rgba(0, 123, 255, 0.12);
}


/* ICON */

.contact-icon {
    min-width: 55px;

    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 123, 255, 0.5);

    border-radius: 12px;

    color: var(--blue);

    font-size: 22px;

    background: rgba(0, 123, 255, 0.08);
}


/* CONTACT TEXT */

.contact-info {
    min-width: 0;
}

.contact-label {
    display: block;

    margin-bottom: 6px;

    color: var(--blue);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;
}


.contact-info h3 {
    margin: 0 0 5px;

    color: var(--white);

    font-size: 17px;

    font-weight: 700;

    word-break: break-word;
}


.contact-info p {
    margin: 0;

    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;
}


/* SOCIAL MEDIA */

.social-section {
    max-width: 900px;

    margin: 60px auto 0;

    text-align: center;
}

.social-section .section-label {
    display: block;

    margin-bottom: 25px;

    color: var(--blue);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 4px;
}


.social-links {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;
}


.social-link {
    padding: 13px 20px;

    color: var(--white);

    background: rgba(2, 29, 70, 0.6);

    border: 1px solid rgba(0, 123, 255, 0.3);

    border-radius: 6px;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;
}


.social-link:hover {
    color: var(--white);

    background: rgba(0, 123, 255, 0.12);

    border-color: var(--blue);

    transform: translateY(-3px);
}


/* MAIN CTA */

.contact-cta {
    margin-top: 45px;
}


.primary-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 16px 30px;

    background: var(--brand-gradient);

    color: var(--white);

    border-radius: 6px;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.primary-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(0, 123, 255, 0.2);
}

/* =========================================
   SOCIAL MEDIA
   ========================================= */

.social-section {
    max-width: 900px;

    margin: 60px auto 0;

    text-align: center;
}

.social-section .section-label {
    display: block;

    margin-bottom: 25px;

    color: var(--blue);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 4px;
}


.social-links {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;
}


.social-link {
    padding: 13px 20px;

    color: var(--white);

    background: rgba(2, 29, 70, 0.6);

    border: 1px solid rgba(0, 123, 255, 0.3);

    border-radius: 6px;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;
}


.social-link:hover {
    color: var(--white);

    background: rgba(0, 123, 255, 0.12);

    border-color: var(--blue);

    transform: translateY(-3px);
}

/* =========================================
   TELEGRAM QR CODE
   ========================================= */

.telegram-qr {
    margin: 60px auto 0;

    text-align: center;
}


.telegram-qr a {
    display: inline-block;

    max-width: 300px;

    text-decoration: none;

    transition: transform 0.3s ease;
}


.telegram-qr a:hover {
    transform: translateY(-6px);
}


.telegram-qr img {
    display: block;

    width: 100%;

    max-width: 300px;

    height: auto;

    border-radius: 12px;

    box-shadow:
        0 15px 45px rgba(0, 123, 255, 0.15);
}


.telegram-qr p {
    margin-top: 18px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;

    letter-spacing: 1px;
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
    padding: 70px 6% 25px;

    background: var(--navy-dark);

    border-top: 1px solid rgba(0, 123, 255, 0.25);
}


.footer-container {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 50px;
}


/* BRAND */

.footer-brand img {
    width: 190px;

    height: auto;

    margin-bottom: 20px;
}


.footer-brand p {
    max-width: 320px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 14px;

    line-height: 1.7;
}


/* FOOTER COLUMNS */

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 13px;
}


.footer-column h4 {
    margin-bottom: 10px;

    color: var(--blue);

    font-size: 11px;

    letter-spacing: 3px;
}


.footer-column a {
    color: rgba(255, 255, 255, 0.7);

    font-size: 13px;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer-column a:hover {
    color: var(--white);
}


/* FOOTER BOTTOM */

.footer-bottom {
    max-width: 1200px;

    margin: 0 auto;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;

    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.4);

    font-size: 11px;

    letter-spacing: 0.5px;
}

/* =========================================
   SERVICE POPUP
   ========================================= */

.service-modal {
    position: fixed;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(0, 0, 0, 0.75);

    backdrop-filter: blur(8px);

    z-index: 99999;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


.service-modal.active {
    opacity: 1;

    visibility: visible;
}


/* POPUP BOX */

.service-modal-content {
    position: relative;

    width: 100%;

    max-width: 650px;

    padding: 50px;

    background: var(--navy-dark);

    border: 1px solid var(--blue);

    border-radius: 12px;

    box-shadow:
        0 20px 80px rgba(0, 123, 255, 0.2);

    transform: translateY(20px);

    transition: transform 0.3s ease;
}


.service-modal.active .service-modal-content {
    transform: translateY(0);
}


/* CLOSE BUTTON */

.modal-close {
    position: absolute;

    top: 18px;
    right: 20px;

    width: 40px;
    height: 40px;

    background: transparent;

    border: none;

    color: white;

    font-size: 32px;

    line-height: 1;

    cursor: pointer;

    transition: color 0.3s ease;
}


.modal-close:hover {
    color: var(--blue);
}


/* NUMBER */

.modal-number {
    margin-bottom: 15px;

    color: var(--blue);

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 3px;
}


/* TITLE */

.service-modal-content h2 {
    margin-bottom: 20px;

    color: white;

    font-size: 38px;

    font-weight: 800;
}


/* DESCRIPTION */

.service-modal-content > p {
    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 16px;

    line-height: 1.7;
}


/* DETAILS */

.modal-details {
    margin-bottom: 30px;
}


.modal-details p {
    margin-bottom: 10px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 14px;

    line-height: 1.6;
}


/* BUTTON */

.modal-button {
    display: inline-block;

    padding: 14px 25px;

    background: var(--blue);

    color: white;

    text-decoration: none;

    font-weight: bold;

    transition: all 0.3s ease;
}


.modal-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(0, 123, 255, 0.25);
}

@media (max-width: 768px) {

    .navbar {
        padding: 18px 25px;
    }
    .logo img {
        width: 145px;
    }
    .nav-links {
        display: none;
    }
    /* OPEN MOBILE MENU */
    .nav-links.active {
        display: flex;

        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        flex-direction: column;

        gap: 0;

        padding: 20px 25px;

        background: var(--navy-dark);

        border-top: 1px solid var(--blue);
        border-bottom: 1px solid var(--blue);
    }
    .nav-links.active a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 123, 255, 0.15);
    }
    .menu-button {
        display: block;

        width: 40px;
        height: 40px;

        padding: 5px;

        background: transparent;
        border: none;

        cursor: pointer;

        position: relative;
        z-index: 10000;
    }
    .menu-button span {
        display: block;

        width: 28px;
        height: 3px;

        margin: 5px auto;

        background: #FFFFFF;

        transition: all 0.3s ease;
    }
    .menu-button.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-button.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-button.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .services {
        padding: 80px 25px;
    }
    .section-header {
        margin-bottom: 45px;
    }
    .section-header h2 {
        font-size: 38px;
    }
    .section-description {
        font-size: 15px;
    }
    .service-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }
    .service-card {
        padding: 30px 25px;
    }
    .menu-button.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    }

    /* FEATURED WORK */

.featured-work {
    padding: 100px 25px 90px;
}

.featured-work .section-header {
    margin-bottom: 50px;
}

.featured-work .section-header h2 {
    font-size: 40px;

    line-height: 1.08;
}

.featured-work .section-description {
    font-size: 15px;

    line-height: 1.7;
}

.work-grid {
    grid-template-columns: 1fr;

    gap: 20px;
}

.work-image {
    height: 200px;
}

.work-content {
    padding: 25px;
}


/* YOUR SERVICES CODE */
    .services {
    padding: 80px 25px;
    }
    .services {
        padding: 80px 25px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    #home,
    #services,
    #featured-work,
    #contact {
        scroll-margin-top: 50px;
}

/* SOCIAL MEDIA */

.social-section {
    margin-top: 50px;
}

.social-links {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

.social-link {
    padding: 14px 10px;

    text-align: center;

    font-size: 12px;
}

/* CONTACT MOBILE */

.contact {
    padding: 90px 25px;
}

.contact .section-header {
    margin-bottom: 45px;
}

.contact .section-header h2 {
    font-size: 42px;
}

.contact .section-header p {
    font-size: 15px;
}

.contact-options {
    grid-template-columns: 1fr;
    gap: 18px;
}

.contact-card {
    padding: 25px 20px;
}

.contact-info h3 {
    font-size: 15px;
}

.social-section {
    margin-top: 50px;
}

.social-links {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

.social-link {
    padding: 14px 10px;

    text-align: center;

    font-size: 12px;
}

.primary-button {
    width: 100%;

    box-sizing: border-box;
}

.telegram-qr {
    margin-top: 45px;
}

.telegram-qr a {
    max-width: 260px;
}

.telegram-qr img {
    max-width: 260px;
}

.telegram-qr p {
    font-size: 12px;

    padding: 0 15px;
}

/* FOOTER MOBILE */

.footer {
    padding: 60px 25px 25px;
}


.footer-container {
    grid-template-columns: 1fr;

    gap: 40px;

    padding-bottom: 40px;
}


.footer-brand img {
    width: 160px;
}


.footer-bottom {
    flex-direction: column;

    text-align: center;

    gap: 10px;
}

}
/* =========================================
   MOBILE OVERFLOW FIX
   ========================================= */

@media (max-width: 768px) {

    .hero {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .hero h1 {
        width: 100%;
        max-width: 100%;

        font-size: 40px !important;
        line-height: 1.08;

        letter-spacing: -1px;

        box-sizing: border-box;

        overflow-wrap: normal;
        word-break: normal;
    }

    .hero h1 span {
        display: block;

        width: 100%;
        max-width: 100%;

        white-space: normal;
    }

    .hero-description {
        width: 100%;
        max-width: 100%;

        white-space: normal !important;

        overflow-wrap: anywhere;
        word-break: normal;

        box-sizing: border-box;
    }

}
/* =========================================
   ANCHOR SCROLL OFFSET
   ========================================= */

#home,
#services,
#featured-work,
#contact {
    scroll-margin-top: 50px;
}
    


