@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --color-blue: var(--cp-primary, #2b7de9);
    --color-blue-light: var(--cp-primary, #3498db);
    --color-green: var(--cp-accent, #00c47d);
    --color-dark: var(--cp-text, #0f1c2e);
    --color-dark-soft: #1e2d40;
    --color-light: var(--cp-surface-soft, #ecf0f1);
    --color-white: #ffffff;
    --color-gray: var(--cp-muted, #6b7a8d);
    --color-gray-light: #a0aec0;
    --bg-light: var(--cp-bg, #f7faff);
    --bg-light-blue: var(--cp-surface-soft, #eef4fd);
    --bg-blue-soft: #e4eefa;
    --shadow-sm: 0 2px 8px rgba(15, 28, 46, 0.06);
    --shadow: var(--cp-shadow-soft, 0 4px 16px rgba(15, 28, 46, 0.08), 0 1px 4px rgba(15, 28, 46, 0.05));
    --shadow-hover: var(--cp-shadow-card, 0 12px 32px rgba(37, 99, 235, 0.18), 0 4px 12px rgba(15, 28, 46, 0.1));
    --shadow-lg: 0 24px 48px rgba(15, 28, 46, 0.15), 0 8px 24px rgba(15, 28, 46, 0.08);
    --border-radius: var(--cp-radius, 10px);
    --border-radius-lg: var(--cp-radius-lg, 18px);
    --border-radius-xl: 24px;
    --max-width: 1200px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --gradient-blue: linear-gradient(135deg, var(--cp-primary, #2563eb) 0%, var(--cp-primary-2, #1d4ed8) 100%);
    --gradient-blue-light: linear-gradient(135deg, var(--cp-primary, #3498db) 0%, var(--cp-primary-2, #2b7de9) 100%);
    --gradient-green: linear-gradient(135deg, var(--cp-accent, #00c47d) 0%, #0d9488 100%);
    --gradient-dark: linear-gradient(135deg, var(--cp-text, #0f1c2e) 0%, #1e2d40 100%);
    --gradient-hero: linear-gradient(135deg, #0d1b2a 0%, #1a2f45 100%);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--color-dark);
    background: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul {
    list-style: none;
}

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

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-blue);
    background: rgba(37, 99, 235, 0.1);
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.section-subtitle {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gradient-blue);
    color: white;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.btn--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.btn--outline {
    border: 2px solid var(--color-blue);
    color: var(--color-blue);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.btn--outline:hover {
    background: var(--gradient-blue);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.btn--icon {
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    color: var(--color-dark);
}

.btn--large {
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

/* ========== STATS BAR ========== */
.stats-bar {
    background: var(--gradient-dark);
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 60%, rgba(0, 196, 125, 0.05));
    pointer-events: none;
}

.stats-bar__inner {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.12);
}

.stat-number {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #a8c9f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .stats-bar__inner { gap: 1.5rem; }
    .stat-item:not(:last-child)::after { display: none; }
    .stat-number { font-size: 1.5rem; }
}

/* ========== HERO ========== */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: var(--color-dark);
    padding: 5rem 0;
    overflow: hidden;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    animation: heroSlideUp 1s ease-out;
}

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

.hero__subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #4ddb9c;
    background: rgba(0, 196, 125, 0.12);
    border: 1px solid rgba(0, 196, 125, 0.3);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    animation: fadeIn 1s ease-out 0.2s both;
}

.hero__title {
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.03em;
    animation: fadeIn 1s ease-out 0.4s both;
}

.hero__features {
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.6s both;
}

.hero__features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.7rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    flex-shrink: 0;
}

.icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.hero__brands {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    animation: fadeIn 1s ease-out 0.8s both;
}

/* ========== SERVICES ========== */
.services {
    padding: 5rem 0;
    background: var(--bg-light);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    font-weight: 500;
    color: #ffffff;
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    border-radius: var(--border-radius-lg);
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(37, 99, 235, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    border-radius: var(--border-radius-lg);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card > *:not(.service-card__video):not(.service-card__img) {
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
    font-weight: 400;
}

.service-card__arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.35s ease;
    color: white;
    font-size: 0.8rem;
}

.service-card:hover .service-card__arrow {
    opacity: 1;
    transform: translateY(0);
    background: rgba(255,255,255,0.25);
}

.service-card--video {
    position: relative;
    overflow: hidden;
    background: none;
}

.service-card--video > .service-card__video,
.service-card--video > .service-card__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    display: block;
}

.service-card__content {
    position: relative;
    z-index: 3;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.service-card--video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 2;
    border-radius: var(--border-radius-lg);
}

.service-card.service-card--video::before {
    display: none;
}

/* ========== ABOUT ========== */
.about {
    background: linear-gradient(160deg, #eef4fd 0%, #e4eefa 100%);
    padding: 5rem 0;
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.advantage-block {
    padding: 2.2rem 1.8rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(37, 99, 235, 0.1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.advantage-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.advantage-block:hover::before {
    transform: scaleX(1);
}

.advantage-block:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.advantage-icon-wrap {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.06));
    border: 1.5px solid rgba(37, 99, 235, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: var(--transition);
}

.advantage-block:hover .advantage-icon-wrap {
    background: var(--gradient-blue);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
    transform: translateY(-3px);
}

.advantage-block:hover .advantage-icon-wrap .advantage-icon {
    color: white;
    transform: scale(1.1);
}

.advantage-icon {
    font-size: 1.8rem;
    color: var(--color-blue);
    transition: var(--transition);
}

.advantage-block:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
}

.advantage-block h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
}

.advantage-block p {
    color: var(--color-gray);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ========== FULL PHOTO ========== */
.full-photo {
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ecf0f1;
}

/* ========== CATALOG ========== */
.catalog {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-header-center {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.section-header-center .btn--outline {
    min-width: 200px;
}

.tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
}

.tab {
    padding: 0.5rem 1rem;
    background: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    color: var(--color-gray);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    transition: all 0.3s ease;
    position: relative;
}

.tab:hover {
    color: var(--color-blue);
    background: rgba(37, 99, 235, 0.05);
}

.tab.active {
    color: var(--color-blue);
    font-weight: 700;
    background: rgba(37, 99, 235, 0.08);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.catalog__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.catalog-header .section-title {
    margin-bottom: 0;
}

.product-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 1rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: var(--color-green);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    z-index: 2;
}

.product-badge.hit {
    background: var(--color-blue);
    left: auto;
    right: 0.5rem;
}

.product-image {
    height: 150px;
    background: var(--cp-surface-soft, #ecf0f1);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

/* ========== TABLE ========== */
.table-section {
    padding: 5rem 0;
    background: linear-gradient(160deg, #e4eefa 0%, #eef4fd 100%);
}

.equipment-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.equipment-table:hover {
    box-shadow: var(--shadow-hover);
}

.equipment-table th,
.equipment-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
    transition: background 0.2s ease;
}

.equipment-table tbody tr:hover td {
    background: rgba(37, 99, 235, 0.05);
}

.equipment-table th {
    background: var(--gradient-dark);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 1px;
    padding: 1.1rem 1rem;
}

.equipment-table td:first-child {
    font-weight: 600;
    text-align: left;
    color: var(--color-dark);
    background: rgba(37, 99, 235, 0.03);
}

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

.table-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--color-gray);
}

/* ========== STEPS ========== */
.steps {
    padding: 5rem 0;
    background: var(--bg-light);
}

.steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.step:hover::before {
    transform: scaleX(1);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    background: var(--gradient-blue);
    color: white;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
    transition: var(--transition);
}

.step:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* ========== BENEFITS ========== */
.benefits {
    padding: 5rem 0;
    background: linear-gradient(160deg, #e4eefa 0%, #eef4fd 100%);
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.2rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(37, 99, 235, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-item:hover::after {
    transform: scaleX(1);
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon-wrap {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 196, 125, 0.12), rgba(0, 196, 125, 0.06));
    border: 1.5px solid rgba(0, 196, 125, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon-wrap {
    background: var(--gradient-green);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(0, 196, 125, 0.35);
    transform: translateY(-3px);
}

.benefit-item:hover .benefit-icon-wrap .benefit-icon {
    color: white;
}

.benefit-icon {
    font-size: 1.6rem;
    color: var(--color-green);
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.15);
    color: #2980b9;
}

/* ========== CATEGORIES ========== */
.categories {
    padding: 5rem 0;
    background: var(--bg-light);
}

.categories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.categories-header .section-title {
    margin-bottom: 0;
}

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

.category-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.08);
    color: var(--color-dark);
}

.category-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
    transition: color 0.3s ease;
}

.category-card:hover h3 {
    color: var(--color-blue);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.category-card:hover::before {
    width: 300px;
    height: 300px;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-count {
    color: var(--color-gray);
    font-size: 0.9rem;
}

/* ========== RENT BENEFITS ========== */
.rent-benefits {
    padding: 5rem 0;
    background: linear-gradient(160deg, #e4eefa 0%, #eef4fd 100%);
}

.rent-benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.rent-benefit-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 300px;
    display: flex;
    align-items: flex-end;
}

.rent-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.7));
    transition: all 0.4s ease;
    z-index: 1;
}

.rent-benefit-card:hover::before {
    background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.85));
}

.rent-benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.rent-benefit-content {
    background: linear-gradient(to top, rgba(15, 28, 46, 0.92) 0%, rgba(15, 28, 46, 0.6) 100%);
    color: white;
    padding: 1.8rem 1.5rem;
    width: 100%;
    backdrop-filter: blur(4px);
}

.rent-benefit-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.9);
}

/* ========== FAQ ========== */
.faq {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.faq-item {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 1.4rem 1.5rem;
    font-weight: 600;
    font-size: 0.97rem;
    cursor: pointer;
    background: white;
    list-style: none;
    position: relative;
    transition: all 0.3s ease;
    color: var(--color-dark);
}

.faq-question:hover {
    background: #f8fafd;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1.5rem;
    color: var(--color-blue);
    transition: transform 0.3s;
}

details[open] .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    background: #f8faff;
    color: var(--color-gray);
    font-size: 0.93rem;
    line-height: 1.7;
    border-top: 1px solid rgba(37, 99, 235, 0.08);
}

/* ========== POPULAR CATEGORIES ========== */
.popular-categories {
    padding: 4rem 0;
    background: linear-gradient(160deg, #e4eefa 0%, #eef4fd 100%);
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1rem;
    padding: 0.5rem 0 1rem;
    scrollbar-width: thin;
    flex: 1;
    scroll-behavior: smooth;
}

.carousel-item {
    flex: 0 0 auto;
    background: white;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    box-shadow: var(--shadow);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: var(--transition);
    border: 1.5px solid rgba(37, 99, 235, 0.12);
    color: var(--color-dark);
}

.carousel-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    background: var(--gradient-blue);
    color: white;
    border-color: transparent;
}

.carousel-btn {
    background: white;
    border: 2px solid var(--color-blue);
    color: var(--color-blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--gradient-blue);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

/* ========== REVIEWS ========== */
.reviews {
    padding: 5rem 0;
    background: var(--bg-light);
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card {
    background: white;
    padding: 2rem 1.8rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.08);
}

.review-card::after {
    content: '\201C';
    position: absolute;
    top: -0.5rem;
    right: 1.5rem;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(37, 99, 235, 0.07);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-blue);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.review-card:hover::before {
    transform: scaleY(1);
}

.review-card:hover {
    transform: translateY(-8px) translateX(4px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 700;
    color: var(--color-dark);
    font-size: 1rem;
}

.review-rating {
    color: #f59e0b;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.review-text {
    color: #4a5568;
    line-height: 1.75;
    font-size: 0.92rem;
    position: relative;
    z-index: 1;
}

/* Yandex Map Widget */
.yandex-map-widget {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.yandex-map-widget .map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    background: linear-gradient(145deg, var(--color-blue), #2980b9);
    color: white;
}

.yandex-map-widget .map-header h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.yandex-map-widget .map-header .btn--outline {
    border-color: rgba(255,255,255,0.5);
    color: white;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
}

.yandex-map-widget .map-header .btn--outline:hover {
    background: white;
    color: var(--color-blue);
}

.yandex-map-widget iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: none;
}

.yandex-map-widget .map-footer {
    padding: 1rem 1.2rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.yandex-map-widget .rating-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.yandex-map-widget .rating-stars {
    color: #ffc107;
    letter-spacing: 2px;
}

.yandex-map-widget .rating-text {
    font-weight: 600;
    color: var(--color-dark);
}

.yandex-map-widget .reviews-link {
    color: var(--color-blue);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: auto;
}

.yandex-map-widget .reviews-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .yandex-map-widget .rating-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .yandex-map-widget .reviews-link {
        margin-left: 0;
    }
}

/* ========== CONTACT DIRECTOR ========== */
.contact-director {
    padding: 5rem 0;
    background: linear-gradient(160deg, #e4eefa 0%, #eef4fd 100%);
}

.contact-director__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-director__image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

.contact-director__text {
    margin-bottom: 2rem;
    color: var(--color-gray);
}

.form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: transform 0.3s ease;
}

.form-container:hover {
    transform: translateY(-5px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-row {
    margin-bottom: 1.2rem;
}

.form-row:last-child {
    margin-bottom: 0;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(37, 99, 235, 0.3);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
    background: white;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="tel"]:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.checkbox-row {
    display: flex;
    align-items: center;
}

.contact-form .checkbox {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.9rem;
    color: var(--color-gray);
    cursor: pointer;
}

.contact-form .checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--color-blue);
}

.contact-form .checkbox a {
    color: var(--color-blue);
    text-decoration: none;
}

.contact-form .checkbox a:hover {
    text-decoration: underline;
}

/* ========== SCROLL ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

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

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

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

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ========== АДАПТИВНОСТЬ ========== */
@media (max-width: 1024px) {
    .about__grid,
    .benefits__grid,
    .reviews__grid,
    .rent-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .contact-director__inner {
        grid-template-columns: 1fr;
    }

    .hero__title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services__grid,
    .steps__grid,
    .categories__grid,
    .catalog__grid,
    .about__grid,
    .benefits__grid,
    .reviews__grid,
    .rent-benefits__grid {
        grid-template-columns: 1fr;
    }

    .hero__title {
        font-size: 2rem;
    }

    .carousel-wrapper {
        flex-wrap: wrap;
    }

    .categories-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .equipment-table {
        font-size: 0.8rem;
    }

    .equipment-table th,
    .equipment-table td {
        padding: 0.5rem;
    }

    .full-photo {
        height: 300px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card {
        min-height: 200px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero__content {
        padding: 1rem;
    }

    .hero__brands {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .service-card {
        min-height: 180px;
        padding: 1.5rem 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fade-enter,
    .services,
    .about,
    .catalog,
    .table-section,
    .steps,
    .benefits,
    .categories,
    .rent-benefits,
    .faq,
    .popular-categories,
    .reviews,
    .contact-director {
        animation: none;
        transition: none;
    }
}
/* ========== HERO С ВИДЕО ========== */
.hero--video {
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
    min-height: 640px;
    display: flex;
    align-items: center;
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Это сохранит пропорции и покроет всю область */
    z-index: 0;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.hero__video.loaded {
    opacity: 1;
}

.hero--video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: transparent;
}

.hero--video .hero__content {
    position: relative;
    z-index: 2;
    max-width: 740px;
    padding: 3rem;
    border-radius: var(--border-radius-xl);
    color: white;
    background: rgba(15, 28, 46, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
    animation: heroSlideUp 1s ease-out;
}
