.pw-motion-ready [data-pw-reveal] {
    --pw-reveal-delay: 0ms;
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--pw-reveal-delay);
    will-change: opacity, transform;
}

.pw-motion-ready [data-pw-reveal="left"] {
    transform: translate3d(-44px, 0, 0);
}

.pw-motion-ready [data-pw-reveal="right"] {
    transform: translate3d(44px, 0, 0);
}

.pw-motion-ready [data-pw-reveal].is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.pw-hero {
    min-height: calc(100vh - 78px);
    padding: 0;
      place-items: center;
}

.pw-hero.is-filled {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(247, 242, 236, 0.84) 100%),
        var(--pw-hero-image) center center / cover no-repeat;
}

.pw-hero__inner {
    min-height: calc(100vh - 78px);
    display: grid;
    place-items: center;
}

.pw-hero__content {
    width: min(820px, 100%);
    padding: 44px 20px;
    text-align: center;
}

.pw-hero__logo-image {
    width: min(180px, 42vw);
    margin: 0 auto 22px;
}

.pw-hero__logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    margin: 0 auto 22px;
    border-radius: 28px;
    background: linear-gradient(145deg, var(--pw-brick), var(--pw-brick-deep));
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.14em;
    box-shadow: var(--pw-shadow-card);
}

.pw-hero__eyebrow {
    margin: 0 0 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--pw-brick);
}

.pw-hero h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.pw-hero__lead {
    max-width: 620px;
    margin: 18px auto 0;
    font-size: 16px;
    line-height: 1.85;
    color: var(--pw-text-soft);
}

.pw-hero__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.pw-sales {
    background: #fff;
}

.pw-sales__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 32px;
    align-items: center;
}

.pw-sales__copy h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.pw-sales__headline {
    margin: 22px 0 0;
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--pw-brick);
}

.pw-sales__body {
    margin: 18px 0 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--pw-text-soft);
}

.pw-graph-card {
    padding: 28px 30px;
    border-radius: 30px;
    border: 1px solid var(--pw-line);
    background: linear-gradient(180deg, #fff 0%, #f6f2ec 100%);
    box-shadow: var(--pw-shadow-soft);
}

.pw-graph-card__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
}

.pw-graph-card__head strong {
    font-size: 18px;
    line-height: 1.2;
}

.pw-graph-card__head span {
    font-size: 12px;
    color: var(--pw-text-soft);
}

.pw-graph {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: end;
}

.pw-graph__item {
    --pw-graph-delay: 0ms;
    display: grid;
    justify-items: center;
    gap: 10px;
}

.pw-graph__track {
    display: flex;
    align-items: end;
    width: 100%;
    max-width: 96px;
    height: 280px;
    padding: 12px;
    border-radius: 26px;
    background: #efe8df;
}

.pw-graph__bar {
    display: block;
    width: 100%;
    border-radius: 18px;
    background: linear-gradient(180deg, #dd765d 0%, var(--pw-brick) 100%);
}

.pw-motion-ready .pw-graph__bar {
    transform: scaleY(0);
    transform-origin: center bottom;
    transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--pw-graph-delay);
    will-change: transform;
}

.pw-motion-ready .pw-graph-card .pw-graph__item strong,
.pw-motion-ready .pw-graph-card .pw-graph__item > span {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
    transition-delay: calc(var(--pw-graph-delay) + 180ms);
}

.pw-motion-ready .pw-graph-card.is-graph-active .pw-graph__bar {
    transform: scaleY(1);
}

.pw-motion-ready .pw-graph-card.is-graph-active .pw-graph__item strong,
.pw-motion-ready .pw-graph-card.is-graph-active .pw-graph__item > span {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.pw-graph__item strong {
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.03em;
}

.pw-graph__item span {
    font-size: 13px;
    color: var(--pw-text-soft);
}

.pw-menu {
    background: var(--pw-bg-soft);
}

.pw-menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.pw-menu-tab {
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid var(--pw-line);
    border-radius: 999px;
    background: #fff;
    color: var(--pw-text-soft);
    font-size: 14px;
    font-weight: 600;
}

.pw-menu-tab.is-active {
    border-color: transparent;
    background: linear-gradient(145deg, var(--pw-brick), var(--pw-brick-deep));
    color: #fff;
    box-shadow: var(--pw-shadow-soft);
}

.pw-menu-panel {
    display: none;
}

.pw-menu-panel.is-active {
    display: block;
}

.pw-menu-slider-wrap {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.pw-slider-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--pw-line);
    background: #fff;
    color: var(--pw-text);
    box-shadow: var(--pw-shadow-soft);
}

