/* ========================================
   RUSVOYAH SERVICE — PREMIUM LANDING
   ======================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --black: #0a0a0c;
    --black-2: #101015;
    --black-3: #16161d;
    --gray-1: #1c1c24;
    --gray-2: #2a2a36;
    --gray-3: #8a8a98;
    --gray-4: #5a5a68;
    --white: #f5f5f7;
    --white-soft: #e8e8ee;
    --gold: #2e7dff;
    --gold-light: #5ea8ff;
    --gold-dark: #1a5fcc;
    --gold-glow: rgba(46, 125, 255, 0.15);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --container: 1240px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: 'Manrope', sans-serif;
    background: var(--black);
    color: var(--white-soft);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gold {
    color: var(--gold-light);
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader__logo { text-align: center; }
.preloader__mark {
    width: 90px;
    margin: 0 auto 18px;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(46,125,255,0.5));
    animation: preloaderPulse 1.6s ease-in-out infinite;
}
@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.08); opacity: 1; }
}
.preloader__text {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    display: block;
    margin-bottom: 24px;
}
.preloader__text span { color: var(--gold); }
.preloader__bar {
    width: 200px;
    height: 2px;
    background: var(--gray-2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}
.preloader__progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    animation: load 1.4s var(--ease-out) forwards;
}
@keyframes load { to { width: 100%; } }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}
.header.scrolled {
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 14px 0;
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.logo {
    display: flex;
    align-items: center;
    line-height: 1;
    white-space: nowrap;
}
.logo__main {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}
.logo__accent { color: var(--gold); }
.nav {
    display: flex;
    gap: 36px;
}
.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--white-soft);
    position: relative;
    transition: color 0.3s;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }
.header__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    padding: 10px 18px;
    border: 1px solid var(--gray-2);
    border-radius: 100px;
    transition: var(--transition);
}
.header__phone:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.burger span {
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}
.btn--primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: var(--black);
    box-shadow: 0 8px 30px var(--gold-glow);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(46, 125, 255, 0.35);
}
.btn--ghost {
    border: 1px solid var(--gray-2);
    color: var(--white);
    background: rgba(255,255,255,0.02);
}
.btn--ghost:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: var(--gold-glow);
}
.btn--lg { padding: 18px 38px; font-size: 16px; }
.btn--sm { padding: 10px 20px; font-size: 13px; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(46, 125, 255, 0.12), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(46, 125, 255, 0.06), transparent 40%),
        var(--black);
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(46, 125, 255, 0.08);
    border: 1px solid rgba(46, 125, 255, 0.25);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 28px;
}
.pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 0 var(--gold);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(46,125,255,0.6); }
    70% { box-shadow: 0 0 0 12px rgba(46,125,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(46,125,255,0); }
}
.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 24px;
}
.hero__desc {
    font-size: 18px;
    color: var(--gray-3);
    max-width: 500px;
    margin-bottom: 38px;
}
.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.hero__stats {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-2);
}
.stat__num {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}
.stat__label {
    font-size: 13px;
    color: var(--gray-3);
    margin-top: 6px;
}

/* Hero visual */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero__img-wrap {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 40px 60px rgba(0,0,0,0.65));
}
/* Base master — always visible, never fades */
.hero__img--base {
    z-index: 1;
}
/* Smiling master — sits on top, fades in/out smoothly over the base */
.hero__img--smile {
    z-index: 2;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    pointer-events: none;
}
.hero__ring {
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(46, 125, 255, 0.18);
    border-radius: var(--radius);
    z-index: -1;
    animation: floatRing 6s ease-in-out infinite;
}
@keyframes floatRing {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, 10px); }
}
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-3);
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 3;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== MARQUEE ===== */
.marquee {
    background: var(--black-2);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    overflow: hidden;
    padding: 22px 0;
}
.marquee__track {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
    width: max-content;
}
.marquee__track span {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    opacity: 0.5;
}
.marquee__dot { color: var(--gold); opacity: 1; font-size: 14px; }
@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section { padding: 110px 0; }
.section__head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}
.section__tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--gold-glow);
    border-radius: 100px;
}
.section__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -0.5px;
}

/* ===== SERVICES ===== */
.services { background: var(--black); }
.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.service-card {
    position: relative;
    padding: 40px 30px;
    background: var(--black-3);
    border: 1px solid var(--gray-2);
    border-radius: var(--radius);
    transition: var(--transition);
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-out);
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-dark);
    background: var(--gray-1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card--featured {
    background: linear-gradient(160deg, rgba(46,125,255,0.12), var(--black-3) 60%);
    border-color: var(--gold-dark);
}
.service-card__badge {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 4px 12px;
    border-radius: 100px;
}
.service-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border-radius: 16px;
    color: var(--gold-light);
    margin-bottom: 24px;
    transition: var(--transition);
}
.service-card:hover .service-card__icon {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.05);
}
.service-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.25;
}
.service-card__text {
    font-size: 14px;
    color: var(--gray-3);
    line-height: 1.65;
}

