a {
    text-decoration: none !important;
    }
    
    .first-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    }
    
    /* Приветственный баннер */
    .first-banner {
    background: linear-gradient(135deg, #068c21 0%, #055a17 100%);
    background-size: 200% 200%;
    border-radius: 20px;
    margin: 40px 0;
    padding: 60px 40px;
    overflow: hidden;
    position: relative;
    animation: first-fadeIn 1s ease-in, first-gradientShift 8s ease infinite, first-pulse 3s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(6, 140, 33, 0.3);
    }
    
    .first-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: first-rotate 20s linear infinite;
    }
    
    .first-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: first-float 6s ease-in-out infinite;
    pointer-events: none;
    }
    
    /* Плавающие частицы */
    .first-banner-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    }
    
    .first-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: first-particleFloat 8s ease-in-out infinite;
    }
    
    .first-particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 6s;
    }
    
    .first-particle:nth-child(2) {
    left: 30%;
    top: 60%;
    animation-delay: 1s;
    animation-duration: 7s;
    }
    
    .first-particle:nth-child(3) {
    left: 60%;
    top: 30%;
    animation-delay: 2s;
    animation-duration: 8s;
    }
    
    .first-particle:nth-child(4) {
    left: 80%;
    top: 70%;
    animation-delay: 1.5s;
    animation-duration: 6.5s;
    }
    
    .first-particle:nth-child(5) {
    left: 15%;
    top: 80%;
    animation-delay: 0.5s;
    animation-duration: 7.5s;
    }
    
    .first-particle:nth-child(6) {
    left: 70%;
    top: 15%;
    animation-delay: 2.5s;
    animation-duration: 9s;
    }
    
    @keyframes first-particleFloat {
    
    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
    
    25% {
        transform: translateY(-30px) translateX(20px) scale(1.2);
        opacity: 1;
    }
    
    50% {
        transform: translateY(-60px) translateX(-10px) scale(0.8);
        opacity: 0.8;
    }
    
    75% {
        transform: translateY(-30px) translateX(-20px) scale(1.1);
        opacity: 0.9;
    }
    }
    
    @keyframes first-fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }
    
    @keyframes first-rotate {
    from {
        transform: rotate(0deg);
    }
    
    to {
        transform: rotate(360deg);
    }
    }
    
    @keyframes first-gradientShift {
    0% {
        background-position: 0% 50%;
    }
    
    50% {
        background-position: 100% 50%;
    }
    
    100% {
        background-position: 0% 50%;
    }
    }
    
    @keyframes first-pulse {
    
    0%,
    100% {
        box-shadow: 0 10px 40px rgba(6, 140, 33, 0.3);
    }
    
    50% {
        box-shadow: 0 10px 50px rgba(6, 140, 33, 0.5);
    }
    }
    
    @keyframes first-float {
    
    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.8;
    }
    
    33% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
    
    66% {
        transform: translateY(10px) translateX(-10px);
        opacity: 0.9;
    }
    }
    
    .first-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
    }
    
    .first-banner-text {
    flex: 1;
    color: #fff;
    }
    
    .first-banner-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    animation: first-slideInLeft 1s ease-out, first-titleGlow 2s ease-in-out infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
    color: #fff !important;
    }
    
    .first-banner-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: first-slideInLeft 1.2s ease-out, first-subtitleFade 3s ease-in-out infinite;
    }
    
    @keyframes first-slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    
    to {
        opacity: 1;
        transform: translateX(0);
    }
    }
    
    .first-banner-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #fff;
    color: #068c21;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: first-slideInLeft 1.4s ease-out, first-buttonPulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    }
    
    .first-banner-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(6, 140, 33, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    }
    
    .first-banner-button:hover::before {
    width: 300px;
    height: 300px;
    }
    
    .first-banner-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background-color: #f7f7f7;
    animation: first-buttonPulse 1s ease-in-out infinite;
    }
    
    @keyframes first-buttonPulse {
    
    0%,
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    50% {
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
    }
    }
    
    .first-banner-image {
    flex: 1;
    animation: first-slideInRight 1s ease-out, first-imageFloat 4s ease-in-out infinite;
    position: relative;
    }
    
    .first-banner-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 15px;
    animation: first-glowPulse 2s ease-in-out infinite;
    z-index: -1;
    }
    
    @keyframes first-slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    
    to {
        opacity: 1;
        transform: translateX(0);
    }
    }
    
    @keyframes first-titleGlow {
    
    0%,
    100% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 255, 255, 0.2);
    }
    
    50% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.4);
    }
    }
    
    @keyframes first-subtitleFade {
    
    0%,
    100% {
        opacity: 0.95;
    }
    
    50% {
        opacity: 1;
    }
    }
    
    @keyframes first-imageFloat {
    
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    
    75% {
        transform: translateY(10px) rotate(-1deg);
    }
    }
    
    @keyframes first-glowPulse {
    
    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
    
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
    }
    
    .first-banner-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    }
    
    .first-banner-img:hover {
    transform: scale(1.05);
    }
    
    /* Преимущества */
    .first-advantages {
    margin: 80px 0;
    }
    
    .first-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    }
    
    .first-advantage-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: first-fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    }
    
    .first-advantage-card:nth-child(1) {
    animation-delay: 0.1s;
    }
    
    .first-advantage-card:nth-child(2) {
    animation-delay: 0.2s;
    }
    
    .first-advantage-card:nth-child(3) {
    animation-delay: 0.3s;
    }
    
    .first-advantage-card:nth-child(4) {
    animation-delay: 0.4s;
    }
    
    @keyframes first-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }
    
    .first-advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(6, 140, 33, 0.2);
    }
    
    .first-advantage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
    object-fit: contain;
    animation: first-iconRotatePulse 3s ease-in-out infinite;
    }
    
    @keyframes first-iconRotatePulse {
    0% {
        transform: rotate(0deg) scale(1);
    }
    
    25% {
        transform: rotate(90deg) scale(1.1);
    }
    
    50% {
        transform: rotate(180deg) scale(1);
    }
    
    75% {
        transform: rotate(270deg) scale(1.1);
    }
    
    100% {
        transform: rotate(360deg) scale(1);
    }
    }
    
    .first-advantage-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #000;
    }
    
    .first-advantage-text {
    color: #666;
    font-size: 1rem;
    }
    
    /* Навигация с иконками */
    .first-nav-section {
    margin: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: first-fadeIn 1s ease-out;
    }
    
    .first-nav-text-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 0 20px;
    min-height: 250px;
    overflow: hidden;
    box-sizing: border-box;
    }
    
    .first-nav-text-container::after {
    content: '';
    display: block;
    clear: both;
    }
    
    .first-nav-text {
    position: absolute;
    width: calc(100% - 40px);
    left: 20px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    pointer-events: none;
    top: 0;
    }
    
    .first-nav-text.active {
    position: absolute;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    }
    
    .first-nav-text.swipe-out {
    transform: translateX(-100%);
    opacity: 0;
    }
    
    .first-nav-text.swipe-in {
    transform: translateX(0);
    opacity: 1;
    }
    
    .first-nav-text p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    margin: 0;
    }
    
    .first-nav {
    background: #fff;
    padding: 16px 32px;
    border-radius: 15px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    }
    
    .first-icon-button {
    position: relative;
    width: 60px;
    height: 60px;
    border: none;
    background: #f7f7f7;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    line-height: 0;
    text-decoration: none;
    color: #000;
    }
    
    .first-icon-button.active {
    background: #068c21;
    color: #fff;
    }
    
    .first-icon-button.active .first-icon-button__icon {
    color: #fff;
    }
    
    .first-icon-button:hover,
    .first-icon-button:focus-visible {
    background: #068c21;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(6, 140, 33, 0.3);
    }
    
    .first-icon-button:hover .first-icon-button__icon,
    .first-icon-button:focus-visible .first-icon-button__icon {
    color: #fff;
    }
    
    .first-icon-button:focus-visible {
    box-shadow: 0 0 0 4px #fff, 0 0 0 8px #068c21;
    outline: transparent;
    }
    
    .first-icon-button:active {
    transform: translateY(-1px);
    }
    
    .first-icon-button__icon {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    transition: color 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    
    /* Каталог товаров */
    .first-products {
    margin: 80px auto;
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
    }
    
    .first-section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
    position: relative;
    padding-bottom: 20px;
    }
    
    .first-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #068c21;
    border-radius: 2px;
    }
    
    .first-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    justify-items: center;
    }
    
    .first-card {
    --bg: #fff;
    --title-color: #fff;
    --title-color-hover: #000;
    --text-color: #666;
    --button-color: #f7f7f7;
    --button-color-hover: #068c21;
    background: var(--bg);
    border-radius: 2rem;
    padding: 0.5rem;
    width: 20rem;
    height: 30rem;
    overflow: clip;
    position: relative;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    animation: first-fadeIn 0.8s ease-out;
    }
    
    .first-card.first-card-dark {
    --bg: #222;
    --title-color: #fff;
    --title-color-hover: #fff;
    --text-color: #ccc;
    --button-color: #555;
    --button-color-hover: #068c21;
    }
    
    .first-card::before {
    content: "";
    position: absolute;
    width: calc(100% - 1rem);
    height: 30%;
    bottom: 0.5rem;
    left: 0.5rem;
    mask: linear-gradient(#0000, #000f 80%);
    backdrop-filter: blur(1rem);
    border-radius: 0 0 1.5rem 1.5rem;
    translate: 0 0;
    transition: translate 0.25s;
    z-index: 1;
    }
    
    .first-card-img {
    max-width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    object-position: 50% 5%;
    border-radius: 1.5rem;
    display: block;
    transition: aspect-ratio 0.25s, object-position 0.5s;
    width: 100%;
    height: auto;
    }
    
    .first-card-section {
    margin: 1rem;
    height: calc(33.3333% - 1rem);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    }
    
    .first-card-title {
    margin: 0;
    margin-block-end: 1rem;
    font-size: 1.5rem;
    opacity: 0;
    translate: 0 -200%;
    color: var(--title-color);
    transition: color 0.5s, margin-block-end 0.25s, opacity 1s, translate 0.25s;
    }
    
    .first-card-description {
    font-size: 0.95rem;
    line-height: 1.3;
    color: var(--text-color);
    opacity: 0;
    margin: 0;
    translate: 0 100%;
    transition: margin-block-end 0.25s, opacity 1s 0.2s, translate 0.25s 0.2s;
    }
    
    .first-card-footer {
    flex: 1;
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
    translate: 0 100%;
    opacity: 0;
    transition: translate 0.25s 0.2s, opacity 1s;
    }
    
    .first-card-tag {
    align-self: center;
    color: var(--title-color-hover);
    font-weight: bold;
    font-size: 1.1rem;
    }
    
    .first-card-button {
    border: 1px solid transparent;
    border-radius: 1.25rem 1.25rem 1.5rem 1.25rem;
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    translate: 1rem;
    background: var(--button-color);
    transition: background 0.33s, color 0.33s;
    outline-offset: 2px;
    position: relative;
    color: var(--title-color-hover);
    width: 8.2rem;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    }
    
    .first-card-button:hover {
    background: var(--button-color-hover);
    color: #fff;
    }
    
    .first-card-button:focus {
    outline: 2px solid var(--text-color);
    }
    
    .first-card:hover::before,
    .first-card:focus-within::before {
    translate: 0 100%;
    }
    
    .first-card:hover .first-card-img,
    .first-card:focus-within .first-card-img {
    aspect-ratio: 1 / 1;
    object-position: 50% 10%;
    transition: aspect-ratio 0.25s, object-position 0.25s;
    }
    
    .first-card:hover .first-card-title,
    .first-card:hover .first-card-description,
    .first-card:focus-within .first-card-title,
    .first-card:focus-within .first-card-description {
    translate: 0 0;
    margin-block-end: 0.5rem;
    opacity: 1;
    }
    
    .first-card:hover .first-card-title,
    .first-card:focus-within .first-card-title {
    color: var(--title-color-hover);
    }
    
    .first-card:hover .first-card-footer,
    .first-card:focus-within .first-card-footer {
    translate: 0 0;
    opacity: 1;
    transition: translate 0.25s 0.25s, opacity 0.5s 0.25s;
    }
    .first-text-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
            radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 45%),
            linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.75) 100%);
        z-index: 0;
        pointer-events: none;
        }
        
        .first-text-section::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: -200px;
        height: 240px;
        background: linear-gradient(180deg,
                rgba(20, 20, 20, 0.75) 0%,
                rgba(20, 20, 20, 0.55) 45%,
                rgba(20, 20, 20, 0.35) 70%,
                rgba(20, 20, 20, 0) 100%);
        pointer-events: none;
        z-index: 0;
        }
        
        .first-text-content {
        max-width: 900px;
        margin: 0 auto;
        padding: 0;
        position: relative;
        z-index: 1;
        }
        
        .first-text-content p {
        color: #fff;
        font-size: 1.1rem;
        line-height: 1.8;
        text-align: center;
        margin: 0;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        transition: opacity 0.4s ease;
        }
        
        .first-text-section.switching,
        .first-text-section .first-text-content.switching p {
        opacity: 0.35;
        }
        
        /* Галерея */
        .first-gallery {
        margin: 80px 0;
        }
        
        .first-gallery-slider {
        display: flex;
        align-items: center;
        gap: 16px;
        position: relative;
        }
        
        .first-gallery-window {
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        flex: 1;
        }
        
        .first-gallery-track {
        display: flex;
        transition: transform 0.5s ease;
        }
        
        .first-gallery-slide {
        min-width: 100%;
        position: relative;
        }
        
        .first-gallery-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        }
        
        .first-gallery-arrow {
        width: 44px;
        height: 44px;
        border: none;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.6);
        color: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }
        
        .first-gallery-arrow:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        background: rgba(0, 0, 0, 0.75);
        }
        
        .first-gallery-dots {
        display: flex;
        gap: 10px;
        justify-content: center;
        margin-top: 16px;
        }
        
        .first-gallery-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: none;
        background: #d0d0d0;
        cursor: pointer;
        transition: transform 0.2s ease, background 0.2s ease;
        }
        
        .first-gallery-dot.active {
        background: #068c21;
        transform: scale(1.1);
        }
        
        .first-showcase {
        margin: 80px 0;
        animation: first-fadeIn 0.8s ease-out;
        }
        
        .first-showcase-top {
        max-width: 1200px;
        margin: 0 auto 36px;
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 28px;
        align-items: start;
        }
        
        .first-showcase-copy {
        display: flex;
        flex-direction: column;
        gap: 12px;
        color: #333;
        line-height: 1.7;
        font-size: 1.02rem;
        }
        
        .first-showcase-list {
        margin: 8px 0 4px 0;
        padding-left: 20px;
        color: #222;
        line-height: 1.6;
        }
        
        .first-showcase-list li {
        margin-bottom: 6px;
        }
        
        .first-showcase-cta {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 8px;
        }
        
        .first-showcase-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 18px;
        background: linear-gradient(135deg, #068c21, #055a17);
        color: #fff;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 700;
        box-shadow: 0 10px 24px rgba(6, 140, 33, 0.22);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        
        .first-showcase-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(6, 140, 33, 0.28);
        }
        
        .first-showcase-note {
        color: #055a17;
        font-weight: 600;
        }
        
        .first-showcase-side {
        display: flex;
        justify-content: flex-end;
        }
        
        .first-showcase-stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
        max-width: 380px;
        }
        
        .first-showcase-stat {
        background: #fff;
        border-radius: 14px;
        padding: 14px 16px;
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(6, 140, 33, 0.08);
        }
        
        .first-showcase-stat strong {
        display: block;
        font-size: 1.1rem;
        color: #000;
        margin-bottom: 4px;
        }
        
        .first-showcase-stat span {
        color: #444;
        line-height: 1.5;
        font-size: 0.98rem;
        }
        
        .first-showcase-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
        }
        
        .first-showcase-card {
        background: #fff;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        height: 100%;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        
        .first-showcase-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 32px rgba(6, 140, 33, 0.18);
        }
        
        .first-showcase-img-wrap {
        position: relative;
        width: 100%;
        padding-top: 62%;
        overflow: hidden;
        }
        
        .first-showcase-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        }
        
        .first-showcase-body {
        padding: 18px 18px 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex: 1;
        }
        
        .first-showcase-title {
        font-size: 1.85rem;
        margin: 0;
        color: #000;
        }
        
        .first-showcase-text {
        margin: 0;
        color: #444;
        line-height: 1.6;
        font-size: 0.98rem;
        }
        
        .first-contacts {
        margin: 80px auto 110px;
        max-width: 1200px;
        padding: 0 20px;
        animation: first-fadeIn 0.8s ease-out;
        position: relative;
        isolation: isolate;
        }
        
        .first-contacts-card {
        max-width: 960px;
        margin: 0 auto;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 247, 247, 0.96));
        border-radius: 18px;
        box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
        padding: 28px 30px 30px;
        display: flex;
        flex-direction: column;
        gap: 18px;
        border: 1px solid rgba(6, 140, 33, 0.12);
        }
        
        .first-contacts-row {
        display: flex;
        flex-wrap: wrap;
        gap: 12px 18px;
        align-items: center;
        padding: 12px 14px;
        background: rgba(6, 140, 33, 0.06);
        border-radius: 12px;
        border: 1px solid rgba(6, 140, 33, 0.08);
        }
        
        .first-contacts-label {
        font-weight: 700;
        color: #000;
        min-width: 86px;
        }
        
        .first-contacts-link {
        color: #055a17;
        text-decoration: none;
        font-weight: 650;
        letter-spacing: 0.1px;
        }
        
        .first-contacts-link:hover {
        text-decoration: underline;
        color: #068c21;
        }
        
        .first-contacts-phones {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px 18px;
        }
        
        /* Сброс размеров текста для всех текстовых элементов (кроме заголовков/иконок) */
        body :where(p, li, a, button, span, .first-banner-subtitle, .first-banner-button, .first-advantage-text, .first-nav-text p, .first-card-description, .first-card-tag, .first-card-button, .first-showcase-copy, .first-showcase-list, .first-showcase-note, .first-showcase-text, .first-showcase-stat span, .first-showcase-stat strong, .first-text-content p, .first-contacts-link, .first-contacts-label, .first-contacts-phones a, .first-faq-question, .first-faq-answer, .first-card-footer) {
        font-size: inherit !important;
        }
        
        .first-contacts::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 20px;
        background: radial-gradient(circle at 20% 20%, rgba(6, 140, 33, 0.12), transparent 40%),
            radial-gradient(circle at 80% 30%, rgba(6, 140, 33, 0.1), transparent 45%);
        filter: blur(20px);
        z-index: -1;
        }
        
        @media (max-width: 768px) {
        .first-contacts-row {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .first-contacts-card {
            padding: 22px 18px 24px;
        }
        }
        
        .first-faq {
        margin: 100px 0;
        animation: first-fadeIn 0.8s ease-out;
        }
        
        .first-faq-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        }
        
        .first-faq-item {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        }
        
        .first-faq-question {
        width: 100%;
        text-align: left;
        padding: 18px 60px 18px 20px;
        background: transparent;
        border: none;
        font-size: 1.05rem;
        font-weight: 600;
        color: #000;
        cursor: pointer;
        position: relative;
        }
        
        .first-faq-icon {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.2rem;
        transition: transform 0.25s ease, color 0.25s ease;
        color: #068c21;
        }
        
        .first-faq-item.active .first-faq-icon {
        transform: translateY(-50%) rotate(45deg);
        color: #055a17;
        }
        
        .first-faq-answer {
        display: none;
        padding: 0 20px 18px 20px;
        color: #333;
        line-height: 1.7;
        }
        
        .first-faq-item.active .first-faq-answer {
        display: block;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
        .first-banner-content {
            flex-direction: column;
            text-align: center;
        }
        
        .first-banner-title {
            font-size: 2.5rem;
        }
        
        .first-banner-subtitle {
            font-size: 1.2rem;
        }
        
        .first-advantages-grid {
            grid-template-columns: 1fr;
        }
        
        .first-products-grid {
            grid-template-columns: 1fr;
        }
        
        .first-card {
            width: 100%;
            max-width: 20rem;
        }
        
        .first-gallery-grid {
            grid-template-columns: 1fr;
        }
        
        .first-nav {
            padding: 12px 20px;
            gap: 15px;
        }
        
        .first-icon-button {
            width: 50px;
            height: 50px;
        }
        
        .first-icon-button__icon {
            font-size: 22px;
        }
        }