@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik', sans-serif;
    background: linear-gradient(87.83deg, #FFFFFF 1.94%, #CECECE 145.95%);
    min-height: 100vh;
    color: #000;
    overflow-x: hidden;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Scroll animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in.animated {
    opacity: 1;
    transform: scale(1);
}

/* Хедер */
.header {
    background-color: #FF9001;
    padding: 10px 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: sticky;
    top: 0; 
    z-index: 1000;
}

.header:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.phone-block {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
    cursor: pointer;
}

.phone-block:hover {
    transform: translateY(-2px);
}

.phone-icon {
    transition: transform 0.3s ease;
}

.phone-icon:hover {
    transform: rotate(15deg);
}

.phone-number {
    color: white;
    font-size: 18px;
    display: flex;
    flex-direction: row;
    line-height: 1.2;
}

.phone-bold {
    font-weight: 600;
}

.phone-underline {
    font-weight: 700;
    position: relative;
}

.phone-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 0 0 0 12px;
}

.main {
    padding: 0;
}

/* Hero секция */
.hero {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 600px;
    position: relative;
    z-index: 2;
}

.hero-left {
    flex: 0 0 50%;
    max-width: 600px;
    padding-left: 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.1;
    text-align: center;
    text-wrap: nowrap;
}

.hero-title-line {
    max-width: 530px;
    height: 8px;
    margin-left: 40px;
    background-color: #FF9001;
    margin-bottom: 20px;
    width: 100%;
}

.hero-description {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    margin-left: 45px;
}

.hero-price-block {
    text-align: center;
    margin-top: 40px;
    line-height: 1;
}

.hero-price-title {
    font-size: 38px;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
}

.hero-price {
    font-size: 35px;
    font-weight: 700;
    color: #FF9001;
}

.hero-button {
    background-color: #FF9001;
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 20px;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Rubik', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 20px auto;
    text-transform: uppercase;
}

.hero-button:hover {
    background-color: #e6800f;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 144, 1, 0.3);
}

.hero-button:active {
    transform: translateY(-1px);
}

.hero-right {
    flex: 0 0 65%;
    position: relative;
    height: 600px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-bg-image {
    position: absolute;
    top: -60px;
    right: 0;
    width: 120%;
    height: calc(100% + 60px);
    object-fit: cover;
    clip-path: polygon(100% 0%, 100% 0%, 100% 155%, 30% 0%);
    z-index: 1;
}

.hero-main-image {
    position: absolute;
    top: 90%;
    right: 25%;
    transform: translateY(-50%) scaleX(-1) skewY(-5deg);
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    z-index: 2;
}

/* Секция переработки */
.processing {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.processing-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
    border-bottom: 6px solid #FF9001;
}

.processing-left {
    flex: 0 0 45%;
}

.processing-image {
    width: 100%;
    object-fit: contain;
    padding-top: 60px;
}

.processing-divider {
    width: 4px;
    height: 200px;
    background-color: #000000;
    border-radius: 2px;
    flex-shrink: 0;
}

.processing-right {
    flex: 1;
}

.processing-title-block {
    position: relative;
    margin-bottom: 30px;
}

.processing-icon {
    position: absolute;
    top: -25px;
    left: 40px;
    width: 30px;
    height: 30px;
    z-index: 1;
}

.processing-title {
    font-size: 50px;
    font-weight: 800;
    color: #FF9001;
    margin: 22px 0;
}

.processing-text {
    font-size: 22px;
    font-weight: 500;
    color: #000;
    line-height: 1.3;
    text-align: left;
    max-width: 650px;
}

/* Декоративные листочки */
.leaf {
    position: absolute;
    width: 30px;
    height: 30px;
    opacity: 0.7;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

.leaf-1 { top: 20%; left: 10%; animation-delay: 0s; }
.leaf-2 { top: 52%; right: 10%; animation-delay: 0.5s; transform: rotate(45deg); }
.leaf-3 { top: 60%; left: 35%; animation-delay: 1s; transform: rotate(-30deg); }
.leaf-4 { bottom: 25%; right: 15%; animation-delay: 1s; transform: rotate(60deg); }
.leaf-5 { bottom: 15%; left: 40%; animation-delay: 1s; transform: rotate(-45deg); }
.leaf-6 { top: 35%; right: 15%; animation-delay: 1s; transform: rotate(90deg); }
.leaf-7 { top: 30%; left: 30%; animation-delay: 1s; transform: rotate(100deg); }
.leaf-8 { top: 45%; left: 40%; animation-delay: 1s; transform: rotate(110deg); }
.leaf-9 { top: 30%; left: 19%; animation-delay: 1s; transform: rotate(120deg); }

/* Секция слайдера */
  .slider-section {
    padding: 80px 0;
    text-align: center;
}

.slider-title {
    font-size: 48px;
    font-weight: 700;
    color: #FF9001;
    margin-bottom: 60px;
}

.slider-container {
    position: relative;
    height: 600px;
    overflow: visible;
}

.slider-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    height: 100%;
    position: relative;
    margin-bottom: 40px;
}

.slide {
    position: relative;
    width: 300px;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slide.slide-left,
.slide.slide-right {
    cursor: pointer;
    pointer-events: auto;
}

.slide:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.slide.active:hover {
    transform: translateY(-5px) scale(1);
}

.slide.active {
    width: 350px;
    height: 550px;
    opacity: 1;
    transform: scale(1);
    z-index: 3;
}

.slide.active .slide-controls {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}


.slide:not(.active) {
    opacity: 0.8;
    transform: scale(0.9);
    z-index: 3;
    pointer-events: auto;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.slide-controls {
    position: absolute;
    top: 50%;
    left: -75px;
    right: -75px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 5; 
    opacity: 1;
    visibility: visible; 
    pointer-events: auto; 
}

.slide-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FF9001;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 144, 1, 0.3);
    position: relative; 
    z-index: 6;
}
.slide-btn:hover {
    background-color: #e6800f;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 144, 1, 0.4);
}

.slide-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
    stroke: white;
    stroke-width: 2;
}

