/* ========== ОБЩИЙ КОНТЕЙНЕР 1200px ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ========== ХЕРО-БЛОК ========== */
.hero {
    width: 100%;
    background-color: transparent;
    background-image: url('../images/feedback__bg-5.png');
    background-size: cover;
    background-position: center;
    padding: 150px 0 80px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    width: 100%;
}

.hero__studio {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.2;
    color: var(--color-black);
}

.hero__slogan {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.3;
    color: var(--color-black);
    max-width: 800px;
}

.hero__logo-wrapper {
    position: relative;
    display: inline-block;
}

.hero__title {
    position: relative;
    z-index: 10;
    font-family: var(--font-logo);
    font-weight: 400;
    font-size: clamp(40px, 8vw, 75px);
    line-height: 1.2;
    color: var(--color-black);
    max-width: 900px;
    word-break: break-word;
    margin: 0;
    -webkit-text-stroke: 1px #000000;
}

.hero__flower {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.hero__flower--left {
    right: -305px;
    width: 331px;
    height: 751px;
    background: url('../images/flower-front-1.png') no-repeat center/contain;
    background-size: contain;
    z-index: 1;
    top: 362px;
}

.hero__flower--center {
    right: -537px;
    width: 376px;
    height: 658px;
    background: url('../images/flower-front-2.png') no-repeat center/contain;
    background-size: contain;
    z-index: 2;
    top: 100px;
}

.hero__flower--right {
    right: -788px;
    width: 627px;
    height: 894px;
    background: url('../images/flower-front-3.png') no-repeat center/contain;
    background-size: contain;
    z-index: 1;
    top: 443px;
}

/* ========== ЗАГОЛОВОК СТРАНИЦЫ ========== */
.page-title-wrapper {
    padding: 40px 0 0;
    background: #FFFFFF;
}

.page-title {
    font-family: var(--font-logo);
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    color: var(--color-black);
    margin: 0;
    text-align: center;
    -webkit-text-stroke: 1px #000000;
}

/* ========== ПРОЦЕСС ОФОРМЛЕНИЯ ЗАКАЗА ========== */
.process {
    padding: 80px 0;
    background: #FFFFFF;
}

.process__title {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 50px;
}

.process__steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.process__step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.process__step-number {
    width: 60px;
    height: 60px;
    background: var(--color-pink);
    color: white;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px auto;
}

.process__step-title {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: var(--color-black);
    margin-bottom: 10px;
}

.process__step-text {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.4;
    color: #666;
}

/* ========== УСЛОВИЯ ДОСТАВКИ ========== */
.delivery-info {
    padding: 80px 0;
    background: #F7EBEC;
}

.delivery-info__title {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 40px;
}

.delivery-info__content {
    max-width: 900px;
    margin: 0 auto;
}

.delivery-info__block {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
}

.delivery-info__block:last-child {
    margin-bottom: 0;
}

.delivery-info__block-title {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.3;
    color: var(--color-black);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-pink);
    display: inline-block;
}

.delivery-info__text {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    color: #444;
}

.delivery-info__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.delivery-info__list li {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    color: #444;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.delivery-info__list li::before {
    content: "•";
    color: var(--color-pink);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ========== УСЛОВИЯ ОПЛАТЫ ========== */
.payment-info {
    padding: 80px 0;
    background: #FFFFFF;
}

.payment-info__title {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 40px;
}

.payment-info__content {
    max-width: 900px;
    margin: 0 auto;
}

.payment-info__block {
    background: #F7EBEC;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
}

.payment-info__block:last-child {
    margin-bottom: 0;
}

.payment-info__block-title {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.3;
    color: var(--color-black);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-pink);
    display: inline-block;
}

.payment-info__list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 15px;
}

