/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0a0a;
    overflow-x: hidden;
    width: 100%;
}

body.body-lock {
    overflow: hidden;
}

body.scroll-lock { overflow: hidden; padding-right: var(--scrollbar-comp, 0px); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: clamp(12px, 2vw, 16px) clamp(20px, 4vw, 32px);
    border: none;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 2vw, 1rem);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn--primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn--outline {
    background-color: transparent;
    color: white;
    border: 2px solid #d4af37;
}

.btn--outline:hover {
    background-color: #d4af37;
    color: #000;
    transform: translateY(-2px);
}

.btn--small {
    padding: clamp(8px, 1.5vw, 10px) clamp(16px, 3vw, 20px);
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
}

.btn--full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo__text {
    font-size: clamp(1.2rem, 3vw, 1.1rem);
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo:hover, .logo:focus, .logo:active {
    text-decoration: none;
    color: inherit;
}

.logo__img { display: block; height: auto; max-height: 48px; }
.logo__text-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo__text, .logo__subtitle { text-decoration: none; }

.logo__subtitle {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: #fff;
    margin: 0;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 3vw, 2rem);
    align-items: center;
    flex-wrap: nowrap;
    overflow: visible;
}

.nav__link {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: clamp(0.9rem, 2vw, 1rem);
    white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
    color: #d4af37;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

/* Desktop overflow More menu */
.nav__more { position: relative; display: none; }
.nav__more-toggle {
    background: none; border: 1px solid rgba(212,175,55,0.35); color: #d4af37; border-radius: 12px; padding: 4px 10px; cursor: pointer; font-size: 1.1rem;
}
.nav__more-list {
    position: absolute; right: 0; top: 120%; min-width: 220px; background: rgba(10,10,10,0.98); border: 1px solid rgba(212,175,55,0.2); border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); padding: 8px; list-style: none; display: none; z-index: 1100;
}
.nav__more[aria-expanded="true"] .nav__more-list,
.nav__more.open .nav__more-list { display: block; }
.nav__more-item a { display: block; padding: 8px 10px; color: #e0e0e0; text-decoration: none; border-radius: 8px; }
.nav__more-item a:hover { background: rgba(212,175,55,0.12); color: #d4af37; }

@media (min-width: 993px) {
    .nav__more { display: block; }
}

.burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: #d4af37;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.burger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a29 0%, #1a1a1a2b 100%);
}

.hero__bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero__bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__video { background-color: #000; }

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    padding-top: 100px;
    min-height: calc(100vh - 100px);
}

.hero__title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero__buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero__features {
    display: flex;
    gap: clamp(1rem, 3vw, 2rem);
    flex-wrap: wrap;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d4af37;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 500;
}

.hero__feature-icon {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.hero__image {
    text-align: center;
    position: relative;
}

.hero__image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(212, 175, 55, 0.3);
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    opacity: 0.8;
}

.hero__scroll-line {
    width: 1px;
    height: 30px;
    background-color: #d4af37;
    margin-top: 10px;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.5); }
    100% { opacity: 1; transform: scaleY(1); }
}