.pw-slider-button span {
    font-size: 16px;
    font-weight: 700;
}

.pw-slider-button.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

.pw-menu-swiper {
    width: 100%;
    padding: 4px 2px 10px;
    overflow: hidden;
}

.pw-menu-swiper .swiper-wrapper {
    align-items: stretch;
}

.pw-menu-slide {
    height: auto;
}

.pw-menu-card {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--pw-line);
    background: #fff;
    /* box-shadow: var(--pw-shadow-soft); */
    height: 100%;
}

.pw-menu-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #efe8df 0%, #fff 100%);
}

.pw-menu-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pw-menu-card__media.is-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-bottom: 1px solid var(--pw-line);
}

.pw-menu-card__media.is-empty span {
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
    color: #8e8378;
    word-break: break-all;
}

.pw-menu-card__body {
    display: grid;
    gap: 7px;
    padding: 16px;
}

.pw-menu-card__body strong {
    font-size: 18px;
    line-height: 1.15;
}

.pw-menu-card__body p {
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
    color: var(--pw-text-soft);
}

.pw-menu-card__body span {
    font-size: 15px;
    font-weight: 700;
    color: var(--pw-brick);
}

.pw-cost {
    background: #fff;
}

.pw-cost-table-wrap {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--pw-line);
    background: #fff;
    box-shadow: var(--pw-shadow-soft);
}

.pw-cost-table {
    width: 100%;
    border-collapse: collapse;
}

.pw-cost-table th,
.pw-cost-table td {
    padding: 22px 20px;
    border-bottom: 1px solid var(--pw-line);
    text-align: center;
    vertical-align: middle;
}

.pw-cost-table th {
    background: #f7f3ee;
    font-size: 13px;
    font-weight: 700;
    color: var(--pw-brick);
}

.pw-cost-table td {
    font-size: 14px;
    line-height: 1.7;
}

.pw-cost-table tbody tr:last-child td {
    border-bottom: 0;
}

.pw-contact {
    background: linear-gradient(180deg, #f7f4ef 0%, #fff 100%);
}

.pw-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 30px;
    align-items: start;
}

.pw-contact__intro {
    display: grid;
    padding-top: 10px;
}

.pw-contact__intro h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.pw-contact__intro p {
    margin: 18px 0 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--pw-text-soft);
}

.pw-contact__meta {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.pw-contact__meta div {
    display: grid;
    gap: 6px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid var(--pw-line);
    background: rgba(255, 255, 255, 0.84);
}

.pw-contact__meta strong {
    font-size: 12px;
    font-weight: 700;
    color: var(--pw-brick);
}

.pw-contact__meta span {
    font-size: 14px;
    line-height: 1.7;
}

.pw-contact__form {
    padding: 28px;
    border-radius: 30px;
    border: 1px solid var(--pw-line);
    background: #fff;
    box-shadow: var(--pw-shadow-card);
}

.pw-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.pw-captcha #captcha {
    width: 100%;
}

.pw-quickbar {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    display: grid;
    grid-template-columns: auto auto;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(23, 20, 18, 0.92);
    box-shadow: var(--pw-shadow-card);
}



.pw-quickbar__label {
    display: grid;
    gap: 4px;
    min-width: 220px;
}

.pw-quickbar__label strong {
    font-size: 18px;
    line-height: 1.1;
    color: #fff;
}

.pw-quickbar__label span {
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.74);
}

.pw-quickbar__fields {
    display: grid;
    grid-template-columns: 150px 180px 130px;
    gap: 10px;
}

.pw-quickbar__fields input {
    min-height: 48px;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.96);
}

.pw-quickbar__fields button {
    min-height: 48px;
    padding: 0 16px;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--pw-brick), var(--pw-brick-deep));
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}


.pw-quickbar1 {
   width:95%;
    z-index: 80;
    display: grid;
    grid-template-columns: auto auto;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(23, 20, 18, 0.92);
    box-shadow: var(--pw-shadow-card);
	margin:100px 10px;
}



.pw-quickbar1__label {
    display: grid;
    gap: 4px;
    min-width: 220px;
}

.pw-quickbar1__label strong {
    font-size: 18px;
    line-height: 1.1;
    color: #fff;
}

.pw-quickbar1__label span {
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.74);
}

.pw-quickbar1__fields {
    display: grid;
    grid-template-columns: 150px 180px 130px;
    gap: 10px;
}