.payment-info__list li {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    color: #444;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.payment-info__list li::before {
    content: "•";
    color: var(--color-pink);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.payment-info__list--discount li {
    font-weight: 400;
    color: var(--color-black);
}

.payment-info__note {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.4;
    color: #888;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ========== АДАПТИВ ========== */

/* ---------- Адаптив hero (текст всегда СЛЕВА) ---------- */
@media (max-width: 900px) {
    .hero {
        background-image: none;
        background-color: var(--color-pink-bg);
    }

    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;    /* ← текст слева */
        text-align: left;           /* ← текст слева */
        padding: 40px 20px;
    }
    
    .hero__title,
    .hero__slogan {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        background: var(--color-pink-bg);
        background-image: none;
        padding: 60px 0 80px;
        min-height: auto;
    }
    
    .hero .container {
        align-items: flex-start;    /* ← текст слева */
        text-align: left;           /* ← текст слева */
        margin-top: 50px;
        gap: 15px;
    }
    
    .hero__studio,
    .hero__title,
    .hero__slogan,
    .hero__btn {
        text-align: left;           /* ← текст слева */
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero__title {
        font-size: 50px;
        max-width: 100%;
    }
    
    .hero__slogan {
        max-width: 100%;
        font-size: 15px;
    }
    
    .hero__studio {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 100px;
    }
    
    .hero__title {
        font-size: 34px;
    }
}

/* ========== АДАПТИВ ЦВЕТКОВ В ХЕРО-БЛОКЕ (всегда справа) ========== */

/* 1100px */
@media (max-width: 1100px) {
    .hero__flower--left {
        right: -180px;
        width: 280px;
        height: 630px;
        top: 320px;
    }
    
    .hero__flower--center {
        right: -350px;
        width: 320px;
        height: 560px;
        top: 80px;
    }
    
    .hero__flower--right {
        right: -597px;
        width: 530px;
        height: 760px;
        top: 390px;
    }
}

/* 900px */
@media (max-width: 900px) {
    .hero {
        padding: 80px 0 85px;
        min-height: auto;
    }
    
    .hero .container {
        gap: 18px;
    }
    
    .hero__studio {
        font-size: 18px;
    }
    
    .hero__title {
        font-size: 52px;
    }
    
    .hero__slogan {
        font-size: 16px;
        max-width: 100%;
    }
    
    /* Цветы для 900px */
    .hero__flower--left {
        right: -169px;
        width: 250px;
        height: 560px;
        top: 320px;
    }
    
    .hero__flower--center {
        right: -328px;
        width: 270px;
        height: 470px;
        top: 150px;
    }
    
    .hero__flower--right {
        right: -518px;
        width: 390px;
        height: 560px;
        top: 340px;
    }
}

/* 768px */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 80px;
        min-height: auto;
    }
    
    .hero .container {
        gap: 18px;
    }
    
    .hero__studio {
        font-size: 17px;
    }
    
    .hero__title {
        font-size: 44px;
    }
    
    .hero__slogan {
        font-size: 15px;
        max-width: 100%;
    }
    
    /* Цветы для 768px */
    .hero__flower--left {
        right: -140px;
        width: 230px;
        height: 510px;
        top: 290px;
    }
    
    .hero__flower--center {
        right: -270px;
        width: 245px;
        height: 430px;
        top: 140px;
    }
    
    .hero__flower--right {
        right: -430px;
        width: 355px;
        height: 510px;
        top: 310px;
    }
}

/* 600px */
@media (max-width: 600px) {
    .hero {
        padding: 45px 0 60px;
        min-height: auto;
    }
    
    .hero .container {
        gap: 16px;
    }
    
    .hero__studio {
        font-size: 16px;
    }
    
    .hero__title {
        font-size: 40px;
    }
    
    .hero__slogan {
        font-size: 14px;
        max-width: 100%;
    }
    
    /* Цветы для 600px */
    .hero__flower--left {
        right: -100px;
        width: 200px;
        height: 450px;
        top: 268px;
    }
    
    .hero__flower--center {
        right: -200px;
        width: 210px;
        height: 380px;
        top: 125px;
    }
    
    .hero__flower--right {
        right: -330px;
        width: 300px;
        height: 450px;
        top: 280px;
    }
}

