﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black: #0a0a0a;
    --dark: #111111;
    --dark2: #1a1a1a;
    --dark3: #222222;
    --red: #bfc1c4;
    --red-light: #f4f5f7;
    --silver-dark: #6f7378;
    --silver-mid: #bfc1c4;
    --silver-light: #f4f5f7;
    --gold: #c4c6c8;
    --gold-light: #e5e7ea;
    --white: #f5f0eb;
    --gray: #888888;
    --gray-light: #aaaaaa;
    --border: rgba(255,255,255,0.07);
    --border-strong: rgba(255,255,255,0.14);
    --glass: rgba(17,17,17,0.76);
    --shadow-red: 0 18px 60px rgba(210,214,218,0.18);
    --shadow-dark: 0 24px 80px rgba(0,0,0,0.45);
    --silver-sheen: linear-gradient(135deg, #f8f9fb 0%, #bfc1c4 34%, #777b80 58%, #eceff2 100%);
}

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

body {
    background:
        radial-gradient(circle at 15% 8%, rgba(210,214,218,0.13), transparent 34%),
        radial-gradient(circle at 85% 18%, rgba(255,255,255,0.07), transparent 28%),
        linear-gradient(180deg, #080808 0%, var(--black) 42%, #0d0d0d 100%);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: clip;
    max-width: 100%;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 75%);
}

img, svg, video {
    max-width: 100%;
    height: auto;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 clamp(16px, 5vw, 60px);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10,10,10,0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
    max-width: 100%;
}
nav.scrolled {
    height: 60px;
    background: rgba(10,10,10,0.98);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nav-logo-icon {
    width: 40px; height: 40px;
    border: 1px solid rgba(244,245,247,0.74);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    background: #000;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 10px 28px rgba(210,214,218,0.16);
    flex-shrink: 0;
}
.nav-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.nav-logo-text span:first-child {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--white);
    text-transform: uppercase;
}
.nav-logo-text span:last-child {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--red);
    text-transform: uppercase;
    font-weight: 500;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: var(--gray-light);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
    background: var(--silver-sheen);
    color: #080808 !important;
    padding: 10px 24px;
    font-size: 11px !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600 !important;
    text-decoration: none;
    transition: all 0.2s !important;
    border: 1px solid rgba(255,255,255,0.44);
    box-shadow: 0 12px 32px rgba(210,214,218,0.24), inset 0 1px 0 rgba(255,255,255,0.7);
}
.nav-cta:hover {
    background: linear-gradient(135deg, #ffffff 0%, #d8dadd 44%, #8b8f94 100%) !important;
    color: #050505 !important;
}
.nav-cta::after { display: none !important; }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.burger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* ─── HERO ─── */
#hero {
    min-height: 100svh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 96px 0 180px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 28%, rgba(210,214,218,0.18), transparent 32%),
        radial-gradient(circle at 36% 74%, rgba(255,255,255,0.07), transparent 28%),
        linear-gradient(135deg, #080808 0%, #111111 46%, #050505 100%);
}
.hero-img {
    position: absolute;
    right: 0; top: -100px; bottom: 0;
    width: min(52vw, 760px);
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    opacity: 0.42;
    filter: grayscale(22%) contrast(1.1);
    -webkit-mask-image:
        linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 35%, black 60%),
        linear-gradient(to bottom, transparent 0%, black 22%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 35%, black 60%),
        linear-gradient(to bottom, transparent 0%, black 22%);
    mask-composite: intersect;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, var(--black) 0%, rgba(10,10,10,0.94) 36%, rgba(10,10,10,0.2) 74%),
        linear-gradient(0deg, var(--black) 0%, transparent 44%);
}
.hero-red-line {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, transparent, var(--red) 18%, var(--gold) 50%, var(--red) 82%, transparent);
    box-shadow: 0 0 36px rgba(210,214,218,0.36);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 clamp(16px, 5vw, 60px);
    max-width: 720px;
    min-width: 0;
    animation: heroReveal 0.8s ease both;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    padding: 8px 16px;
    border: 1px solid rgba(210,214,218,0.5);
    background: linear-gradient(135deg, rgba(210,214,218,0.16), rgba(255,255,255,0.05));
    box-shadow: var(--shadow-red);
}
.hero-badge span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600;
}
.hero-badge i { color: var(--red); font-size: 10px; }
.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(52px, 7vw, 88px);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 8px;
    color: var(--white);
    text-shadow: 0 18px 48px rgba(0,0,0,0.55);
}
.hero-title .accent {
    color: var(--red);
    background: linear-gradient(180deg, var(--red-light), var(--red));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    
}
.hero-subtitle-script {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3vw, 36px);
    font-style: italic;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 400;
}
.hero-desc {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 40px;
    font-weight: 300;
}
.hero-desc strong { color: var(--white); font-weight: 500; }
.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 560px;
    margin: -18px 0 34px;
}
.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.035);
    color: var(--gray-light);
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 600;
}
.hero-points i { color: var(--gold); font-size: 10px; }
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--silver-sheen);
    color: #080808;
    text-decoration: none;
    padding: 16px 36px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    transition: all 0.25s;
    border: 2px solid rgba(244,245,247,0.72);
    box-shadow: 0 18px 44px rgba(210,214,218,0.26), inset 0 1px 0 rgba(255,255,255,0.72);
}
.btn-primary:hover {
    background: rgba(255,255,255,0.05);
    color: var(--white);
    border-color: var(--red-light);
    transform: translateY(-2px);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    padding: 16px 36px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    transition: all 0.25s;
    border: 2px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
    background: rgba(255,255,255,0.04);
}
.hero-stats {
    position: absolute;
    bottom: 48px;
    left: clamp(16px, 5vw, 60px);
    right: clamp(16px, 5vw, 60px);
    display: flex;
    gap: 0;
    z-index: 2;
    border: 1px solid var(--border);
    background: var(--glass);
    backdrop-filter: blur(14px);
    max-width: min(760px, calc(100% - 32px));
    min-width: 0;
    box-shadow: var(--shadow-dark);
    animation: heroReveal 0.8s 0.18s ease both;
}
.hero-stat {
    flex: 1;
    padding: 20px 28px;
    border-right: 1px solid var(--border);
    text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}
