/* ============================
   АвтоТехЦентр77 — Modern Redesign
   Black-Red Color Palette
   ============================ */

:root {
    --red: #D92B2B;
    --red-dark: #B71C1C;
    --red-light: #EF4444;
    --red-glow: rgba(217, 43, 43, 0.18);
    --black: #0A0A0A;
    --black-2: #111111;
    --black-3: #1A1A1A;
    --black-4: #222222;
    --black-5: #2A2A2A;
    --border: rgba(255,255,255,0.07);
    --border-red: rgba(217, 43, 43, 0.35);
    --text: #F5F5F5;
    --text-muted: #9A9A9A;
    --text-dim: #555555;
    --white: #FFFFFF;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow: 0 4px 20px rgba(0,0,0,0.5);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.6);
    --shadow-red: 0 8px 30px rgba(217, 43, 43, 0.3);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--black);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black-2); }
::-webkit-scrollbar-thumb { background: var(--red-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* ===== ANIMATIONS ===== */
@keyframes slide-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slide-right {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes glow-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes counter-up {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes line-grow {
    from { width: 0; }
    to { width: 60px; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}
.section {
    padding: 6rem 0;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    margin-bottom: 4rem;
}
.section-header.centered {
    text-align: center;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--red);
    margin-bottom: 0.85rem;
}
.section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1rem;
}
.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 540px;
    line-height: 1.7;
}
.section-header.centered .section-desc {
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.btn-red {
    background: var(--red);
    color: #fff;
    box-shadow: var(--shadow-red);
}
.btn-red:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(217, 43, 43, 0.45);
}
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}
.btn-ghost {
    background: rgba(217,43,43,0.1);
    color: var(--red-light);
    border: 1px solid var(--border-red);
}
.btn-ghost:hover {
    background: rgba(217,43,43,0.2);
    transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 2rem;
}
.nav-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo-icon {
    width: 38px;
    height: 38px;
    background: var(--red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.nav-logo-text strong {
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--white);
}
.nav-logo-text span {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.nav-logo-img {
    height: 52px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    display: block;
}
.footer-logo-img {
    height: 64px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    display: block;
}
.nav-links {
    display: flex;
    gap: 0.1rem;
    list-style: none;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.45rem 0.9rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}
.nav-links a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.05);
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.nav-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
}
.nav-phone a {
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    transition: color 0.2s;
    letter-spacing: -0.01em;
}
.nav-phone a:hover { color: var(--red-light); }
.nav-phone small {
    font-size: 0.68rem;
    color: var(--text-dim);
    font-weight: 500;
}
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}
.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 0.7rem 2rem;
    border-radius: 8px;
    transition: all 0.2s;
    letter-spacing: -0.02em;
}
.mobile-nav a:hover { color: var(--red-light); }
.mobile-nav .mob-phone {
    margin-top: 1.5rem;
    font-size: 1.5rem !important;
    color: var(--red-light) !important;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 7rem 0 4rem;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: blur(1px) saturate(0.5);
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(10,10,10,0.98) 0%,
        rgba(10,10,10,0.90) 45%,
        rgba(10,10,10,0.65) 70%,
        rgba(10,10,10,0.5) 100%
    );
}
.hero-red-accent {
    position: absolute;
    top: 0;
    right: 30%;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--red), transparent);
    opacity: 0.3;
    z-index: 1;
}
.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217,43,43,0.12) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    z-index: 1;
    animation: glow-pulse 7s ease-in-out infinite;
}
.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(217,43,43,0.12);
    border: 1px solid rgba(217,43,43,0.3);
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--red-light);
    margin-bottom: 1.75rem;
    animation: fade-in 0.8s ease-out;
}
.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: blink 2s infinite;
    flex-shrink: 0;
}
.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
    color: var(--white);
    animation: slide-up 0.8s ease-out 0.1s backwards;
}
.hero h1 .accent {
    color: var(--red);
}
.hero h1 .thin {
    font-weight: 300;
    color: var(--text-muted);
}
.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 500px;
    animation: slide-up 0.8s ease-out 0.2s backwards;
}
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: slide-up 0.8s ease-out 0.3s backwards;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.hero-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.04em;
    line-height: 1;
}
.hero-stat strong em {
    color: var(--red);
    font-style: normal;
}
.hero-stat small {
    font-size: 0.75rem;
    color: var(--text-dim);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    animation: slide-up 0.8s ease-out 0.4s backwards;
}
/* Hero Right - Photo */
.hero-visual {
    position: relative;
    animation: fade-in 1.2s ease-out 0.5s backwards;
}
.hero-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.hero-img-wrap img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}
.hero-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(10,10,10,0.5) 100%);
    z-index: 1;
}
.hero-img-border {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: calc(var(--radius-lg) + 2px);
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--red-dark), transparent, var(--red)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
}
.hero-float-card {
    position: absolute;
    background: rgba(26,26,26,0.92);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}