.slide-content {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 0 25px;
    z-index: 2;
}

.slide-line {
    width: 45%;
    height: 3px;
    background-color: white;
    margin-bottom: 15px;
    border-radius: 2px;
}

.slide-text {
    color: white;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.3;
    text-align: left;
}

.slider-buy-btn {
    background-color: #FF9001;
    color: white;
    border: none;
    padding: 16px 120px;
    border-radius: 25px;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Rubik', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 40px auto 0;
    display: block;
}

.slider-buy-btn:hover {
    background-color: #e6800f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 144, 1, 0.3);
}

/* Секция области применения */
.applications {
    padding: 80px 80px;
    text-align: left;
}

.applications-title {
    font-size: 48px;
    font-weight: 700;
    color: #FF9001;
    margin-bottom: 60px;
    text-align: left;
}

.applications-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.application-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.application-item.reverse-1 {
    margin-left: 250px;
}

.application-item.reverse-2 {
    margin-left: 500px;
}

.application-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.application-arrow {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.application-number {
    font-size: 80px;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.application-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex: 1;
}

.application-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
    flex-shrink: 0;
}

.application-text {
    flex: 1;
}

.application-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.application-description {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    margin: 0;
}

.application-line {
    position: absolute;
    bottom: -20px;
    left: 10%;
    right: 0;
    height: 6px;
    background-color: #FF9001;
    border-radius: 2px;
    width: 600px;
}

.applications-cta-btn {
    position: absolute;
    background-color: #FF9001;
    color: white;
    border: none;
    padding: 20px;
    border-radius: 20px;
    font-size: 20px;
    margin-left: 23%;
    margin-top: 220px;
    font-weight: 700;
    font-family: 'Rubik', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 605px;
}

.applications-cta-btn:hover {
    background-color: #e6800f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 144, 1, 0.3);
}

/* Секция "Почему стоит выбрать нас?" */
.why-choose {
    padding: 80px 0;
    text-align: center;
}