.hero-stat-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 500;
}

/* ─── SECTION COMMONS ─── */
section {
    padding: clamp(60px, 8vw, 100px) clamp(16px, 5vw, 60px);
    max-width: 100%;
    overflow-x: clip;
    position: relative;
}
.container { position: relative; z-index: 1; }
.container::before {
    content: '';
    position: absolute;
    top: -28px;
    right: 0;
    width: 84px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red));
    opacity: 0.55;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.section-label span {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600;
}
.section-label::before, .section-label::after {
    content: '';
    display: block;
    width: 24px; height: 1px;
    background: var(--red);
}
.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1;
    color: var(--white);
    margin-bottom: 8px;
}
.section-title-script {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.5vw, 30px);
    font-style: italic;
    color: var(--gold-light);
    font-weight: 400;
    margin-bottom: 48px;
    display: block;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    min-width: 0;
}

/* ─── SERVICES ─── */
#services {
    background:
        linear-gradient(180deg, rgba(17,17,17,0.96), rgba(10,10,10,0.98)),
        var(--dark);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 10px;
    margin-top: 0;
}
.service-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--dark2);
    cursor: pointer;
    border: 1px solid transparent;
    isolation: isolate;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.service-card::before { display: none; }
.team-card-photo::before { display: none; }
.portfolio-item::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent 38%, rgba(210,214,218,0.14));
    opacity: 0;
    transition: opacity 0.35s;
}
.service-card:hover,
.team-card:hover,
.review-card:hover,
.process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-dark);
}
.service-card:hover {
    border-color: var(--red);
}
.portfolio-item:hover::before { opacity: 1; }
.service-card > img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: var(--img-pos, center);
    opacity: 0.75;
    transition: transform 0.5s ease;
    display: block;
}
.service-card:hover > img {
    transform: scale(1.05);
}
.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10,10,10,0.72) 0%, transparent 42%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 14px 20px 16px;
    z-index: 2;
    transition: background 0.4s ease;
}
.service-card:hover .service-card-overlay {
    background: linear-gradient(0deg, rgba(10,10,10,0.88) 0%, transparent 48%);
}
.service-card-icon {
    width: 44px; height: 44px;
    border: 1px solid var(--red);
    background: rgba(10, 10, 10, 0.92);
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
    font-size: 18px;
    margin-bottom: 10px;
    flex-shrink: 0;
    overflow: hidden;
    transition: all 0.3s;
}
.service-card-icon img {
    width: 24px;
    height: 24px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(77%) sepia(5%) saturate(500%) hue-rotate(182deg) brightness(95%) contrast(90%);
    transition: filter 0.3s;
}
.service-card:hover .service-card-icon {
    background: rgba(10, 10, 10, 0.92);
    border-color: var(--red-light);
    color: var(--red-light);
}
.service-card:hover .service-card-icon img {
    filter: brightness(0) saturate(100%) invert(96%) sepia(6%) saturate(200%) hue-rotate(182deg) brightness(103%) contrast(95%);
}
.service-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 4px;
}
.service-card-desc {
    font-size: 13px;
    color: var(--gray-light);
    line-height: 1.4;
    margin-bottom: 8px;
}
.service-card-price {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: var(--red);
    font-weight: 500;
}