.pw-quickbar1__fields input {
    min-height: 48px;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.96);
	
}

.pw-quickbar1__fields button {
    min-height: 48px;
    padding: 0 16px;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--pw-brick), var(--pw-brick-deep));
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
    .pw-motion-ready [data-pw-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .pw-motion-ready .pw-graph__bar {
        transform: scaleY(1);
        transition: none;
    }

    .pw-motion-ready .pw-graph-card .pw-graph__item strong,
    .pw-motion-ready .pw-graph-card .pw-graph__item > span {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 1200px) {
    .pw-hero__content {
        width: min(700px, 100%);
    }

    .pw-sales__grid,
    .pw-contact__grid {
        gap: 24px;
    }

    .pw-graph-card,
    .pw-contact__form {
        padding: 24px;
    }

    .pw-quickbar__fields {
        grid-template-columns: 1fr 1.2fr 120px;
    }
	
	    .pw-quickbar1__fields {
        grid-template-columns: 1fr 1.2fr 120px;
    }
	
	
}

@media (max-width: 1080px) {
    .pw-sales__grid,
    .pw-contact__grid {
        grid-template-columns: 1fr;
    }

    .pw-sales__grid {
        gap: 26px;
    }

    .pw-graph {
        max-width: 620px;
    }

    .pw-menu-swiper {
        padding-right: 0;
    }

    .pw-quickbar {
        left: 16px;
        right: 16px;
        grid-template-columns: 1fr;
    }

    .pw-quickbar__label {
        min-width: 0;
    }
	
	    .pw-quickbar1 {
        left: 16px;
        right: 16px;
        grid-template-columns: 1fr;
    }

    .pw-quickbar1__label {
        min-width: 0;
    }
	
}

@media (max-width: 860px) {
    .pw-hero,
    .pw-hero__inner {
        min-height: auto;
    }

    .pw-hero__content {
        padding: 94px 10px 86px;
    }

    .pw-sales__copy h2,
    .pw-contact__intro h2 {
        font-size: clamp(28px, 8vw, 40px);
    }

    .pw-sales__headline {
        font-size: clamp(32px, 8vw, 48px);
    }

    .pw-graph {
        gap: 12px;
    }

    .pw-graph__track {
        height: 220px;
        padding: 10px;
        border-radius: 20px;
    }

    .pw-menu-slider-wrap {
        grid-template-columns: 1fr;
    }

    .pw-slider-button {
        display: none;
    }

    .pw-menu-swiper {
        padding-right: 0;
    }

    .pw-contact__form {
        padding: 22px;
    }

    .pw-form {
        grid-template-columns: 1fr;
    }

    .pw-quickbar__fields {
        grid-template-columns: 1fr;
    }
	
	    .pw-quickbar1__fields {
        grid-template-columns: 1fr;
		    gap: 10px;
    }
}

@media (max-width: 640px) {
    .pw-section {
        padding: 78px 0;
    }

    .pw-hero h1 {
        font-size: clamp(30px, 11vw, 46px);
    }

    .pw-hero__lead,
    .pw-sales__body,
    .pw-contact__intro p {
        font-size: 14px;
        line-height: 1.75;
    }

    .pw-hero__actions {
        flex-direction: column;
    }

    .pw-hero__actions .pw-button {
        width: 100%;
    }

    .pw-graph__item strong {
        font-size: 22px;
    }

    .pw-graph-card {
        padding: 20px 16px;
    }

    .pw-graph-card__head {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 18px;
    }

    .pw-graph {
        gap: 8px;
    }

    .pw-graph__track {
        height: 180px;
        max-width: 72px;
        padding: 8px;
    }

    .pw-menu-tabs {
        gap: 8px;
        margin-bottom: 20px;
    }

    .pw-menu-tab {
        min-height: 44px;
        padding: 0 14px;
        font-size: 13px;
    }

    .pw-menu-swiper {
        padding-right: 0;
    }

    .pw-menu-card__body {
        padding: 18px;
    }

    .pw-menu-card__body strong {
        font-size: 19px;
    }

    .pw-cost-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .pw-cost-table th,
    .pw-cost-table td {
        padding: 16px 14px;
    }

    .pw-contact__meta div,
    .pw-contact__form {
        border-radius: 20px;
    }

    .pw-quickbar {
        right: 12px;
        left: 12px;
        bottom: 12px;
        padding: 14px;
        border-radius: 20px;
    }

    .pw-quickbar__label strong {
        font-size: 16px;
    }
}