.why-choose-title {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    margin-bottom: 60px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-choose-column {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.why-choose-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.why-choose-text {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    flex: 1;
}

/* Секция "О нас" */
.about-us {
    padding: 80px 200px;
}

.about-us-title {
    font-weight: 800;
    color: #000;
    font-size: 48px;
    text-align: center;
}

.about-us-text {
    font-weight: 600;
    font-size: 24px;
    text-align: left;
    margin-left: 20px;
}

.about-us-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
}

.about-us-divider {
    width: 5px;
    background-color: #FF9001;
    flex-shrink: 0;
    height: 150px;
}

/* Секция "Цикл работы" */
.work-cycle {
    padding: 80px 0;
    text-align: center;
}

.work-cycle-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 60px;
}

.work-cycle-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.step-1 { grid-column: 1; grid-row: 1; }
.arrow-1-2 { grid-column: 2; grid-row: 1; }
.step-2 { grid-column: 3; grid-row: 1; }
.arrow-2-3 { grid-column: 3; grid-row: 2; }
.step-3 { grid-column: 3; grid-row: 3; }
.arrow-3-4 { grid-column: 2; grid-row: 3; }
.step-4 { grid-column: 1; grid-row: 3; }

.work-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 500px;
    text-align: center;
}

.step-arrow {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.step-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.connecting-arrow {
    width: 130px;
    height: 130px;
    object-fit: contain;
}

.arrow-2-3 {
    transform: rotate(90deg);
    margin: auto;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-text {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    line-height: 1.3;
}

.step-final {
    font-size: 24px;
    font-weight: 700;
}

.step-phones {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
}

.step-description {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    line-height: 1.3;
    margin: auto;
    max-width: 250px;
}

/* Секция формы заявки */
.contact-form {
    padding: 80px;
}

.form-wrapper {
    max-width: 800px;
}

.form-title {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    margin-bottom: 40px;
    text-align: left;
}

.contact-form-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-input {
    width: 100%;
    padding: 20px 25px;
    background-color: #FF9001;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Rubik', sans-serif;
    border: none;
    color: #000;
    outline: none;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: white;
    font-weight: 700;
    opacity: 1;
}

.form-input:focus {
    border-color: #e6800f;
    box-shadow: 0 0 10px rgba(255, 144, 1, 0.3);
    color: white;
}

.form-submit-btn {
    width: 40%;
    padding: 20px 25px;
    border: none;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Rubik', sans-serif;
    color: white;
    background-color: #C2C2C2;
    cursor: not-allowed;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-width: 200px;
}

.form-submit-btn.active {
    background-color: #FF9001;
    cursor: pointer;
}

.form-submit-btn.active:hover {
    background-color: #e6800f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 144, 1, 0.3);
}

.telegram-icon {
    width: 20px;
    flex-shrink: 0;
}

/* Футер */
.footer {
    background-color: #FF9001;
    padding: 30px 15px;
    color: white;
}

.footer-logo-section {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.footer-logo {
    height: 120px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.footer-company {
    font-weight: 600;
}

.footer-contacts {
    font-weight: 600;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
}

.footer-phone-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.footer-phone-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-phone-number {
    color: white;
    font-size: 18px;
    display: flex;
    flex-direction: row;
    line-height: 1.2;
}

.footer-email-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-email-icon {
    width: 24px;
    height: 24px;
}

.footer-email-text {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.connecting-arrow-mobile{
    display: none;
}

/* Анимации */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(5deg);
    }
    66% {
        transform: translateY(-5px) rotate(-3deg);
    }
}

/* Адаптивность */
@media (max-width: 1200px) {
    .hero-title { font-size: 56px; }
    .hero-description { font-size: 22px; }
    .hero-price-title { font-size: 24px; }
    .hero-price { font-size: 28px; }
    .processing-title { font-size: 42px; }
    .processing-text { font-size: 17px; }
    .slider-title { font-size: 42px; }
    .applications-title { font-size: 42px; }
    .application-number { font-size: 70px; }
    .application-subtitle { font-size: 24px; }
    .application-description { font-size: 16px; }
    .why-choose-title { font-size: 42px; }
    .why-choose-grid { gap: 60px; }
    .why-choose-text { font-size: 16px; }
    .work-cycle-title { font-size: 42px; }
    .work-cycle-steps { gap: 30px; }
    .step-text { font-size: 18px; }
    .step-final { font-size: 22px; }
    .step-phones { font-size: 16px; }
    .form-title { font-size: 42px; }
    .footer-logo { height: 100px; }
    .footer-left { font-size: 14px; }
    .footer-phone-number { font-size: 16px; }
    .footer-email-text { font-size: 16px; }
    .hero-title-line{margin: 0;}
}

@media (max-width: 768px) {
    .container { padding: 0 15px; }
    .header-content { justify-content: space-between; align-items: center; }
    .phone-number { font-size: 16px; }
    .logo img { height: 40px; }
    .hero-content { flex-direction: column; text-align: center; min-height: auto; gap: 40px; }
    .hero-left { flex: none; max-width: 100%; padding: 0; }
    .hero-right { flex: none; width: 100%; height: 400px; }
    .hero-title { font-size: 48px; }
    .hero-description { font-size: 20px; margin: 20px 0; }
    .hero-bg-image { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); width: 100%; }
    .hero-main-image { right: 50%; transform: translate(50%, -50%); }
    .processing-content { flex-direction: column; gap: 40px; text-align: center; }
    .processing-left { flex: none; width: 100%; }
    .processing-divider { width: 200px; height: 4px; align-self: center; }
    .processing-right { flex: none; width: 100%; }
    .processing-title { font-size: 36px; text-align: center; padding-left: 0; text-wrap: nowrap; }
    .processing-icon { left: 50%; transform: translateX(-50%); top: -20px; }
    .processing-text { text-align: center; margin: 0 auto; }
    .processing-image { display: none; }
    .leaf{ display: none; }
    .hero-right{ display: none; }
    .processing { padding: 0; }
    .processing-content{ border: none; }
    .slider-section { padding: 60px 0; }
    .slider-title { font-size: 36px; margin-bottom: 40px; }
    .slider-section { padding: 60px 0; }
    .slider-title { font-size: 36px; margin-bottom: 40px; }
    .slider-container { height: auto; max-width: 350px; margin: 0 auto; }
    .connecting-arrow-mobile { display: block; width: 8px; height: 40px !important;}
    .connecting-arrow {display: none;}
    .slider-wrapper { 
        display: block;
        height: auto; 
    }
    .slide { 
        width: 100%; 
        height: 420px; 
        margin: 0 auto;
        display: none;
    }
    .slide.active { 
        width: 100%; 
        height: 420px; 
        display: block;
        opacity: 1; 
        transform: scale(1); 
    }
    .slide:not(.active) { 
        display: none; 
    }
    .slide-text { font-size: 16px; }
    .slide-btn { width: 45px; height: 45px; }
    .slide-controls { 
        left: -60px; 
        right: -60px; 
        opacity: 1;
        visibility: visible;
    }
    .applications { padding: 60px 20px; }
    .applications-title { font-size: 36px; margin-bottom: 40px; text-align: center; }
    .application-item { flex-direction: column; gap: 20px; margin-bottom: 60px; text-align: center; }
    .application-item.reverse-1, .application-item.reverse-2 { margin-left: 0; }
    .application-left { justify-content: center; margin: auto;}
    .application-content { flex-direction: column; align-items: center; gap: 20px; text-align: center; justify-content: center; margin: 0 auto !important;}
    .application-number { font-size: 60px; }
    .application-subtitle { font-size: 22px; }
    .application-description { font-size: 16px; }
    .application-line { position: relative; bottom: 0; margin: 20px 0 !important; width: 100%; left: 0 !important;  }
    .applications-cta-btn { position: relative; bottom: 0; width: 100%; margin-top: 20px; margin-left: 0; }
    .why-choose { padding: 60px 0; }
    .why-choose-title { font-size: 36px; margin-bottom: 40px; }
    .why-choose-grid { grid-template-columns: 1fr; gap: 40px; max-width: 600px; }
    .why-choose-column { gap: 40px; }
    .why-choose-item { gap: 15px; }
    .why-choose-icon { width: 50px; height: 50px; }
    .why-choose-text { font-size: 16px; margin: auto;}
    .about-us { padding: 60px 20px; }
    .about-us-title { font-size: 36px; }
    .about-us-text { font-size: 18px; margin-left: 10px; }
    .about-us-divider { height: 100px; }
    .work-cycle { padding: 60px 0; }
    .work-cycle-title { font-size: 36px; margin-bottom: 40px; }
    .work-cycle-steps { display: flex; flex-direction: column; gap: 40px; align-items: center; }
    .work-step { width: 100%; max-width: 400px; }
    .connecting-arrow { transform: rotate(90deg); }
    .step-text { font-size: 16px; }
    .step-final { font-size: 20px; }
    .step-phones { font-size: 15px; }
    .step-description { font-size: 14px; max-width: 250px; }
    .step-icon { width: 70px; height: 70px; }
    .step-arrow { width: 50px; height: 50px; }
    .connecting-arrow { width: 50px; height: 50px; }
    .contact-form { padding: 60px 20px; }
    .form-title { font-size: 36px; text-align: center; margin-bottom: 30px; }
    .form-wrapper { max-width: 100%; }
    .form-input { width: 80%; }
    .form-submit-btn { width: 50%; font-size: 16px; padding: 18px 20px; align-self: center; }
    .footer { padding: 40px 20px; }
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .footer-left { align-items: center; }
    .footer-right { justify-content: center; }
    .footer-phone-block { align-items: center; }
    .footer-logo { height: 80px; }
    .footer-left { font-size: 13px; }
    .footer-phone-number { font-size: 15px; }
    .footer-email-text { font-size: 15px; }
}

@media (max-width: 480px) {
    .phone-block { flex-direction: column; gap: 8px; }
    .phone-number { font-size: 14px; }
    .hero { padding: 80px 0 0 0; }
    .hero-title { font-size: 36px; }
    .hero-description { font-size: 18px; }
    .hero-price-title { font-size: 20px; }
    .hero-price { font-size: 24px; }
    .hero-button { font-size: 18px; padding: 18px 35px; }
    .hero-right { height: 300px; }
    .processing-title { font-size: 28px; }
    .processing-text { font-size: 16px; }
    .processing-icon { display: none;}
    .leaf { width: 20px; height: 20px; }
    .slider-title { font-size: 28px; }
    .slide { width: 280px; height: 380px; }
    .slide.active { width: 300px; height: 400px; }
    .slide-text { font-size: 14px; }
    .slider-buy-btn { font-size: 16px; padding: 18px 50px; }
    .slide-controls { left: -50px; right: -50px; }
    .applications-title { font-size: 28px; }
    .application-arrow { display: none; }
    .application-number { font-size: 50px; }
    .application-image { width: 100px; height: 100px; }
    .application-subtitle { font-size: 20px; }
    .application-description { font-size: 14px; }
    .applications-cta-btn { font-size: 18px; padding: 18px; }
    .why-choose-title { font-size: 28px; }
    .why-choose-item { flex-direction: column; text-align: center; gap: 15px; }
    .why-choose-icon { width: 45px; height: 45px; align-self: center; }
    .why-choose-text { font-size: 14px; text-align: center; }
    .about-us-title { font-size: 28px; }
    .about-us-text { font-size: 16px; }
    .work-cycle-title { font-size: 28px; }
    .step-text { font-size: 14px; }
    .step-final { font-size: 18px; }
    .step-phones { font-size: 14px; }
    .step-description { font-size: 12px; }
    .step-icon { width: 60px; height: 60px; }
    .step-arrow { width: 45px; height: 45px; }
    .connecting-arrow { width: 45px; height: 45px; }
    .form-title { font-size: 28px; }
    .form-input { width: 100%; font-size: 14px; padding: 18px 20px; }
    .form-submit-btn { width: 100%; font-size: 14px; padding: 16px 18px; min-width: auto; }
    .telegram-icon { width: 20px; height: 20px; }
    .footer { padding: 30px 20px; }
    .footer-content { gap: 25px; }
    .footer-logo { height: 60px; }
    .footer-left { font-size: 12px; gap: 15px; }
    .footer-phone-item { flex-direction: column; gap: 8px; }
    .footer-phone-number { font-size: 14px; text-align: center; }
    .footer-email-item { flex-direction: column; gap: 8px; }
    .footer-email-text { font-size: 14px; }
    .footer-email-icon { width: 20px; height: 20px; }
}