/* 520px */
@media (max-width: 520px) {
    .hero__flower--left {
        right: -76px;
        width: 180px;
        height: 400px;
        top: 253px;
    }
    
    .hero__flower--center {
        right: -167px;
        width: 190px;
        height: 340px;
        top: 115px;
    }
    
    .hero__flower--right {
        right: -276px;
        width: 270px;
        height: 400px;
        top: 260px;
    }
}

/* 480px */
@media (max-width: 480px) {
    .hero {
        padding: 30px 0 40px;
        min-height: auto;
    }
    
    .hero .container {
        gap: 15px;
    }
    
    .hero__studio {
        font-size: 16px;
    }
    
    .hero__title {
        font-size: 36px;
    }
    
    .hero__slogan {
        font-size: 14px;
        max-width: 100%;
    }
    
    /* Цветы всегда справа, только уменьшаем */
    .hero__flower--left {
        right: -65px;
        width: 163px;
        height: 371px;
        top: 235px;
    }
    
    .hero__flower--center {
        right: -163px;
        width: 165px;
        height: 290px;
        top: 128px;
    }
    
    .hero__flower--right {
        right: -260px;
        width: 243px;
        height: 346px;
        top: 248px;
    }
}

/* 420px */
@media (max-width: 420px) {

    .hero__flower--left {
        right: -22px;
        width: 136px;
        height: 309px;
        top: 221px;
    }
    
    .hero__flower--center {
        right: -86px;
        width: 123px;
        height: 216px;
        top: 128px;
    }
    
    .hero__flower--right {
        right: -187px;
        width: 198px;
        height: 282px;
        top: 225px;
    }
}

/* ---------- Адаптив заголовка страницы ---------- */
@media (max-width: 900px) {
    .page-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }
}

/* ---------- Адаптив всего остального ---------- */
@media (max-width: 900px) {
    .process__steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .process__step {
        max-width: 350px;
        width: 100%;
    }
    
    .delivery-info__title,
    .payment-info__title {
        font-size: 36px;
    }
    
    .delivery-info__block-title,
    .payment-info__block-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .process {
        padding: 50px 0;
    }
    
    .process__title {
        font-size: 32px;
        margin-bottom: 35px;
    }
    
    .delivery-info,
    .payment-info {
        padding: 50px 0;
    }
    
    .delivery-info__title,
    .payment-info__title {
        font-size: 32px;
    }
    
    .delivery-info__block,
    .payment-info__block {
        padding: 20px;
    }
    
    .delivery-info__block-title,
    .payment-info__block-title {
        font-size: 18px;
    }
    
    .delivery-info__text,
    .delivery-info__list li,
    .payment-info__list li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 32px;
    }
    
    .process__title {
        font-size: 28px;
    }
    
    .process__step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .process__step-title {
        font-size: 18px;
    }
    
    .process__step-text {
        font-size: 14px;
    }
    
    .delivery-info__title,
    .payment-info__title {
        font-size: 28px;
    }
    
    .delivery-info__block-title,
    .payment-info__block-title {
        font-size: 16px;
    }
}


/* ========== АДАПТИВ ДЛЯ БЛОКА "КАК ПОЛУЧИТЬ ЗАКАЗ" ========== */

/* Планшеты (до 900px) — 2 колонки */
@media (max-width: 900px) {
    .process {
        padding: 60px 0;
    }
    
    .process__title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .process__steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .process__step {
        min-width: auto;
    }
    
    .process__step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .process__step-title {
        font-size: 18px;
    }
    
    .process__step-text {
        font-size: 14px;
    }
}

/* Мобильные устройства (до 550px) — 1 колонка */
@media (max-width: 550px) {
    .process {
        padding: 40px 0;
    }
    
    .process__title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .process__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .process__step-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .process__step-title {
        font-size: 16px;
    }
    
    .process__step-text {
        font-size: 13px;
    }
}