/* ─── WHY US ─── */
#why { background: var(--black); }
.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-img-wrap {
    position: relative;
    filter: drop-shadow(0 24px 70px rgba(0,0,0,0.45));
}
.why-img-main {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    background: var(--dark2);
    filter: grayscale(20%);
    border: 1px solid var(--border);
}
.why-img-accent {
    position: absolute;
    bottom: -30px; right: -30px;
    width: 55%;
    aspect-ratio: 1;
    object-fit: cover;
    background: var(--dark3);
    border: 4px solid var(--black);
    box-shadow: var(--shadow-dark);
}
.why-img-badge {
    position: absolute;
    top: 24px; left: -24px;
    background: var(--silver-sheen);
    padding: 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-red);
}
.why-img-badge .num {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #080808;
    line-height: 1;
}
.why-img-badge .lbl {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}
.why-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}
.why-lead {
    color: var(--gray-light);
    font-size: 16px;
    line-height: 1.8;
    max-width: 560px;
    margin-top: -18px;
}
.why-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
    transition: transform 0.25s, border-color 0.25s;
}
.why-feature:hover {
    transform: translateX(8px);
    border-color: rgba(210,214,218,0.38);
}
.why-feature:last-child { border-bottom: none; padding-bottom: 0; }
.why-feature-icon {
    width: 48px; height: 48px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
    font-size: 20px;
    flex-shrink: 0;
    background: var(--dark2);
}
.why-feature-title {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 6px;
}
.why-feature-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

/* ─── REVIEWS ─── */
#reviews {
    background:
        radial-gradient(circle at 15% 12%, rgba(210,214,218,0.13), transparent 30%),
        var(--dark);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.review-card {
    background: var(--dark2);
    padding: 36px 32px;
    position: relative;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    border: 1px solid transparent;
}
.review-card:hover {
    background: var(--dark3);
    border-color: var(--border-strong);
}
.review-card::before {
    content: '"';
    position: absolute;
    top: 20px; right: 28px;
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: var(--red);
    opacity: 0.15;
    line-height: 1;
}
.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}
.review-stars i { color: var(--gold-light); font-size: 13px; }
.review-text {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 28px;
    font-style: italic;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.review-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--dark3);
    border: 2px solid var(--border);
    object-fit: cover;
    display: block;
}
.review-name {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}
.review-role {
    font-size: 11px;
    color: var(--red);
    letter-spacing: 1px;
}

