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

:root {
    --primary-color: #000000;
    --secondary-color: #222222;
    --accent-color: #d6c732;
    --phone-color: #e2da18;
    --text-color: #212121;
    --text-light: #757575;
    --bg-color: #f5f5f5;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --header-bg: rgba(0, 0, 0, 0.80);
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}

.header-left {
    flex-shrink: 0;
}

.logo-full {
    font-size: 18px;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    white-space: nowrap;
    margin: 0;
    line-height: 1.2;
    padding: 0;
    text-align: left;
    word-break: keep-all;
    overflow-wrap: normal;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav {
    padding: 0;
    border: none;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.header-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone a {
    font-size: 30px;
    color: var(--phone-color);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    white-space: nowrap;
}

.header-phone a:hover {
    color: var(--accent-color);
}

.header-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 0.8;
}

.social-link svg {
    width: 100%;
    height: 100%;
}

.nav-list a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-list a:hover {
    color: var(--phone-color);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-list a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background-image: url('images/hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: var(--white);
    padding: 0;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.40), rgba(0,0,0,0.60));
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    padding: 80px 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 7fr 4fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 0;
}

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

.hero-image {
    display: none;
}

.hero-img {
    display: none;
}

.hero-title {
    font-size: 52px;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    color: var(--white);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
    opacity: 1;
    font-weight: 400;
    position: relative;
    z-index: 1;
    text-align: left;
    color: var(--white);
}

.hero-note {
    font-size: 20px;
    margin-bottom: 0;
    opacity: 1;
    font-style: normal;
    font-weight: 400;
    position: relative;
    z-index: 1;
    text-align: left;
    color: var(--white);
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 0;
}