/* About Section */
.about {
    padding: clamp(50px, 10vw, 100px) 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.about__image {
    position: relative;
}

.about__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.about__experience {
    position: absolute;
    bottom: -20px;
    right: -15px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    padding: clamp(15px, 3vw, 20px);
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
}

.about__years {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.about__text .about__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about__description {
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 3vw, 2rem);
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.stat__number {
    display: block;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
}

/* Ensure percent sign is always shown for the 2nd stat ("Довольных клиентов") */
.about .stat:nth-child(2) .stat__number i { display: none; }
.about .stat:nth-child(2) .stat__number::after { content: '%'; margin-left: 1px; font-style: normal; }

.stat__label {
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

/* Services Section */
.services {
    padding: clamp(50px, 10vw, 100px) 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
}

.service-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: clamp(2rem, 4vw, 2.5rem);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 80px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.service-card__icon {
    width: clamp(60px, 8vw, 80px);
    height: clamp(60px, 8vw, 80px);
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card__title {
    font-size: clamp(1.2rem, 2.8vw, 1.5rem);
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card__description {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.service-card__features {
    list-style: none;
}

.service-card__features li {
    padding: 0.5rem 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 25px;
    font-size: clamp(0.9rem, 1.8vw, 0.95rem);
    line-height: 1.4;
}

.service-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 1.1em;
}

/* Advantages Section */
.advantages {
    padding: clamp(50px, 10vw, 100px) 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
}

.advantage-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: clamp(2rem, 4vw, 2.5rem);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.advantage-card__icon {
    font-size: clamp(2.5rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.advantage-card__title {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.advantage-card__description {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Portfolio Section */
.portfolio {
    padding: clamp(50px, 10vw, 100px) 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.portfolio__filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: clamp(8px, 2vw, 10px) clamp(15px, 3vw, 20px);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #e0e0e0;
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
    white-space: nowrap;
	text-decoration: none;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-color: #d4af37;
    color: #000;
    transform: translateY(-2px);
}

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
}

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #1a1a1a;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 80px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.portfolio-item__image {
    position: relative;
    overflow: hidden;
}

.portfolio-item__image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-item__image img {
    transform: scale(1.1);
}

.portfolio-item__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-item__overlay {
    transform: translateY(0);
}

.portfolio-item__overlay h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.portfolio-item__overlay p {
    margin-bottom: 1rem;
    opacity: 0.9;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #d4af37;
}

/* Process Section */
.process {
    padding: clamp(50px, 10vw, 100px) 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.process__steps {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: clamp(2rem, 5vw, 3rem);
    align-items: flex-start;
}

.step__number {
    flex-shrink: 0;
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.step__title {
    font-size: clamp(1.2rem, 2.8vw, 1.5rem);
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step__description {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Contact Section */
.contact {
    padding: clamp(50px, 10vw, 100px) 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.contact__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact__description {
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    color: #b0b0b0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact__details {
    margin-bottom: 2.5rem;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact__icon {
    font-size: 1.5rem;
    width: 50px;
    text-align: center;
    flex-shrink: 0;
}

.contact__item h4 {
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.contact__item a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.contact__item a:hover {
    color: #f4d03f;
}

.contact__item p {
    color: #e0e0e0;
    margin: 0;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.contact__note {
    display: block;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    color: #b0b0b0;
    margin-top: 0.25rem;
}

.contact__socials {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    padding: clamp(8px, 2vw, 10px) clamp(15px, 3vw, 20px);
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
    white-space: nowrap;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Contact Form */
.contact__form {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: clamp(2rem, 4vw, 2.5rem);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact__form h3 {
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form__subtitle {
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.4;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: clamp(12px, 2.5vw, 15px) clamp(15px, 3vw, 20px);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: all 0.3s ease;
    background: #1a1a1a;
    color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #808080;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.form__privacy {
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    color: #808080;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #e0e0e0;
    padding: clamp(2rem, 4vw, 3rem) 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.footer__info h4 {
    color: #d4af37;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 0.5rem;
}

.footer__info p {
    color: #b0b0b0;
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.footer__text {
    text-align: right;
}

.footer__text p {
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    color: #808080;
    line-height: 1.4;
}

/* Scroll to Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
    width: clamp(50px, 8vw, 58px);
    height: clamp(50px, 8vw, 58px);
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

#scrollTopBtn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTopBtn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 78%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 2rem 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        padding-bottom: calc(2rem + env(safe-area-inset-bottom));
		line-height: 1;
    }
	
 
    
    .nav.active {
        transform: translateX(0);
    }
    
    .nav__list {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .nav__link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }
    
    .burger {
        display: flex;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .container {
        padding: 0 15px;
    }
    
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 50px;
    }
    
    .hero__image {
        order: -1;
    }
    
    .hero__buttons {
        justify-content: center;
    }
    
    .hero__features {
        justify-content: center;
        height: 240px;
        display: inline-flex;
        align-content: flex-start;
    }
    
    .about__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about__experience {
        position: absolute;
        display: inline-block;
        margin-top: 1rem;
        bottom: 10%;
    }
    
    .about__stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portfolio__grid {
        grid-template-columns: 1fr;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .advantages__grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .footer__text {
        text-align: center;
    }
    
    #scrollTopBtn {
        bottom: 15px;
        left: 15px;
    }
}

@media (max-width: 480px) {
    .portfolio__filter {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero__buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .contact__socials {
        justify-content: center;
    }
    
    .hero__features {
        flex-direction: column;
        gap: 0rem;
        height: 180px;
        display: inline-flex;
        justify-content: flex-start;
    }
    .hero__scroll {
        bottom: 10px;
    }
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn--primary {
        background: #ffffff;
        color: #000000;
        border: 2px solid #ffffff;
    }
    
    .service-card,
    .advantage-card {
        border: 2px solid #ffffff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero__scroll-line {
        animation: none;
    }
}

/* SCN Group bottom-centered badge */
.scn-badge {
    position: relative;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    opacity: 0.85;
    transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease;
}

.scn-badge:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.scn-badge img {
    display: block;
    max-height: 18px;
    height: auto;
    width: auto;
}

@media (max-width: 480px) {
    .scn-badge { bottom: 10px; padding: 5px 8px; }
    .scn-badge img { max-height: 16px; }
}

/* Portfolio Modal */
.modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 2000; }
.modal.open { display: flex; }
.modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(3px); }
.modal__dialog { position: relative; background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%); border:1px solid rgba(212,175,55,0.2); border-radius: 16px; padding: clamp(16px, 3vw, 24px); max-width: 900px; width: calc(100% - 24px); max-height: calc(100vh - 24px); overflow: auto; }
.modal__close { position: absolute; top: 8px; right: 12px; color: #d4af37; font-size: 28px; cursor: pointer;     border: 1px solid rgba(212, 175, 55, 0.35); border-radius: 50%; padding: 1px 9px; background: rgb(212 175 55 / 38%);}
.modal__title { margin: 0 0 8px 0; }
.modal__description { color: #b0b0b0; margin-bottom: 16px; }
.modal__gallery { display: grid; grid-template-columns: 1fr; gap: 12px; }
.modal__main { height: clamp(430px, 40vh, 780px); }
.modal__main img { width: 100%; height: 100%; object-fit: contain; border-radius: 12px; border:1px solid rgba(212,175,55,0.2); }
.modal__thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 8px; }
.modal__thumb { padding: 0; border: none; background: none; cursor: pointer; }
.modal__thumb img { width: 100%; height: 64px; object-fit: cover; border-radius: 8px; border:1px solid rgba(212,175,55,0.2); }
.modal__thumb.active img { border-color: #d4af37; box-shadow: 0 0 0 2px rgba(212,175,55,0.35); }

/* Before/After slider */
.ba-slider { position: relative; width: 100%; height: 300px; overflow: hidden; background: #0f0f0f; touch-action: pan-y; }
.ba-slider .ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-slider .ba-resize { position: absolute; inset: 0; width: var(--pos, 50%); overflow: hidden; }
.ba-slider .ba-resize .ba-img { position: absolute; inset: 0; }
.ba-slider .ba-handle { position: absolute; top: 0; bottom: 0; left: calc(var(--pos, 50%) - 12px); width: 24px; cursor: ew-resize; }
.ba-slider .ba-handle::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-50%); background: rgba(212,175,55,0.85); box-shadow: 0 0 0 1px rgba(0,0,0,0.2); }
.ba-slider .ba-handle::after { content: '\2194'; position: absolute; top: 35%; left: 50%; transform: translate(-50%, -50%); color: #000; background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%); border: 1px solid rgba(212,175,55,0.7); width: 25px; height: 25px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; box-shadow: 0 6px 18px rgba(0,0,0,0.35); z-index: 1; font-size: 20px; line-height: 34px; padding: 0px 2px 4px 2px; }
.ba-slider .ba-label { position: absolute; top: 12px; padding: 6px 10px; font-size: 12px; font-weight: 600; border-radius: 999px; backdrop-filter: blur(6px); border: 1px solid rgba(212,175,55,0.35); color: #fff; }
.ba-slider .ba-label--before { left: 12px; background: rgba(0,0,0,0.45); }
.ba-slider .ba-label--after { right: 12px; background: rgba(212,175,55,0.18); color: #ffd;
}
@media (max-width: 480px) { .ba-slider { height: 300px; } }

/* Ensure BA slider matches modal main height */
.modal__main .ba-slider { height: 100%; }

/* Shimmering gold headings */
h1, h2, h3, h4, h5, h6, .section-title, .logo__text, .service-card__title, .advantage-card__title, .contact__title, .about__title, .hero__title {
    background: linear-gradient(45deg, #b48811, #f7e39a, #c79d2d, #f7e39a, #b48811);
    background-size: auto;
    background-clip: border-box;
    background-size: 400% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: golden-shimmer 5s linear infinite;
}

@keyframes golden-shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Hero features enhanced */
.hero__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    gap: 1rem;
}
.hero__feature {
    background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(244,208,63,0.1));
    border: 1px solid rgba(212,175,55,0.25);
    padding: 12px 14px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.hero__feature::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 80px at var(--mx, 50%) var(--my, 0%), rgba(255,255,255,0.15), transparent 40%);
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}
.hero__feature:hover::after { opacity: 1; }
.hero__feature-icon { filter: drop-shadow(0 2px 6px rgba(212,175,55,0.35)); }

/* About stats animated look */
.stat { position: relative; overflow: hidden; }
.stat::before {
    content: '';
    position: absolute; inset: 0; background: linear-gradient(120deg, rgba(212,175,55,0.08), rgba(212,175,55,0));
    transform: translateX(-100%);
}
.stat.visible::before { animation: statSheen 2s ease forwards; }
@keyframes statSheen { to { transform: translateX(100%); } }

/* Portfolio overlay reveal on scroll */
.portfolio-item__overlay { will-change: transform; }
.portfolio-item.fade-in .portfolio-item__overlay { transform: translateY(100%); }
.portfolio-item.visible .portfolio-item__overlay { transform: translateY(0); }

/* Responsive tweak for hero features grid */
@media (max-width: 768px) {
    .hero__features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .hero__features { grid-template-columns: 1fr; height: 290px; }
}

/* FAQ Section */
.faq {
    padding: clamp(50px, 10vw, 100px) 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.faq__list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: clamp(0.75rem, 2vw, 1rem);
}

.faq__item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 14px;
    padding: 0.75rem 1rem;
    transition: border-color .3s, box-shadow .3s, transform .2s;
}

.faq__item[open] {
    border-color: #d4af37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.12);
}

.faq__item:hover { transform: translateY(-2px); }

.faq__item summary {
    list-style: none;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__question {
    cursor: pointer;
    font-size: clamp(1rem, 2.4vw, 1.2rem);
    color: #ffffff;
    position: relative;
    padding: 0.75rem 2.25rem 0.75rem 0.5rem;
}

.faq__question::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
    transform: translateY(-50%) rotate(-45deg);
    transition: transform .25s ease;
}

.faq__item[open] .faq__question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq__answer {
    color: #b0b0b0;
    padding: 0 0.5rem 0.75rem 0.5rem;
    font-size: clamp(0.95rem, 2vw, 1rem);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: clamp(50px, 10vw, 100px) 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 18px;
    padding: clamp(1.5rem, 3vw, 2rem);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 80px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.pricing-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    padding: 6px 10px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.8rem;
}

.pricing-card__header { margin-bottom: 1rem; }
.pricing-card__title { font-size: clamp(1.1rem, 2.5vw, 1.3rem); margin: 0 0 .25rem 0; }
.pricing-card__price { color: #d4af37; font-weight: 700; font-size: clamp(1rem, 2.3vw, 1.2rem); }

.pricing-card__features { list-style: none; margin: 1rem 0 1.25rem; }
.pricing-card__features li { position: relative; padding-left: 26px; margin: .5rem 0; color: #e0e0e0; font-size: clamp(0.9rem, 2vw, 1rem); }
.pricing-card__features li::before { content: '✓'; position: absolute; left: 0; top: 0; color: #d4af37; font-weight: 700; }

.pricing-card--popular { border-color: #d4af37; box-shadow: 0 20px 70px rgba(212, 175, 55, 0.18); }

.pricing__note { text-align: center; color: #b0b0b0; margin-top: 1.5rem; font-size: clamp(0.9rem, 2vw, 1rem); }

/* Testimonials Section */
.testimonials {
    padding: clamp(50px, 10vw, 100px) 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
}

.testimonial-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 18px;
    padding: clamp(1.5rem, 3vw, 2rem);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 70px rgba(212, 175, 55, 0.18);
    border-color: #d4af37;
}

.testimonial-card__rating {
    color: #d4af37;
    letter-spacing: 2px;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.testimonial-card__text {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    margin-bottom: 1rem;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.testimonial-card__name {
    margin: 0;
    font-size: 1rem;
}

.testimonial-card__meta {
    margin: 0;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.testimonials__cta {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 480px) {
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
}

#loading-overlay {
    transition: opacity 0.8s ease-out;
}

/* Collaboration Section */
.collaboration {
    padding: clamp(50px, 10vw, 100px) 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.collaboration__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
    margin-top: 1rem;
}

.collaboration-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 18px;
    padding: clamp(1.5rem, 3vw, 2rem);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.collaboration-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 70px rgba(212, 175, 55, 0.18);
    border-color: #d4af37;
}

.collaboration-card__title {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 0.75rem;
}

.collaboration-card__list {
    list-style: none;
}

.collaboration-card__list li {
    position: relative;
    padding-left: 26px;
    margin: .5rem 0;
    color: #e0e0e0;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.collaboration-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #d4af37;
    font-weight: 700;
}

.collaboration__cta {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 480px) {
    .collaboration__grid { grid-template-columns: 1fr; }
}

.form__counter {
    font-size: 11px;
    color: gray;
}

/* Partners Section */
.partners {
    padding: clamp(40px, 8vw, 80px) 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.partners__strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(120px, 1fr);
    gap: clamp(16px, 4vw, 28px);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    scrollbar-width: none;
}

.partners__strip::-webkit-scrollbar { height: 6px; }
.partners__strip::-webkit-scrollbar-track { background: rgba(255,255,255,0.06); border-radius: 10px; }
.partners__strip::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.35); border-radius: 10px; }

.partners__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eae7e7 0%, #595757 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 14px;
    padding: clamp(12px, 3vw, 18px);
    min-height: 84px;
    scroll-snap-align: start;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.partners__logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(212, 175, 55, 0.18);
    border-color: #d4af37;
}

.partners__logo img {
    max-height: 48px;
    width: auto;
    height: auto;
    filter: grayscale(100%) brightness(1.1) contrast(1.05);
    opacity: 0.9;
    transition: filter .25s ease, opacity .25s ease;
}

.partners__logo:hover img {
    filter: grayscale(0%) brightness(1) contrast(1);
    opacity: 1;
}

/* Partners navigation and fades */
.partners .container { position: relative; }
.partners__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.55);
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.35);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}
.partners__nav:hover { box-shadow: 0 10px 28px rgba(212,175,55,0.15); transform: translateY(-50%) scale(1.05); }
.partners__nav[disabled] { opacity: .4; pointer-events: none; }
.partners__nav--prev { left: -6px; }
.partners__nav--next { right: -6px; }

.partners__fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    pointer-events: none;
    z-index: 5;
}
.partners__fade--left { left: 0; background: linear-gradient(90deg, #0f0f0f 0%, rgba(15,15,15,0) 100%); }
.partners__fade--right { right: 0; background: linear-gradient(-90deg, #0f0f0f 0%, rgba(15,15,15,0) 100%); }

@media (max-width: 480px) {
    .partners__nav { display: none; }
    .partners__fade { width: 36px; }
}