/* ─── PORTFOLIO ─── */
#portfolio { background: var(--black); }
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-width: 0;
}
.portfolio-item {
    position: relative;
    overflow: hidden;
    background: var(--dark2);
    cursor: pointer;
    min-width: 0;
    aspect-ratio: 4 / 5;
}
.portfolio-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.5;
    transition: opacity 0.5s, transform 0.5s;
}
.portfolio-item:hover img {
    opacity: 0.8;
    transform: scale(1.06);
}
.portfolio-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }
.portfolio-item-overlay i {
    font-size: 28px;
    color: var(--white);
    border: 2px solid var(--white);
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
}
.portfolio-tag {
    position: absolute;
    bottom: 16px; left: 16px;
    background: var(--silver-sheen);
    padding: 4px 12px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #080808;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 10px 28px rgba(210,214,218,0.2), inset 0 1px 0 rgba(255,255,255,0.72);
}

/* ─── CTA BANNER ─── */
#cta {
    background:
        radial-gradient(circle at 82% 32%, rgba(255,255,255,0.18), transparent 22%),
        linear-gradient(135deg, #202226, var(--silver-mid), #070707);
    padding: clamp(48px, 8vw, 80px) clamp(16px, 5vw, 60px);
    position: relative;
    overflow: hidden;
}
.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.5) 10px,
        rgba(255,255,255,0.5) 11px
    );
}
.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(8px, 2vw, 18px) 0;
}
.cta-label {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    margin-bottom: 12px;
}
.cta-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
    margin-bottom: 12px;
}
.cta-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    max-width: 480px;
    line-height: 1.6;
}
.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    flex-shrink: 0;
}
.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--red);
    text-decoration: none;
    padding: 18px 44px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    transition: all 0.25s;
    white-space: nowrap;
}
.btn-white:hover {
    background: var(--black);
    color: var(--white);
}
.cta-phone {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
    transition: opacity 0.2s;
}
.cta-phone:hover { opacity: 0.8; }

/* ─── CONTACTS ─── */
#contacts {
    padding-inline: clamp(16px, 5vw, 60px);
    background:
        radial-gradient(circle at 18% 12%, rgba(210,214,218,0.13), transparent 28%),
        linear-gradient(180deg, var(--dark), var(--black));
}
#contacts .container {
    max-width: 1200px;
}
#contacts .section-label,
#contacts .section-title,
#contacts .section-title-script {
    margin-left: 0;
    margin-right: 0;
}
.contact-layout {
    width: 100%;
    margin-top: 40px;
}
.contact-info-items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    min-width: 0;
    align-items: start;
}
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px 24px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015)),
        var(--dark2);
    min-width: 0;
    border: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    transition: border-color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.contact-info-item:hover {
    background: var(--dark3);
    border-color: var(--border-strong);
    transform: translateY(-3px);
    box-shadow: var(--shadow-dark);
}
.contact-info-icon {
    width: 48px; height: 48px;
    border: 1px solid var(--red);
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
    font-size: 17px;
    flex-shrink: 0;
    background: rgba(210,214,218,0.08);
}
.contact-info-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 8px;
}
.contact-info-value {
    font-size: clamp(15px, 1.2vw, 18px);
    color: var(--white);
    font-weight: 400;
    line-height: 1.5;
    min-width: 0;
    overflow-wrap: anywhere;
}
.contact-info-value a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}
.contact-info-value a:hover { color: var(--red); }
.contacts-map {
    grid-column: 1 / -1;
    margin-top: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--dark2);
}
.contacts-map iframe {
    display: block;
    width: 100%;
    height: clamp(280px, 38vw, 420px);
    border: 0;
}

/* ─── PROCESS ─── */
#process {
    background:
        linear-gradient(180deg, rgba(10,10,10,0.98), rgba(17,17,17,0.96)),
        var(--black);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}