.hero-float-card.card-1 {
    bottom: -1.5rem;
    left: -1.5rem;
}
.hero-float-card.card-2 {
    top: 1.5rem;
    right: -1.5rem;
}
.hero-float-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(217,43,43,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.hero-float-text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}
.hero-float-text span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ===== TICKER BAR ===== */
.ticker-bar {
    background: var(--red-dark);
    padding: 0.7rem 0;
    overflow: hidden;
    position: relative;
}
.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    width: max-content;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0 2rem;
    color: rgba(255,255,255,0.9);
}
.ticker-dot {
    width: 5px;
    height: 5px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services {
    background: var(--black-2);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.service-card {
    background: var(--black-2);
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--red);
    transition: width 0.4s ease;
}
.service-card:hover {
    background: var(--black-3);
    z-index: 1;
}
.service-card:hover::after {
    width: 100%;
}
.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(217,43,43,0.1);
    border: 1px solid var(--border-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}
.service-card:hover .service-icon {
    background: rgba(217,43,43,0.2);
    border-color: var(--red);
}
.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    color: var(--white);
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.service-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--red-light);
    letter-spacing: -0.02em;
}

/* ===== GALLERY ===== */
.gallery {
    background: var(--black);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    aspect-ratio: 4/3;
}
.gallery-item.tall { aspect-ratio: 3/4; grid-row: span 2; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}
.gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 48px;
    height: 48px;
    background: rgba(217,43,43,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
    color: white;
}
.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(15px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    cursor: zoom-out;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: var(--radius);
    cursor: default;
    box-shadow: 0 0 80px rgba(217,43,43,0.2);
}
.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.lightbox-close:hover { background: var(--red); border-color: var(--red); }

/* ===== COMFORT / ABOUT ===== */
.about {
    background: var(--black-3);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}
.about-img-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--red);
    color: white;
    border-radius: var(--radius-sm);
    padding: 1rem 1.5rem;
    text-align: center;
    font-weight: 800;
}
.about-img-badge strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.04em;
}
.about-img-badge span {
    font-size: 0.78rem;
    opacity: 0.85;
    font-weight: 600;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: var(--black-4);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}
.about-feature:hover {
    border-color: var(--border-red);
    background: var(--black-5);
}
.about-feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(217,43,43,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.about-feature-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.15rem;
}
.about-feature-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== WHY US ===== */
.why {
    background: var(--black-2);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.why-card {
    background: var(--black-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red-dark), var(--red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
    border-color: var(--border-red);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), var(--shadow-red);
}
.why-number {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--red);
    line-height: 1;
    margin-bottom: 0.75rem;
}
.why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}
.why-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ===== BRANDS ===== */
.brands {
    background: var(--black);
}
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.brand-card {
    background: var(--black-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
}
.brand-card:hover {
    border-color: var(--border-red);
    background: var(--black-4);
    transform: translateY(-3px);
}
.brand-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
}
.brand-card p {
    font-size: 0.78rem;
    color: var(--text-dim);
}
.brands-more {
    text-align: center;
    padding: 1.1rem 2rem;
    background: var(--black-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== PRICES ===== */
.prices {
    background: var(--black-3);
}
.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}
.price-group {
    background: var(--black-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: border-color 0.3s ease;
}
.price-group:hover {
    border-color: var(--border-red);
}
.price-group h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--red);
    color: var(--white);
    letter-spacing: -0.02em;
}
.price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
}
.price-row:last-child { border-bottom: none; }
.price-row .name {
    color: var(--text-muted);
    font-size: 0.88rem;
    flex-shrink: 0;
    max-width: 55%;
}
.price-row .dots {
    flex: 1;
    border-bottom: 1px dashed rgba(255,255,255,0.08);
    margin-bottom: 0.25rem;
    min-width: 10px;
}
.price-row .val {
    color: var(--red-light);
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}
.price-note {
    background: var(--black-2);
    border: 1px solid var(--border);
    border-left: 4px solid var(--red);
    border-radius: var(--radius-sm);
    padding: 1.5rem 2rem;
    text-align: center;
}
.price-note p {
    color: var(--text-muted);
    font-size: 0.92rem;
}
.price-note strong { color: var(--red-light); }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--red-dark);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 50%;
    background: linear-gradient(to left, rgba(0,0,0,0.3), transparent);
}
.cta-banner::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
}
.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.cta-banner h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 0.75rem;
    color: var(--white);
}
.cta-banner p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2.25rem;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-white {
    background: var(--white);
    color: var(--red-dark);
    font-weight: 800;
}
.btn-white:hover {
    background: var(--text);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.btn-transparent {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    font-weight: 700;
}
.btn-transparent:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

/* ===== REVIEWS ===== */
.reviews {
    background: var(--black-2);
}
.reviews-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}
.review-tab {
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    transition: all 0.25s ease;
    font-family: inherit;
}
.review-tab.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}
.review-tab:hover:not(.active) {
    border-color: var(--border-red);
    color: var(--text);
}
.reviews-panel { display: none; }
.reviews-panel.active { display: block; }