.info-item {
    background: transparent;
    padding: 20px 0;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
    transition: none;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item:hover {
    transform: none;
    box-shadow: none;
}

.info-icon {
    font-size: 0;
    margin: 0;
    display: none;
}

.info-item h3 {
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 10px;
}

.info-item p {
    color: var(--white);
    font-weight: 400;
    font-size: 16px;
    margin: 5px 0;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-item p {
    margin: 8px 0;
    font-size: 16px;
}

/* Sections */
.section-title {
    font-size: 52px;
    text-align: center;
    margin-bottom: 105px;
    color: var(--text-color);
    font-weight: 400;
    letter-spacing: 0;
    position: relative;
    padding-bottom: 0;
    line-height: 1.2;
    text-decoration: none;
}

.section-title::after {
    display: none;
}

.section-title a {
    color: var(--text-color);
    text-decoration: none;
}

/* Specific section title margins */
.equipment .section-title {
    margin-bottom: 90px;
}

.pricing .section-title {
    margin-bottom: 105px;
}

.calculator .section-title {
    margin-bottom: 105px;
}

/* Why Choose Us */
.why-choose {
    padding: 45px 0 75px;
    background: var(--bg-color);
}

.features-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    margin-bottom: 0;
    padding: 0;
    background: none;
    box-shadow: none;
    border: none;
}

.feature-item-reverse {
    flex-direction: row-reverse;
}

.feature-image-wrapper {
    flex: 0 0 350px;
    width: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image {
    width: 100%;
    height: 340px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-content {
    flex: 1;
    max-width: 400px;
    text-align: left;
}

.feature-content h3 {
    color: var(--text-color);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.3;
}

.feature-content p {
    line-height: 1.8;
    color: #666;
    font-size: 16px;
    margin: 0;
}

.feature-icon {
    display: none;
}

/* Equipment */
.equipment {
    padding: 150px 0;
}

.equipment-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.equipment-item {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0;
    position: relative;
    display: flex;
    align-items: stretch;
}

.equipment-item:first-child {
    padding-left: 0;
}

.equipment-item:last-child {
    padding-right: 0;
}

.equipment-divider {
    width: 1px;
    background: #d1d1d1;
    margin: 0;
    flex-shrink: 0;
    align-self: stretch;
}

.equipment-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.equipment-img {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.equipment-title {
    color: var(--text-color);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.3;
}

.equipment-descr {
    line-height: 1.6;
    color: #666;
    font-size: 14px;
    margin: 0;
}

.equipment-image {
    display: none;
}

.equipment-icon {
    display: none;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background: var(--bg-color);
}

.pricing-description {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 90px;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
}

.pricing-description p {
    margin-bottom: 15px;
}

.pricing-note {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
    font-style: italic;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-item {
    background: var(--white);
    padding: 30px;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.pricing-item::before {
    display: none;
}

.pricing-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--text-color);
}

.pricing-item:hover::before {
    display: none;
}

.pricing-icon {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.pricing-svg {
    width: 80px;
    height: 80px;
    object-fit: contain;
    fill: var(--text-color);
    color: var(--text-color);
}

.pricing-image {
    display: none;
}

.pricing-img {
    display: none;
}

.pricing-item h3 {
    color: var(--text-color);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
}

.pricing-item p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 500;
    color: var(--text-color);
    margin-top: 15px;
    padding: 0;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.pricing-special {
    background: var(--white);
    padding: 30px;
    border-radius: 0;
    box-shadow: none;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border: 1px solid var(--border-color);
}

.pricing-special p {
    margin: 15px 0;
    line-height: 1.8;
    color: var(--text-color);
    font-size: 16px;
}

/* Calculator */
.calculator {
    padding: 80px 0;
}

.calculator-tabs {
    margin-bottom: 45px;
}

.calculator-tabs-list {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tab-item {
    flex: 1;
    display: flex;
}

.tab-btn {
    width: 100%;
    padding: 14px 20px;
    background: var(--white);
    border: 1px solid #222222;
    border-right: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0;
    position: relative;
    font-family: 'Roboto', sans-serif;
}

.tab-item:first-child .tab-btn {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.tab-item:last-child .tab-btn {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-right: 1px solid #222222;
}

.tab-btn:hover {
    background: #f5f5f5;
}

.tab-btn.active {
    background: #222222;
    color: var(--white);
    font-weight: 600;
    border-color: #222222;
}

.tab-item:last-child .tab-btn.active {
    border-right: 1px solid #222222;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.calculator-note {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.calculator-note a {
    color: var(--phone-color);
    text-decoration: none;
    font-weight: 400;
}

.calculator-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.calculator-form {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    background: var(--white);
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.form-group {
    margin-bottom: 25px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
    color: var(--text-color);
    font-size: 16px;
    text-align: left;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #222222;
    border-radius: 0;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    background: var(--white);
    color: var(--text-color);
    transition: border-color 0.3s;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23222' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-group select:focus,
.form-group input:focus {
    outline: 2px solid #222222;
    outline-offset: -2px;
    border-color: #222222;
}

.form-group select:hover,
.form-group input:hover {
    border-color: #222222;
}

.result-group {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.result-label {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
}

.result-note-small {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
    text-align: center;
}

.result-total {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
    margin-top: 10px;
    text-align: center;
}

.result-prefix,
.result-postfix {
    font-weight: 400;
}

.result-value {
    font-weight: 500;
    font-size: 20px;
}

.btn-calculate {
    display: none;
}

.calculator-result {
    display: none;
}

/* Reviews */
.reviews {
    padding: 80px 0;
    background: var(--bg-color);
}

.reviews-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.reviews-scroll {
    display: flex;
    overflow-x: hidden;
    overflow-y: hidden;
    gap: 30px;
    padding: 20px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    scroll-snap-type: x mandatory;
    position: relative;
}

.reviews-scroll::-webkit-scrollbar {
    display: none;
}

.reviews-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.review-item {
    scroll-snap-align: start;
}

.review-arrow {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #222222;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    z-index: 2;
}

.review-arrow:hover {
    background: #222222;
}

.review-arrow:hover svg path {
    stroke: #ffffff;
}

.review-arrow:active {
    transform: scale(0.95);
}

.review-arrow svg {
    width: 30px;
    height: 30px;
}

.reviews-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.review-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d1d1;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.review-indicator.active {
    background: #222222;
    width: 30px;
    border-radius: 6px;
}

.review-indicator:hover {
    background: #999;
}

.review-item {
    background: var(--white);
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    border: none;
    position: relative;
    flex: 0 0 auto;
    width: 600px;
    display: flex;
    gap: 0;
    min-height: 300px;
}

.review-image {
    flex: 0 0 300px;
    width: 300px;
    height: 100%;
    overflow: hidden;
    background: var(--bg-color);
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-text {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
    font-style: normal;
}

.review-author {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 5px;
}

.review-date {
    font-size: 14px;
    color: #999;
}

/* How to Order */
.how-to-order {
    padding: 75px 0 105px;
}

.order-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 45px;
}

.order-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 40px;
    text-align: left;
}

.order-image {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    fill: var(--text-color);
}

.order-content {
    flex: 1;
    padding-top: 0;
}

.order-title {
    color: var(--text-color);
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.3;
}

.order-text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

.order-text a {
    color: var(--phone-color);
    text-decoration: none;
}

.order-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-color);
}

.order-list li {
    padding: 5px 0;
    position: relative;
    padding-left: 0;
}

.booking-note {
    background: #efefef;
    color: var(--text-color);
    padding: 45px 0 150px;
    text-align: center;
}

.social-links-section {
    padding: 40px 0;
}

.booking-image {
    margin-bottom: 20px;
}

.booking-image img {
    max-width: 100%;
    height: auto;
}

.booking-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.booking-note h3 {
    color: var(--text-color);
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.booking-note p {
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

.social-links {
    margin-top: 40px;
    text-align: center;
}

.social-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-block;
    padding: 12px 24px;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    transition: all 0.3s;
    font-size: 16px;
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Footer */
.footer {
    background: var(--bg-color);
    color: var(--text-color);
    padding: 60px 0 20px;
    position: relative;
}

.footer .section-title {
    color: var(--text-color);
}

.contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    text-align: center;
    background: var(--white);
    padding: 30px;
    border-radius: 0;
    transition: none;
}

.contact-item:hover {
    transform: none;
    background: var(--white);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 500;
}

.contact-item p {
    margin: 8px 0;
    font-size: 16px;
}

.contact-item a {
    color: var(--phone-color);
    text-decoration: none;
    font-size: 24px;
    font-weight: 400;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-subtitle,
    .hero-note {
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 45px;
    }

    .equipment .section-title,
    .pricing .section-title,
    .calculator .section-title {
        margin-bottom: 45px;
    }

    .header-main {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
    }

    .header-left,
    .header-center,
    .header-right {
        width: 100%;
        justify-content: center;
    }

    .header-right {
        flex-wrap: wrap;
        gap: 10px;
    }

    .header-phone a {
        font-size: 24px;
    }

    .logo-full {
        font-size: 14px;
        letter-spacing: 1px;
        text-align: center;
        white-space: nowrap;
    }

    .nav-list {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .nav-list {
        justify-content: center;
        gap: 15px;
    }

    .calculator-form {
        padding: 25px;
    }

    .calculator-tabs-list {
        flex-direction: column;
    }

    .tab-item {
        width: 100%;
    }

    .tab-btn {
        border-right: 1px solid #222222;
        border-radius: 3px;
        margin-bottom: 5px;
    }

    .tab-item:first-child .tab-btn,
    .tab-item:last-child .tab-btn {
        border-radius: 3px;
    }

    .equipment {
        padding: 60px 0;
    }

    .equipment-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .equipment-divider {
        display: none;
    }

    .equipment-wrapper {
        padding: 20px 0;
    }

    .info-grid,
    .feature-item {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .feature-item-reverse {
        flex-direction: column;
    }

    .feature-image-wrapper {
        flex: none;
        width: 100%;
        max-width: 350px;
    }

    .feature-image {
        height: 250px;
    }

    .feature-content {
        max-width: 100%;
        text-align: center;
    }

    .pricing-grid,
    .reviews-wrapper {
        gap: 10px;
    }

    .review-arrow {
        width: 40px;
        height: 40px;
    }

    .review-arrow svg {
        width: 20px;
        height: 20px;
    }

    .reviews-scroll {
        gap: 20px;
        padding: 15px 0;
    }

    .review-item {
        width: 90vw;
        min-width: 300px;
        flex-direction: column;
        min-height: auto;
    }

    .review-image {
        width: 100%;
        height: 200px;
        flex: none;
    }

    .review-content {
        padding: 20px;
    }

    .reviews-indicators {
        margin-top: 20px;
        gap: 8px;
    }

    .review-indicator {
        width: 10px;
        height: 10px;
    }

    .review-indicator.active {
        width: 25px;
    }

    .reviews-grid,
    .order-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .order-image {
        flex: none;
    }

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

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .why-choose,
    .equipment,
    .pricing,
    .calculator,
    .reviews,
    .how-to-order {
        padding: 50px 0;
    }

    .calculator-tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
    }
}