.process-card {
    position: relative;
    min-height: 300px;
    padding: 42px 34px 34px;
    background: var(--dark2);
    border: 1px solid transparent;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.process-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(210,214,218,0.14), transparent 38%),
        radial-gradient(circle at 82% 18%, rgba(255,255,255,0.1), transparent 24%);
    opacity: 0;
    transition: opacity 0.3s;
}
.process-card:hover {
    border-color: var(--border-strong);
}
.process-card:hover::before { opacity: 1; }
.process-number {
    position: absolute;
    top: 22px;
    right: 24px;
    font-family: 'Oswald', sans-serif;
    font-size: 82px;
    font-weight: 700;
    line-height: 1;
    color: rgba(255,255,255,0.045);
}
.process-icon {
    position: relative;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--red);
    color: var(--red);
    font-size: 20px;
    margin-bottom: 34px;
}
.process-card h3 {
    position: relative;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 14px;
}
.process-card p {
    position: relative;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}
.hours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 2px;
}
.hours-item {
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.hours-item:last-child { border-bottom: none; }
.hours-day { font-size: 13px; color: var(--gray); }
.hours-time {
    font-size: 13px;
    color: var(--white);
    font-weight: 500;
    text-align: right;
}

/* ─── FOOTER ─── */
footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: clamp(40px, 6vw, 60px) clamp(16px, 5vw, 60px) 32px;
    overflow-x: clip;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-decoration: none;
}
.footer-logo-icon {
    width: 36px; height: 36px;
    border: 2px solid var(--red);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    color: var(--red);
    transform: rotate(45deg);
    flex-shrink: 0;
}
.footer-logo-icon i { transform: rotate(-45deg); }
.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.footer-logo-text span:first-child {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--white);
    text-transform: uppercase;
}
.footer-logo-text span:last-child {
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--red);
    text-transform: uppercase;
    font-weight: 500;
}
.footer-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 36px; height: 36px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--gray);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}
.footer-social a:hover {
    border-color: var(--red);
    color: var(--red);
}
.footer-col-title {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    text-decoration: none;
    color: var(--gray);
    font-size: 13px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a::before {
    content: '';
    display: block;
    width: 12px; height: 1px;
    background: var(--red);
    flex-shrink: 0;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
}
.footer-contact-item i {
    color: var(--red);
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
}
.footer-contact-item span {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}
.footer-contact-item a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.footer-copy {
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 0.5px;
}
.footer-copy span { color: var(--red); }
.footer-bottom-links {
    display: flex;
    gap: 24px;
}
.footer-bottom-links a {
    font-size: 11px;
    color: var(--gray);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--white); }

/* ─── PRICE TABLE ─── */
#price { background: var(--dark2); }
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
}
.price-cols > div {
    padding: 32px;
    background: rgba(10,10,10,0.28);
    border: 1px solid var(--border);
}
.price-table tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}
.price-table tr:hover { background: rgba(255,255,255,0.02); }
.price-table td {
    padding: 16px 0;
    font-size: 14px;
    color: var(--gray-light);
}
.price-table td:first-child { color: var(--white); font-weight: 400; }
.price-table td:last-child {
    text-align: right;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    color: var(--red);
    font-weight: 500;
    white-space: nowrap;
}
.price-table td .price-note {
    font-size: 11px;
    color: var(--gray);
    display: block;
    margin-top: 2px;
}
.price-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    min-width: 0;
}
.services-grid,
.reviews-grid,
.team-grid {
    min-width: 0;
}
.price-category {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600;
    padding: 0 0 8px;
    border-bottom: 2px solid var(--red);
    margin-bottom: 0;
}