/* Text Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.review-card {
    background: var(--black-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all 0.3s ease;
    position: relative;
}
.review-card:hover {
    border-color: var(--border-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.review-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    color: rgba(217,43,43,0.1);
    font-family: Georgia, serif;
    line-height: 1;
}
.review-stars {
    color: #F59E0B;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
.review-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.review-avatar {
    width: 40px;
    height: 40px;
    background: var(--red-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}
.review-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}
.review-author span {
    font-size: 0.76rem;
    color: var(--text-dim);
}

/* Screenshot Reviews */
.reviews-screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.review-screenshot {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}
.review-screenshot:hover {
    border-color: var(--border-red);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}
.review-screenshot img {
    width: 100%;
    display: block;
}
.review-screenshot-label {
    background: var(--black-3);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}
.review-screenshot-label::before {
    content: '📋';
    font-size: 0.9rem;
}
.reviews-cta-block {
    text-align: center;
    padding: 2.5rem;
    background: var(--black-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.reviews-cta-block p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

/* ===== LOCATION ===== */
.location {
    background: var(--black);
}
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: stretch;
}
.location-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.location-card {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    background: var(--black-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.4rem;
    transition: all 0.3s ease;
}
.location-card:hover {
    border-color: var(--border-red);
}
.loc-icon {
    width: 46px;
    height: 46px;
    background: rgba(217,43,43,0.12);
    border: 1px solid var(--border-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.loc-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
}
.loc-info p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
}
.loc-info a {
    color: var(--red-light);
    text-decoration: none;
    font-weight: 600;
}
.loc-info a:hover { text-decoration: underline; }
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    min-height: 400px;
}
.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    display: block;
    filter: grayscale(0.5) invert(0.1);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black-2);
    border-top: 1px solid var(--border);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 300px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}
.footer-logo-icon {
    width: 38px;
    height: 38px;
    background: var(--red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.footer-logo-text strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.03em;
}
.footer-logo-text span {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 1.25rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    list-style: none;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--red-light); }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}
.footer-contact-item span:first-child {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.footer-contact-item a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--red-light); }
.footer-contact-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-copy {
    color: var(--text-dim);
    font-size: 0.8rem;
}
.footer-socials {
    display: flex;
    gap: 0.6rem;
}
.footer-social {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--black-3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.25s ease;
}
.footer-social:hover {
    background: var(--red);
    border-color: var(--red);
    color: white;
    transform: translateY(-2px);
}

/* ===== FAB ===== */
.fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    align-items: flex-end;
}
.fab a {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: var(--shadow-lg);
    font-size: 1.45rem;
}
.fab-wa { background: #25D366; }
.fab-tg { background: #0088CC; }
.fab-phone { background: var(--red); }
.fab a:hover {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { max-width: 520px; }
    .hero-float-card.card-2 { display: none; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .location-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.tall { grid-row: span 1; aspect-ratio: 4/3; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
}
@media (max-width: 768px) {
    .nav-links, .nav-right { display: none; }
    .burger { display: flex; }
    .hero { padding: 6.5rem 0 3rem; }
    .section { padding: 4rem 0; }
    .hero-stats { flex-wrap: wrap; gap: 1.25rem; }
    .hero-stat strong { font-size: 1.6rem; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .prices-grid { grid-template-columns: 1fr; }
    .reviews-grid, .reviews-screenshots { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
    .cta-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .btn { justify-content: center; }
    .why-grid { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .hero-float-card.card-1 { display: none; }
    .reviews-tabs { flex-wrap: wrap; }
}