/* ===== ABOUT ===== */
.about { background: var(--black-2); }
.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about__visual {
    position: relative;
    padding: 30px;
}
.about__img-main {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}
.about__img-main--svg img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.about__img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about__img-floating {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 45%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 6px solid var(--black-2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.about__img-floating img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about__exp {
    position: absolute;
    top: 0;
    left: -20px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: var(--black);
    padding: 20px 26px;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 40px rgba(46,125,255,0.3);
}
.about__exp-num {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}
.about__exp-text {
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
}
.about__content .section__tag { margin-bottom: 16px; }
.about__content .section__title { text-align: left; margin-bottom: 24px; }
.about__text {
    font-size: 16px;
    color: var(--gray-3);
    margin-bottom: 28px;
}
.about__list {
    list-style: none;
    margin-bottom: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.about__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--white-soft);
    font-weight: 500;
}
.about__item svg {
    flex-shrink: 0;
    color: var(--gold);
    background: var(--gold-glow);
    border-radius: 50%;
    padding: 3px;
    width: 26px;
    height: 26px;
}

/* ===== BRANDS ===== */
.brands { background: var(--black); }
.brands__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.brand-card {
    padding: 44px 30px;
    text-align: center;
    background: var(--black-3);
    border: 1px solid var(--gray-2);
    border-radius: var(--radius);
    transition: var(--transition);
}
.brand-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-dark);
    background: var(--gray-1);
}
.brand-card__logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 16px;
    transition: color 0.3s;
}
.brand-card:hover .brand-card__logo { color: var(--gold-light); }
.brand-card p {
    font-size: 14px;
    color: var(--gray-3);
    line-height: 1.5;
}

/* ===== GALLERY ===== */
.gallery { background: var(--black-2); }
.gallery__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 540px;
}
.gallery__item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.gallery__item--large {
    grid-row: 1 / 3;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,12,0.85), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 28px;
    opacity: 0;
    transition: opacity 0.4s;
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__overlay span {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

/* ===== CTA ===== */
.cta { padding: 60px 0 110px; background: var(--black); }
.cta__box {
    position: relative;
    text-align: center;
    padding: 80px 40px;
    background:
        radial-gradient(circle at center, rgba(46,125,255,0.15), transparent 70%),
        linear-gradient(135deg, var(--black-3), var(--gray-1));
    border: 1px solid var(--gray-2);
    border-radius: 30px;
    overflow: hidden;
}
.cta__bg-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-glow), transparent 60%);
    filter: blur(60px);
}
.cta__title {
    position: relative;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.15;
}
.cta__text {
    position: relative;
    font-size: 17px;
    color: var(--gray-3);
    max-width: 540px;
    margin: 0 auto 36px;
}
.cta__actions {
    position: relative;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACTS ===== */
.contacts { background: var(--black-2); }
.contacts__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.contacts__info .section__tag { margin-bottom: 16px; }
.contacts__info .section__title { text-align: left; margin-bottom: 40px; }
.contacts__items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}
.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.contact-row__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    color: var(--gold-light);
    border-radius: 14px;
}
.contact-row__label {
    font-size: 12px;
    color: var(--gray-3);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.contact-row__value {
    font-size: 17px;
    color: var(--white);
    font-weight: 500;
    line-height: 1.4;
}
a.contact-row:hover .contact-row__value { color: var(--gold-light); }
.contacts__socials {
    display: flex;
    gap: 14px;
}
.social-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-3);
    border: 1px solid var(--gray-2);
    border-radius: 14px;
    color: var(--white-soft);
    transition: var(--transition);
}
.social-btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-3px);
}
.contacts__map {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: var(--radius);
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 30%, rgba(46,125,255,0.1), transparent 50%),
        var(--black-3);
    border: 1px solid var(--gray-2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contacts__map-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(46,125,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46,125,255,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
}
.contacts__map-content {
    position: relative;
    text-align: center;
    color: var(--gold-light);
    padding: 30px;
}
.contacts__map-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--white);
    margin: 20px 0 12px;
}
.contacts__map-content p {
    color: var(--gray-3);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    border-top: 1px solid var(--gray-2);
    padding: 60px 0 40px;
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}
.footer__tagline {
    margin-top: 16px;
    color: var(--gray-3);
    font-size: 14px;
    font-style: italic;
}
.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer__nav a {
    color: var(--gray-3);
    font-size: 14px;
    transition: color 0.3s;
}
.footer__nav a:hover { color: var(--gold-light); }
.footer__info { text-align: right; }
.footer__info p {
    color: var(--gray-3);
    font-size: 13px;
    margin-bottom: 6px;
}
.footer__copy {
    margin-top: 16px !important;
    color: var(--gray-4) !important;
    font-size: 12px !important;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    transition-delay: var(--d, 0s);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services__grid, .brands__grid { grid-template-columns: repeat(2, 1fr); }
    .hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .hero__visual { order: -1; }
    .hero__img-wrap { max-width: 300px; margin: 0 auto; }
    .about__inner, .contacts__inner { grid-template-columns: 1fr; gap: 60px; }
    .about__exp { left: 0; right: auto; max-width: 200px; padding: 16px 20px; }
    .about__exp-num { font-size: 28px; }
}

@media (max-width: 768px) {
    .nav, .header__phone { display: none; }
    .burger { display: flex; }
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--black-2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        border-left: 1px solid var(--gray-2);
    }
    .nav.active { transform: translateX(0); }
    .nav__link { font-size: 20px; }

    .section { padding: 70px 0; }
    .hero { padding-top: 100px; min-height: auto; }
    .hero__title { font-size: 2.4rem; }
    .hero__stats { gap: 24px; flex-wrap: wrap; }
    .stat__num { font-size: 28px; }
    .services__grid, .brands__grid { grid-template-columns: 1fr; }
    .about__list { grid-template-columns: 1fr; }
    .gallery__grid { grid-template-columns: 1fr; height: auto; grid-template-rows: auto; }
    .gallery__item, .gallery__item--large { min-height: 240px; }
    .footer__inner { grid-template-columns: 1fr; }
    .footer__info { text-align: left; }
    .cta__box { padding: 50px 24px; }
    .about__img-floating { display: none; }
    .about__visual { padding: 10px; }
    /* Badge becomes a static pill below the image on mobile */
    .about__exp {
        position: static;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin-top: 20px;
        padding: 14px 20px;
        text-align: left;
    }
    .about__exp-num { font-size: 26px; }
    .about__exp-text { font-size: 12px; margin-top: 0; }
}