/* ─── TEAM ─── */
#team { background: var(--black); }
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.team-card {
    background: var(--dark2);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.team-card-photo {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--dark3);
}
.team-card-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: var(--img-pos, center);
    display: block;
    opacity: 0.85;
    transition: transform 0.5s ease;
}
.team-card:hover .team-card-photo img {
    transform: scale(1.05);
}
.team-card-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10,10,10,0.72) 0%, transparent 45%);
    pointer-events: none;
    transition: background 0.4s ease;
}
.team-card:hover .team-card-photo-overlay {
    background: linear-gradient(0deg, rgba(10,10,10,0.88) 0%, transparent 48%);
}
.team-card-number {
    position: absolute;
    top: 16px; right: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: rgba(210,214,218,0.13);
    line-height: 1;
    pointer-events: none;
}
.team-card-photo-info {
    position: absolute;
    bottom: 24px; left: 28px; right: 28px;
}
.team-card-spec {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 6px;
}
.team-card-name {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1;
}
.team-card-body {
    padding: 24px 28px 28px;
    border-top: 2px solid var(--red);
}
.team-card-bio {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 18px;
}
.team-card-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}
.team-card-skill {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-light);
    padding: 4px 10px;
    border: 1px solid var(--border);
    font-weight: 500;
}
.team-card-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: var(--red);
    text-decoration: none;
    padding: 13px 20px;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    border: 1px solid var(--red);
    transition: all 0.25s;
    width: 100%;
}
.team-card-book:hover {
    background: var(--silver-sheen);
    color: #080808;
}

/* ─── PARTNERS ─── */
#partners {
    background: var(--black);
    padding: 60px clamp(16px, 5vw, 60px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow-x: clip;
}
.partners-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}
.partners-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}
.partners-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}
.partners-logos {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.partner-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gray);
    text-transform: uppercase;
    transition: color 0.2s;
    text-decoration: none;
}
.partner-logo:hover { color: var(--white); }

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── TOAST ─── */
.toast {
    position: fixed;
    bottom: 32px; right: 32px;
    background: var(--dark2);
    border: 1px solid var(--red);
    border-left: 4px solid var(--red);
    padding: 16px 24px;
    color: var(--white);
    font-size: 14px;
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.3s;
    max-width: 320px;
}
.toast.show { transform: translateX(0); }
.toast-title {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    color: var(--white);
}
.toast-msg { font-size: 13px; color: var(--gray-light); }

/* ─── SCROLL TO TOP ─── */
.scroll-top {
    position: fixed;
    bottom: 32px; left: 32px;
    width: 44px; height: 44px;
    background: var(--silver-sheen);
    color: #080808;
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 999;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: linear-gradient(135deg, #ffffff 0%, #d8dadd 48%, #8b8f94 100%); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    nav { padding: 0 clamp(16px, 4vw, 32px); }
    footer { padding: 48px clamp(16px, 4vw, 32px) 24px; }
    #cta { padding: 60px clamp(16px, 4vw, 32px); }
    #partners { padding: 48px clamp(16px, 4vw, 32px); }
    .hero-content { padding: 0 clamp(16px, 4vw, 32px); }
    .hero-stats {
        left: clamp(16px, 4vw, 32px);
        right: clamp(16px, 4vw, 32px);
    }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(3, 1fr); }
    .process-card { padding: 34px 24px 28px; }

    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / -1; }
    .why-layout { gap: 48px; }
    .price-cols { gap: 40px; }
    .partners-logos { gap: 28px 36px; }
}

