/* ═══════════════════════════════════════════════════
   РИХТОВКА 161 — Premium Dark Theme (fpcar.ru style)
   ═══════════════════════════════════════════════════ */

/* ─── FONTS ─── */
/* Font loaded via <link> in HTML head for performance */

/* ─── SKIP LINK ─── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    padding: 12px 24px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    z-index: 9999;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* ─── FOCUS VISIBLE ─── */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

/* ─── CSS VARIABLES ─── */
:root {
    /* Colors */
    --bg-primary: #0b1118;
    --bg-secondary: #101820;
    --bg-card: rgba(16, 24, 36, 0.7);
    --bg-glass: rgba(20, 28, 40, 0.55);
    --accent: #e8364e;
    --accent-hover: #ff4d63;
    --accent-glow: rgba(232, 54, 78, 0.3);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.65);
    --text-muted: rgba(255, 255, 255, 0.4);
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);

    /* Typography */
    --font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --h1: clamp(2.8rem, 5.5vw, 5rem);
    --h2: clamp(2rem, 3.5vw, 3.2rem);
    --h3: clamp(1.2rem, 2vw, 1.5rem);
    --body: clamp(0.95rem, 1.1vw, 1.1rem);
    --small: 0.85rem;

    /* Spacing */
    --section-py: clamp(80px, 10vh, 140px);
    --container: 1200px;
    --gap: 24px;

    /* Effects */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --blur: blur(20px);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

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

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: var(--body);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ─── CONTAINER ─── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 3vw, 48px);
}

/* ─── SECTION COMMON ─── */
section {
    padding: var(--section-py) 0;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--bg-glass);
    backdrop-filter: var(--blur);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: var(--small);
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.section-title {
    font-size: var(--h2);
    font-weight: 900;
    font-style: italic;
    line-height: 1.15;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: var(--body);
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 48px;
}

/* ─── BUTTONS ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--accent);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 100px;
    transition: var(--transition);
    box-shadow: 0 4px 24px var(--accent-glow);
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 36px var(--accent-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid var(--border-light);
    border-radius: 100px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
}

/* ═══════════════════════════════════════════════════
   1. HEADER / NAV
   ═══════════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(11, 17, 24, 0.92);
    backdrop-filter: var(--blur);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    color: #fff;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.logo-text span {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.75rem;
    display: block;
    text-transform: none;
    letter-spacing: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone a.phone-link {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.nav-cta {
    padding: 12px 28px;
    background: var(--accent);
    color: #fff;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

.nav-cta:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ═══════════════════════════════════════════════════
   2. HERO
   ═══════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(11, 17, 24, 0.9) 0%,
            rgba(11, 17, 24, 0.5) 50%,
            rgba(11, 17, 24, 0.7) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--bg-glass);
    backdrop-filter: var(--blur);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: var(--small);
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero h1 {
    font-size: var(--h1);
    font-weight: 900;
    font-style: italic;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 .accent {
    color: var(--accent);
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: left;
}

.hero-stat .number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.2;
}

.hero-stat .label {
    font-size: var(--small);
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hero right — image showcase */
.hero-showcase {
    position: relative;
}

.hero-showcase-img {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-showcase-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.05);
}

.hero-showcase-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    padding: 16px 24px;
    background: var(--bg-glass);
    backdrop-filter: var(--blur);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.hero-showcase-badge svg {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.hero-showcase-badge .rating-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}



/* ═══════════════════════════════════════════════════
   3. FEATURES / ADVANTAGES
   ═══════════════════════════════════════════════════ */
.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.feature-card {
    padding: 36px 32px;
    background: var(--bg-card);
    backdrop-filter: var(--blur);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), #ff6b7d);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: var(--h3);
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════════
   4. GALLERY / PORTFOLIO
   ═══════════════════════════════════════════════════ */
.gallery {
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 8/3;
}

.gallery-item.tall {
    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);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    z-index: 2;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   5. BEFORE / AFTER
   ═══════════════════════════════════════════════════ */
.before-after {
    background: var(--bg-secondary);
}

.ba-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: col-resize;
    user-select: none;
}

.ba-side {
    position: absolute;
    inset: 0;
}

.ba-before {
    background: url('images/послае.png') center / cover no-repeat;
    z-index: 1;
}

.ba-after {
    background: url('images/до.png') center / cover no-repeat;
    clip-path: inset(0 50% 0 0);
    z-index: 2;
}

.ba-label {
    position: absolute;
    top: 20px;
    padding: 8px 20px;
    background: var(--bg-glass);
    backdrop-filter: var(--blur);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 5;
}

.ba-after .ba-label {
    left: 20px;
}

.ba-before .ba-label {
    right: 20px;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #fff;
    z-index: 10;
    transform: translateX(-50%);
    pointer-events: none;
}

.ba-handle::before {
    content: '⟨⟩';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: #fff;
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* ═══════════════════════════════════════════════════
   6. SERVICES
   ═══════════════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.service-card {
    padding: 32px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.service-card .price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 8px;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   7. PROCESS STEPS
   ═══════════════════════════════════════════════════ */
.process {
    background: var(--bg-secondary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent);
}

.process-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   8. REVIEWS
   ═══════════════════════════════════════════════════ */
.reviews-scroll {
    display: flex;
    gap: var(--gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
}

.reviews-scroll::-webkit-scrollbar {
    height: 4px;
}

.reviews-scroll::-webkit-scrollbar-track {
    background: var(--border);
    border-radius: 2px;
}

.reviews-scroll::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 2px;
}

.review-card {
    min-width: 360px;
    max-width: 400px;
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.review-stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 16px;
}

.review-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    font-weight: 700;
    font-size: 0.95rem;
}

.review-source {
    color: var(--text-muted);
    font-size: var(--small);
}

/* ═══════════════════════════════════════════════════
   9. FAQ
   ═══════════════════════════════════════════════════ */
.faq {
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ═══════════════════════════════════════════════════
   10. CTA SECTION
   ═══════════════════════════════════════════════════ */
.cta-section {
    text-align: center;
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, var(--accent-glow), transparent 70%);
    opacity: 0.4;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section .section-title {
    max-width: 700px;
    margin: 0 auto 16px;
}

.cta-section .section-subtitle {
    margin: 0 auto 40px;
    text-align: center;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-contacts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cta-contacts a {
    color: var(--text-primary);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════
   11. MAP
   ═══════════════════════════════════════════════════ */
.map-section {
    position: relative;
    padding: 0;
}

.map-container {
    width: 100%;
    height: 450px;
    filter: grayscale(0.7) brightness(0.7);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-info {
    position: absolute;
    top: 40px;
    left: clamp(20px, 5vw, 80px);
    padding: 32px 36px;
    background: var(--bg-glass);
    backdrop-filter: var(--blur);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    max-width: 380px;
    z-index: 5;
}

.map-info h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.map-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.map-info-item .icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.map-info-item strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════
   12. FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
    padding: 48px 0 24px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: var(--small);
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 4px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-contact .phone-big {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    display: block;
}

.footer-contact .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: var(--small);
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════
   GUARANTEES
   ═══════════════════════════════════════════════════ */
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
}

.guarantee-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.guarantee-card:hover {
    border-color: var(--border-light);
}

.guarantee-icon {
    width: 48px;
    height: 48px;
    background: rgba(232, 54, 78, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.guarantee-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.guarantee-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero-showcase {
        display: none;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-stats {
        gap: 20px;
    }

    .features-grid,
    .services-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item.wide {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
    }

    .review-card {
        min-width: 300px;
    }

    .nav-phone {
        display: none;
    }

    .map-info {
        position: relative;
        top: 0;
        left: 0;
        max-width: 100%;
        border-radius: 0;
    }

    .map-container {
        height: 300px;
    }
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}