@media (max-width: 768px) {
    nav { padding: 0 16px; }
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: rgba(10,10,10,0.98);
        padding: 24px 16px;
        gap: 16px;
        border-top: 1px solid var(--border);
    }
    .burger { display: flex; }
    footer { padding: 40px 16px 20px; }
    #cta { padding: 48px 16px; }
    #partners { padding: 40px 16px; }
    .hero-content {
        grid-row: 2;
        width: 100%;
        max-width: none;
        padding: 0 16px;
        margin-bottom: 20px;
    }
    .hero-stats {
        grid-row: 3;
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 0 16px 20px;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        max-width: none;
        flex-shrink: 0;
        background:
            linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
            rgba(12,12,12,0.76);
        border-color: rgba(210,214,218,0.22);
        box-shadow: 0 18px 56px rgba(0,0,0,0.42);
    }
    .hero-stat {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-width: 0;
        padding: 12px 6px;
        border-right: 1px solid var(--border);
        border-bottom: none;
    }
    .hero-stat:last-child { border-right: none; }
    .hero-stat-num { font-size: clamp(18px, 4.5vw, 28px); }
    .hero-stat-label { font-size: clamp(7px, 2vw, 9px); letter-spacing: 0.5px; line-height: 1.3; }
    #hero {
        display: grid;
        grid-template-rows: minmax(110px, 1fr) auto auto;
        align-content: end;
        padding: 0;
        min-height: 92svh;
    }
    .services-grid { grid-template-columns: 1fr; }
    .service-card > img {
        object-position: var(--img-pos-mobile, var(--img-pos, center));
    }
    .team-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .process-card { min-height: auto; }
    .why-layout { grid-template-columns: 1fr; }
    .why-img-wrap { display: none; }
    .why-lead { margin-top: 0; }
    .contact-info-items { grid-template-columns: 1fr; gap: 10px; }
    .contact-info-item { flex-direction: row; align-items: flex-start; }
    .cta-inner { flex-direction: column; align-items: flex-start; }
    .cta-actions { align-items: stretch; width: 100%; }
    .btn-white { white-space: normal; text-align: center; justify-content: center; }
    .cta-phone { font-size: clamp(16px, 4.5vw, 22px); }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; align-items: center; gap: 12px; }
    .price-cols { grid-template-columns: 1fr; gap: 32px; }
    .price-table td:last-child { white-space: normal; }
    .hero-img {
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        opacity: 0.48;
        object-position: center 18%;
        filter: grayscale(10%) contrast(1.08) brightness(0.95);
        -webkit-mask-image: linear-gradient(to bottom, black 0%, black 58%, transparent 92%);
        mask-image: linear-gradient(to bottom, black 0%, black 58%, transparent 92%);
    }
    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(10,10,10,0.12) 0%, rgba(10,10,10,0.55) 42%, var(--black) 100%),
            linear-gradient(90deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.22) 55%, rgba(10,10,10,0.65) 100%);
    }
    .partners-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
    .partners-divider { display: none; }
    .partners-logos { gap: 20px 24px; }
    .scroll-top { bottom: 16px; left: 16px; }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 50px;
        line-height: 0.92;
        margin-bottom: 4px;
        letter-spacing: 0;
    }
    .hero-subtitle-script {
        font-size: 19px;
        margin-bottom: 10px;
    }
    .hero-desc {
        font-size: 13px;
        line-height: 1.48;
        margin-bottom: 18px;
    }
    .hero-points { margin-top: -10px; }
    .hero-points span { width: 100%; }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .btn-primary,
    .btn-outline {
        padding: 12px 16px;
        font-size: 10px;
        letter-spacing: 1.5px;
        justify-content: center;
    }
    .hero-content {
        padding: 0 16px;
        margin-bottom: 16px;
    }
    .hero-stat { padding: 8px 3px; }
    .hero-stat-num { font-size: 15px; }
    .hero-stat-label {
        font-size: 6px;
        letter-spacing: 0.2px;
        line-height: 1.2;
    }
    .hero-stats { margin: 0 12px 14px; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-item { aspect-ratio: 4 / 5; }
    .partners-logos { gap: 16px 20px; }
    .partner-logo { font-size: 15px; }
    .price-table td { font-size: 13px; padding: 12px 0; }
    .price-cols > div { padding: 24px 18px; }
    .contact-info-item { padding: 16px 14px; gap: 12px; }
    .contact-info-icon { width: 40px; height: 40px; font-size: 15px; }
    .footer-bottom-links { flex-direction: column; gap: 8px; }
    #hero {
        grid-template-rows: minmax(128px, 1fr) auto auto;
        min-height: 100svh;
    }
    .hero-img {
        object-position: center 12%;
        width: 100%;
        height: 100%;
        top: -150px;
        right: -100px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
