html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

.phc-main {
    font-family: 'Poppins', sans-serif;
    background: #f7fafc;
    color: #212529;
    font-size: 18px;
}

.phc-header {
    background: #ffffff;
    border-bottom: 1px solid #e4e8ee;
    position: sticky;
    top: 0;
    z-index: 50;
}

.phc-header__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.phc-header__brand {
    display: flex;
    align-items: center;
}

.phc-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phc-header__logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #20c063, #0a8c3f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
}

.phc-header__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.phc-header__logo-name {
    font-weight: 700;
    font-size: 20px;
    color: #1b1f28;
}

.phc-header__logo-tagline {
    font-size: 14px;
    color: #6c7583;
}

.phc-nav {
    margin-left: auto;
}

.phc-nav__list {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.phc-nav__link {
    text-decoration: none;
    color: #333a46;
    font-weight: 500;
    transition: color 0.2s ease;
}

.phc-nav__link:hover {
    color: #0c9c4b;
}

.phc-header__cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    min-width: 190px;
}

.phc-header__phone-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #ff6a3c;
}

.phc-header__phone-label i {
    font-size: 16px;
}

.phc-header__phone-number {
    text-decoration: none;
    color: #0c9c4b;
    font-weight: 700;
    font-size: 18px;
}

/* burger */
.phc-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 28px;
    padding: 0;
    position: relative;
}

.phc-burger__line {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: #252a34;
    border-radius: 3px;
    transition: transform 0.25s ease, top 0.25s ease, opacity 0.25s ease;
}

.phc-burger__line:nth-child(1) {
    top: 4px;
}

.phc-burger__line:nth-child(2) {
    top: 12px;
}

.phc-burger__line:nth-child(3) {
    top: 20px;
}

.phc-burger.phc-burger--active .phc-burger__line:nth-child(1) {
    top: 12px;
    transform: rotate(45deg);
}

.phc-burger.phc-burger--active .phc-burger__line:nth-child(2) {
    opacity: 0;
}

.phc-burger.phc-burger--active .phc-burger__line:nth-child(3) {
    top: 12px;
    transform: rotate(-45deg);
}

/* mobile nav */
.phc-header__mobile-nav {
    display: none;
    background: #ffffff;
    border-bottom: 1px solid #e4e8ee;
}

.phc-header__mobile-nav--open {
    display: block;
}

.phc-header__mobile-list {
    list-style: none;
    padding: 10px 20px 16px 20px;
    margin: 0;
}

.phc-header__mobile-item {
    padding: 8px 0;
    border-bottom: 1px solid #f0f2f7;
}

.phc-header__mobile-item:last-child {
    border-bottom: none;
}

.phc-header__mobile-link {
    text-decoration: none;
    color: #333a46;
    font-weight: 500;
}

.phc-header__mobile-item--phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    font-weight: 700;
    color: #0c9c4b;
}

/* hero */
.phc-hero {
    padding: 40px 20px 60px 20px;
    background: linear-gradient(120deg, #f7fafc 0%, #ffffff 40%, #f7fbff 100%);
}

.phc-hero__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.phc-hero__content {
    flex: 1 1 55%;
}

.phc-hero__media {
    flex: 1 1 45%;
}

.phc-hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 14px;
    font-weight: 700;
    color: #ff6a3c;
    margin-bottom: 10px;
}

.phc-hero__title {
    font-size: 36px;
    line-height: 1.2;
    margin: 0 0 16px 0;
    color: #1b1f28;
}

.phc-hero__title-accent {
    color: #0c9c4b;
}

.phc-hero__text {
    margin: 0 0 20px 0;
    color: #4a5361;
}

.phc-hero__offer {
    margin-bottom: 20px;
}

.phc-hero__offer-text {
    margin: 0;
    font-weight: 500;
    color: #363d49;
}

.phc-hero__offer-strong {
    text-transform: uppercase;
    font-weight: 700;
}

.phc-hero__offer-accent {
    color: #ff6a3c;
    font-weight: 700;
}

/* booking card */
.phc-hero__booking {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 14px 35px rgba(15, 35, 61, 0.12);
    padding: 18px 18px 16px 18px;
    max-width: 420px;
    margin-bottom: 20px;
}

.phc-hero__booking-header {
    font-weight: 700;
    margin-bottom: 12px;
    color: #1b1f28;
}

.phc-hero__booking-body {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.phc-hero__input {
    flex: 1;
    border-radius: 6px;
    border: 1px solid #d1d7e3;
    padding: 10px 12px;
    font-size: 16px;
    outline: none;
}

.phc-hero__input:focus {
    border-color: #0c9c4b;
}

.phc-hero__button {
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    background: linear-gradient(135deg, #ff7b2c, #ff5a3a);
    color: #ffffff;
    white-space: nowrap;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.phc-hero__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(255, 104, 60, 0.4);
}

.phc-hero__booking-note {
    font-size: 14px;
    color: #6c7583;
}

/* as seen in */
.phc-hero__seen {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phc-hero__seen-label {
    font-size: 14px;
    color: #6c7583;
}

.phc-hero__seen-logos {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.phc-hero__seen-item {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    background: #ffffff;
    color: #566072;
    border: 1px solid #e3e7f0;
}

.phc-hero__seen-item--today {
    font-weight: 700;
}

.phc-hero__seen-item--nine {
    letter-spacing: 0.04em;
}

.phc-hero__seen-item--press {
    font-style: italic;
}

/* hero image */
.phc-hero__image-wrap {
    position: relative;
    border-radius: 26px 6px 26px 6px;
    overflow: hidden;
    box-shadow: 0 24px 45px rgba(10, 35, 64, 0.28);
}

.phc-hero__image {
    display: block;
    width: 100%;
    height: auto;
}

.phc-hero__badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(6px);
}

.phc-hero__badge i {
    color: #0c9c4b;
    font-size: 20px;
}

.phc-hero__badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.phc-hero__badge-main {
    font-weight: 700;
    font-size: 15px;
    color: #1b1f28;
}

.phc-hero__badge-sub {
    font-size: 13px;
    color: #6c7583;
}

/* responsive */
@media (max-width: 1024px) {
    .phc-hero__inner {
        gap: 26px;
    }
}

@media (max-width: 900px) {
    .phc-nav {
        display: none;
    }

    .phc-header__cta {
        display: none;
    }

    .phc-burger {
        display: block;
    }

    .phc-hero {
        padding-top: 26px;
    }

    .phc-hero__inner {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .phc-hero__content {
        width: 100%;
    }

    .phc-hero__media {
        width: 100%;
    }

    .phc-hero__booking-body {
        flex-direction: column;
    }

    .phc-hero__button {
        width: 100%;
        text-align: center;
    }

    .phc-hero__title {
        font-size: 30px;
    }
}

@media (max-width: 600px) {
    .phc-header__inner {
        padding: 10px 16px;
    }

    .phc-hero {
        padding: 26px 16px 40px 16px;
    }

    .phc-hero__booking {
        max-width: 100%;
    }

    .phc-hero__seen {
        flex-direction: column;
        align-items: flex-start;
    }
}

.phx-services {
    padding: 60px 20px 70px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #22252b;
}

.phx-services__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.phx-services__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px auto;
}

.phx-services__title {
    margin: 0 0 12px 0;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
}

.phx-services__subtitle {
    margin: 0;
    color: #6a717f;
}

.phx-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
    align-items: stretch;
}

.phx-services__item {
    text-align: center;
}

.phx-services__icon-wrap {
    width: 88px;
    height: 88px;
    margin: 0 auto 16px auto;
    border-radius: 26px;
    /* border: 2px solid #dfe4ec; */
    display: flex;
    align-items: center;
    justify-content: center;

}

.phx-services__icon {
    font-size: 75px;
    color: #16a15c;
}

.phx-services__name {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #23252d;
}

/* responsive */
@media (max-width: 1024px) {
    .phx-services {
        padding-top: 50px;
        padding-bottom: 60px;
    }

    .phx-services__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 32px 24px;
    }

    .phx-services__title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .phx-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 18px;
    }

    .phx-services__head {
        margin-bottom: 30px;
    }
}

@media (max-width: 520px) {
    .phx-services {
        padding: 40px 16px 50px 16px;
    }

    .phx-services__grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 14px;
    }

    .phx-services__icon-wrap {
        width: 80px;
        height: 80px;
    }

    .phx-services__title {
        font-size: 26px;
    }
}

.phc-reviews {
    padding: 70px 20px 80px 20px;
    background: #0a9b4f;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #14161a;
}

.phc-reviews__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.phc-reviews__head {
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
}

.phc-reviews__title {
    margin: 0 0 10px 0;
    font-size: 34px;
    font-weight: 700;
}

.phc-reviews__subtitle {
    margin: 0;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    color: #e3f8ee;
}

.phc-reviews__slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
}

.phc-reviews__slider {
    width: 100%;
    padding: 20px 10px 10px 10px;
}

.phc-reviews__card {
    background: #fff7f0;
    background: radial-gradient(circle at 10% 0, rgba(255, 255, 255, 0.9), #fff6ee);

    border-radius: 8px;
    padding: 34px 32px 30px 32px;
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
}

.phc-reviews__text {
    margin: 0 0 26px 0;
    color: #33363f;
}

.phc-reviews__rating {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
}

.phc-reviews__star {
    color: #18a451;
    font-size: 14px;
}

.phc-reviews__author {
    margin: 0;
    font-weight: 700;
    color: #e46638;
}

.phc-reviews__nav {
    background: none;
    border: none;
    cursor: pointer;
    color: #fff7f0;
    font-size: 26px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, color 0.15s ease;
}

.phc-reviews__nav:hover {
    transform: translateY(-1px);
    color: #ffe0c0;
}

/* Swiper overrides */
.phc-reviews__slider .swiper-slide {
    display: flex;
    justify-content: center;
}

/* responsive */
@media (max-width: 1024px) {
    .phc-reviews {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .phc-reviews__title {
        font-size: 30px;
    }
}

@media (max-width: 900px) {
    .phc-reviews__subtitle {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .phc-reviews {
        padding: 50px 16px 60px 16px;
    }

    .phc-reviews__slider-wrap {
        gap: 10px;
    }

    .phc-reviews__card {
        max-width: 100%;
        padding-left: 22px;
        padding-right: 22px;
    }

    .phc-reviews__nav {
        font-size: 22px;
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 520px) {
    .phc-reviews__title {
        font-size: 26px;
    }

    .phc-reviews__subtitle {
        font-size: 16px;
    }

    .phc-reviews__card {
        padding: 22px 18px 22px 18px;
    }

    .phc-reviews__text {
        font-size: 17px;
    }
}

.phq-benefits {
    padding: 70px 20px 80px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #181a1f;
}

.phq-benefits__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.phq-benefits__media {
    flex: 0 0 45%;
}

.phq-benefits__content {
    flex: 0 0 55%;
}

.phq-benefits__image-wrap {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.24);
}

.phq-benefits__image {
    display: block;
    width: 100%;
    height: auto;
}

.phq-benefits__title {
    margin: 0 0 12px 0;
    font-size: 34px;
    font-weight: 700;
    color: #181a1f;
}

.phq-benefits__intro {
    margin: 0 0 22px 0;
    color: #4b5260;
}

.phq-benefits__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 26px;
}

.phq-benefits__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.phq-benefits__icon-box {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 106, 60, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.phq-benefits__icon {
    font-size: 16px;
    color: #ff6a3c;
}

.phq-benefits__item-body {
    flex: 1;
}

.phq-benefits__item-title {
    margin: 0 0 4px 0;
    font-weight: 700;
    color: #21242c;
}

.phq-benefits__item-text {
    margin: 0;
    color: #4b5260;
}

/* responsive */
@media (max-width: 1024px) {
    .phq-benefits {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .phq-benefits__inner {
        gap: 36px;
    }

    .phq-benefits__title {
        font-size: 30px;
    }
}

@media (max-width: 860px) {
    .phq-benefits__inner {
        flex-direction: column;
    }

    .phq-benefits__media,
    .phq-benefits__content {
        flex: 0 0 auto;
        width: 100%;
    }

    .phq-benefits__content {
        max-width: 640px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .phq-benefits {
        padding: 46px 16px 56px 16px;
    }

    .phq-benefits__title {
        font-size: 26px;
    }

    .phq-benefits__list {
        grid-template-columns: 1fr;
        gap: 14px 0;
    }
}

.phs-steps {
    padding: 70px 20px 80px 20px;
    background: #0a8f4a;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #ffffff;
}

.phs-steps__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.phs-steps__head {
    text-align: center;
    margin-bottom: 50px;
}

.phs-steps__title {
    margin: 0;
    font-size: 34px;
    font-weight: 700;
}

.phs-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}

.phs-steps__item {
    position: relative;
    text-align: center;
    padding-top: 40px;
}

.phs-steps__num {
    position: absolute;
    left: 25%;
    top: 0;
    transform: translate(-50%, -5%);
    font-size: 140px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.06);
    pointer-events: none;
}

.phs-steps__icon-box {
    /* width: 70px; */
    /* height: 70px; */
    border-radius: 999px;
    /* border: 2px solid rgba(255, 255, 255, 0.8); */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    background: rgba(9, 132, 70, 0.15);
}

.phs-steps__icon {
    font-size: 75px;
    color: #ffffff;
}

.phs-steps__name {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.phs-steps__text {
    margin: 0;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    color: #e6fff2;
}

/* responsive */
@media (max-width: 1024px) {
    .phs-steps {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .phs-steps__title {
        font-size: 30px;
    }

    .phs-steps__num {
        font-size: 120px;
    }
}

@media (max-width: 768px) {
    .phs-steps {
        padding: 50px 16px 60px 16px;
    }

    .phs-steps__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .phs-steps__item {
        padding-top: 30px;
    }

    .phs-steps__num {
        font-size: 100px;
        transform: translate(-50%, -15%);
    }
}

@media (max-width: 480px) {
    .phs-steps__title {
        font-size: 26px;
    }

    .phs-steps__text {
        font-size: 17px;
    }
}

.phw-story {
    padding: 70px 20px 80px 20px;
    background: #fff1de;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #191b20;
}

.phw-story__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.phw-story__title {
    text-align: center;
    margin: 0 0 40px 0;
    font-size: 34px;
    font-weight: 700;
    color: #191b20;
}

.phw-story__layout {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.phw-story__media {
    flex: 0 0 46%;
}

.phw-story__content {
    flex: 1;
}

.phw-story__image-wrap {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.phw-story__image {
    display: block;
    width: 100%;
    height: auto;
}

.phw-story__text {
    margin: 0 0 16px 0;
    color: #343842;
    line-height: 1.55;
}

.phw-story__cta {
    margin-top: 22px;
}

.phw-story__button {
    display: inline-block;
    padding: 15px 32px;
    background: #ff6b31;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 14px 28px rgba(255, 84, 25, 0.45);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    font-size: 16px;
}

.phw-story__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(255, 84, 25, 0.55);
    background: #ff5a22;
}

/* responsive */
@media (max-width: 1024px) {
    .phw-story {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .phw-story__title {
        font-size: 30px;
    }
}

@media (max-width: 860px) {
    .phw-story__layout {
        flex-direction: column;
        gap: 26px;
    }

    .phw-story__media,
    .phw-story__content {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .phw-story {
        padding: 46px 16px 56px 16px;
    }

    .phw-story__title {
        font-size: 26px;
        margin-bottom: 26px;
    }

    .phw-story__button {
        width: 100%;
        text-align: center;
    }
}

.phb-best {
    padding: 80px 20px 90px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #171a1f;
}

.phb-best__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.phb-best__content {
    flex: 0 0 52%;
}

.phb-best__media {
    flex: 0 0 48%;
}

.phb-best__title {
    margin: 0 0 20px 0;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #161821;
}

.phb-best__text {
    margin: 0 0 16px 0;
    color: #3b404c;
    line-height: 1.6;
}

.phb-best__image-wrap {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.25);
}

.phb-best__image {
    display: block;
    width: 100%;
    height: auto;
}

/* responsive */
@media (max-width: 1100px) {
    .phb-best {
        padding-top: 70px;
        padding-bottom: 80px;
    }

    .phb-best__title {
        font-size: 34px;
    }
}

@media (max-width: 900px) {
    .phb-best__inner {
        flex-direction: column-reverse;
        gap: 32px;
    }

    .phb-best__content,
    .phb-best__media {
        flex: 0 0 auto;
        width: 100%;
    }

    .phb-best__title {
        font-size: 30px;
    }
}

@media (max-width: 600px) {
    .phb-best {
        padding: 56px 16px 66px 16px;
    }

    .phb-best__title {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .phb-best__text {
        font-size: 17px;
    }
}

.pfc-strip {
    background: #fff7ec;
    padding: 66px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #1f2329;
}

.pfc-strip__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.pfc-strip__text {
    flex: 1 1 auto;
}

.pfc-strip__title {
    margin: 0 0 4px 0;
    font-size: 26px;
    font-weight: 700;
    color: #0f8a3e;
}

.pfc-strip__subtitle {
    margin: 0;
    color: #404653;
}

.pfc-strip__cta {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.pfc-strip__button {
    display: inline-block;
    padding: 12px 32px;
    background: #ff6b2b;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 16px;
    box-shadow: 0 12px 24px rgba(255, 107, 43, 0.45);
    transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.pfc-strip__button:hover {
    background: #ff5a1b;
    box-shadow: 0 16px 32px rgba(255, 107, 43, 0.55);
    transform: translateY(-1px);
}

/* responsive */
@media (max-width: 900px) {
    .pfc-strip__title {
        font-size: 24px;
    }
}

@media (max-width: 680px) {
    .pfc-strip {
        padding: 22px 16px;
    }

    .pfc-strip__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .pfc-strip__cta {
        width: 100%;
        justify-content: flex-start;
        margin-top: 10px;
    }

    .pfc-strip__button {
        width: 100%;
        text-align: center;
    }
}

.phf-footer {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    background: #ffffff;
    color: #25272f;
}

/* common container */
.phf-footer__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* top */
.phf-footer__top {
    padding-top: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f1e8dd;
    background: #fffdf7;
}

.phf-footer__brand {
    margin-bottom: 26px;
    text-align: center;
}

.phf-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.phf-footer__logo-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #19b764, #0b8a43);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
}

.phf-footer__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.phf-footer__logo-name {
    font-weight: 700;
    font-size: 20px;
}

.phf-footer__logo-tagline {
    font-size: 14px;
    color: #636a79;
}

.phf-footer__columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.phf-footer__title {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 700;
    color: #22252b;
}

.phf-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.phf-footer__link {
    text-decoration: none;
    color: #495063;
    font-size: 16px;
    display: inline-block;
    padding: 2px 0;
    transition: color 0.15s ease;
}

.phf-footer__link:hover {
    color: #0d9a4e;
}

.phf-footer__col--locations .phf-footer__locations {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
}

/* contact & social */
.phf-footer__list--contact .phf-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.phf-footer__icon {
    font-size: 14px;
    color: #0d9a4e;
    margin-top: 4px;
}

.phf-footer__contact-text {
    font-size: 16px;
    color: #495063;
}

.phf-footer__social {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.phf-footer__social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    text-decoration: none;
    color: #495063;
}

.phf-footer__social-link i {
    font-size: 14px;
}

.phf-footer__social-link:hover {
    color: #0d9a4e;
}

.phf-footer__rating {
    margin: 10px 0 0 0;
    font-size: 15px;
    color: #6a7080;
}

/* covid band */
.phf-footer__covid {
    background: #fff5e3;
    padding: 24px 0 26px 0;
    border-top: 1px solid #f1e8dd;
    border-bottom: 1px solid #f1e8dd;
}

.phf-footer__covid-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phf-footer__covid-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.phf-footer__covid-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #0d9a4e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
}

.phf-footer__covid-label {
    font-weight: 700;
    color: #22252b;
    font-size: 17px;
}

.phf-footer__covid-text {
    flex: 1 1 auto;
}

.phf-footer__covid-paragraph {
    margin: 0 0 4px 0;
    font-size: 16px;
    color: #4b5261;
}

/* bottom */
.phf-footer__bottom {
    background: #0f8d4a;
    padding: 14px 0;
    color: #ffffff;
}

.phf-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.phf-footer__copy {
    margin: 0;
    font-size: 14px;
}

.phf-footer__copy--secondary {
    text-align: right;
}

/* responsive */
@media (max-width: 1024px) {
    .phf-footer__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .phf-footer__covid-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .phf-footer__columns {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .phf-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 540px) {
    .phf-footer__columns {
        grid-template-columns: 1fr;
    }

    .phf-footer__brand {
        margin-bottom: 18px;
    }

    .phf-footer__covid-inner {
        padding: 0 20px;
    }
}

.pab-about {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #22252b;
    background: #ffffff;
}

/* banner */
.pab-about__banner {
    background: #e1e5ea;
    padding: 32px 20px;
}

.pab-about__banner-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.pab-about__icon-wrap {
    flex: 0 0 auto;
}

.pab-about__icon-circle {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pab-about__icon {
    font-size: 40px;
    color: #179857;
}

.pab-about__banner-title {

    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #e45726;
}

/* content */
.pab-about__content {
    padding: 50px 20px 60px 20px;
    background: #ffffff;
}

.pab-about__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.pab-about__text-block {
    flex: 1 1 60%;
}

.pab-about__text {
    margin: 0 0 16px 0;
    line-height: 1.6;
    color: #333843;
}

.pab-about__text:last-child {
    margin-bottom: 0;
}

.pab-about__link {
    color: #179857;
    text-decoration: none;
    font-weight: 600;
}

.pab-about__link:hover {
    text-decoration: underline;
}

/* image */
.pab-about__image-block {
    flex: 1 1 40%;
}

.pab-about__image-wrap {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.pab-about__image {
    display: block;
    width: 100%;
    height: auto;
}

/* responsive */
@media (max-width: 1024px) {
    .pab-about__banner {
        padding: 26px 20px;
    }

    .pab-about__banner-title {
        font-size: 24px;
    }

    .pab-about__content {
        padding-top: 40px;
        padding-bottom: 50px;
    }
}

@media (max-width: 860px) {
    .pab-about__inner {
        flex-direction: column;
        gap: 28px;
    }

    .pab-about__image-block,
    .pab-about__text-block {
        flex: 0 0 auto;
        width: 100%;
    }

    .pab-about__banner-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 600px) {
    .pab-about__banner {
        padding: 22px 16px;
    }

    .pab-about__banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .pab-about__banner-title {
        margin-left: 0;
        font-size: 22px;
    }

    .pab-about__content {
        padding: 34px 16px 44px 16px;
    }

    .pab-about__text {
        font-size: 17px;
    }
}

.phs-range {
    padding: 50px 20px 70px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #22252b;
}

.phs-range__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.phs-range__intro {
    text-align: center;
    margin-bottom: 50px;
}

.phs-range__text {
    margin: 0 0 12px 0;
    color: #414754;
}

.phs-range__heading {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #179857;
}

/* grid */
.phs-range__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 34px;
    justify-items: center;
}

.phs-range__item {
    width: 100%;
}

.phs-range__card {
    border: 1px solid #e1e4eb;
    background: #ffffff;
    box-sizing: border-box;
    padding: 30px 20px 24px 20px;
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
}

.phs-range__icon-wrap {
    margin-bottom: 16px;
}

.phs-range__icon {
    font-size: 56px;
    color: #4c4f57;
}

.phs-range__label {
    margin: 0;
    margin-top: 6px;
    font-weight: 600;
    color: #f06e24;
}

/* responsive */
@media (max-width: 1024px) {
    .phs-range__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 26px 22px;
    }
}

@media (max-width: 900px) {
    .phs-range__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .phs-range {
        padding: 40px 16px 56px 16px;
    }

    .phs-range__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .phs-range__card {
        max-width: 100%;
    }
}

.phr-rates {
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #242832;
    background: #ffffff;
}

/* banner */
.phr-rates__banner {
    background: #dde3ea;
    padding: 32px 20px;
}

.phr-rates__banner-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.phr-rates__icon-wrap {
    flex: 0 0 auto;
}

.phr-rates__icon-circle {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phr-rates__icon {
    font-size: 40px;
    color: #17a35e;
}

.phr-rates__banner-title {

    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #f06629;
}

/* content */
.phr-rates__content {
    padding: 50px 20px 60px 20px;
    background: #ffffff;
}

.phr-rates__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.phr-rates__text-col {
    flex: 1 1 58%;
}

.phr-rates__text {
    margin: 0 0 16px 0;
    line-height: 1.6;
    color: #343943;
}

.phr-rates__list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.phr-rates__list-item {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    line-height: 1.55;
}

.phr-rates__dot {
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #17a35e;
}

/* image */
.phr-rates__image-col {
    flex: 1 1 42%;
}

.phr-rates__image-wrap {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
}

.phr-rates__image {
    display: block;
    width: 100%;
    height: auto;
}

/* responsive */
@media (max-width: 1024px) {
    .phr-rates__banner {
        padding: 26px 20px;
    }

    .phr-rates__banner-title {
        font-size: 24px;
    }

    .phr-rates__content {
        padding-top: 40px;
        padding-bottom: 50px;
    }
}

@media (max-width: 860px) {
    .phr-rates__inner {
        flex-direction: column;
        gap: 28px;
    }

    .phr-rates__text-col,
    .phr-rates__image-col {
        flex: 0 0 auto;
        width: 100%;
    }

    .phr-rates__banner-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 600px) {
    .phr-rates__banner {
        padding: 22px 16px;
    }

    .phr-rates__banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .phr-rates__banner-title {
        margin-left: 0;
        font-size: 22px;
    }

    .phr-rates__content {
        padding: 34px 16px 44px 16px;
    }

    .phr-rates__text {
        font-size: 17px;
    }
}

.phq-faq {
    padding: 70px 20px 80px 20px;
    background: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #1f232b;
}

.phq-faq__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.phq-faq__title {
    margin: 0 0 40px 0;
    text-align: center;
    font-size: 34px;
    font-weight: 700;
}

.phq-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 36px;
}

.phq-faq__col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.phq-faq__item {
    background: #009246;
    color: #ffffff;
}

.phq-faq__question {
    width: 100%;
    padding: 18px 20px;
    border: none;
    outline: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
}

.phq-faq__icon {
    font-size: 14px;
}

.phq-faq__answer {
    display: none;
    padding: 18px 24px 20px 24px;
    background: #fff7eb;
    color: #343845;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.phq-faq__answer p {
    margin: 0;
}

/* открытый элемент */
.phq-faq__item--open .phq-faq__answer {
    display: block;
}

.phq-faq__item--open .phq-faq__icon {
    transform: rotate(0deg);
}

/* по умолчанию иконка вправо, в открытом состоянии — вниз */
.phq-faq__item .phq-faq__icon {
    transition: transform 0.15s ease;
}

/* responsive */
@media (max-width: 900px) {
    .phq-faq__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .phq-faq {
        padding: 50px 16px 60px 16px;
    }

    .phq-faq__title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .phq-faq__question {
        padding: 16px 16px;
    }

    .phq-faq__answer {
        padding: 16px 18px 18px 18px;
    }
}

.phc-contact {
    padding: 60px 20px 80px 20px;
    background: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #1f2229;
}

.phc-contact__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* LEFT COLUMN */
.phc-contact__info {
    flex: 0 0 34%;
}

.phc-contact__title {
    margin: 0 0 14px 0;
    font-size: 28px;
    font-weight: 700;
}

.phc-contact__text {
    margin: 0 0 20px 0;
    color: #444a57;
    line-height: 1.55;
}

.phc-contact__card {
    border-radius: 6px;
    border: 1px solid #e2e4ec;
    background: #f8fafc;
    padding: 18px 18px 10px 18px;
    margin-bottom: 16px;
}

.phc-contact__line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.phc-contact__icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0ea35515;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phc-contact__icon {
    font-size: 16px;
    color: #0ea355;
}

.phc-contact__line-text {
    flex: 1;
}

.phc-contact__label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #7a8190;
    margin-bottom: 2px;
}

.phc-contact__value {
    font-size: 16px;
    color: #252934;
    text-decoration: none;
}

.phc-contact__value a {
    color: inherit;
}

.phc-contact__note {
    margin: 0;
    font-size: 16px;
    color: #565d6b;
}

/* RIGHT COLUMN (FORM) */
.phc-contact__form-wrap {
    flex: 0 0 66%;
}

.phc-contact__form {
    width: 100%;
}

.phc-contact__row {
    display: flex;
    gap: 24px;
    margin-bottom: 18px;
}

.phc-contact__row--two .phc-contact__field {
    flex: 1 1 50%;
}

.phc-contact__row--three .phc-contact__field {
    flex: 1 1 33.33%;
}

.phc-contact__field {
    width: 100%;
}

.phc-contact__label {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    color: #444a57;
}

.phc-contact__input,
.phc-contact__select,
.phc-contact__textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border-radius: 3px;
    border: 1px solid #d8dbe5;
    background: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #252934;
    outline: none;
}

.phc-contact__input:focus,
.phc-contact__select:focus,
.phc-contact__textarea:focus {
    border-color: #ff6b2b;
    box-shadow: 0 0 0 1px rgba(255, 107, 43, 0.2);
}

.phc-contact__textarea {
    resize: vertical;
    min-height: 160px;
}

.phc-contact__submit {
    padding: 14px 42px;
    border-radius: 4px;
    border: none;
    background: #ff6b2b;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    box-shadow: 0 16px 32px rgba(255, 107, 43, 0.45);
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.phc-contact__submit:hover {
    background: #ff5a1b;
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(255, 107, 43, 0.55);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .phc-contact {
        padding-top: 50px;
        padding-bottom: 70px;
    }

    .phc-contact__inner {
        gap: 32px;
    }
}

@media (max-width: 860px) {
    .phc-contact__inner {
        flex-direction: column;
    }

    .phc-contact__info,
    .phc-contact__form-wrap {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .phc-contact {
        padding: 42px 16px 56px 16px;
    }

    .phc-contact__row,
    .phc-contact__row--two,
    .phc-contact__row--three {
        flex-direction: column;
        gap: 12px;
    }

    .phc-contact__submit {
        width: 100%;
        text-align: center;
    }
}

.php-privacy {
    padding: 60px 20px 80px 20px;
    background: #f5f7fb;
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #1f2734;
}

.php-privacy__inner {
    max-width: 1180px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px 40px 48px 40px;
    box-sizing: border-box;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.php-privacy__head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.php-privacy__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e0e8f3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.php-privacy__icon {
    font-size: 26px;
    color: #315a8c;
}

.php-privacy__titles {
    flex: 1 1 auto;
}

.php-privacy__title {
    margin: 0;
    font-size: 34px;
    font-weight: 700;
    color: #233856;
}

.php-privacy__content {
    margin-top: 10px;
}

.php-privacy__text {
    margin: 0 0 14px 0;
    line-height: 1.7;
    color: #374256;
}

.php-privacy__subtitle {
    margin: 26px 0 12px 0;
    font-size: 20px;
    font-weight: 700;
    color: #233856;
}

/* responsive */
@media (max-width: 960px) {
    .php-privacy__inner {
        padding: 32px 24px 40px 24px;
    }

    .php-privacy__title {
        font-size: 30px;
    }
}

@media (max-width: 640px) {
    .php-privacy {
        padding: 40px 16px 56px 16px;
    }

    .php-privacy__inner {
        padding: 26px 18px 32px 18px;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    }

    .php-privacy__head {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .php-privacy__title {
        font-size: 24px;
        line-height: 1.3;
    }

    .php-privacy__text {
        font-size: 17px;
    }
}

.ckb-cookie {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(14, 17, 25, 0.96);
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1.5;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.35);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.ckb-cookie--visible {
    transform: translateY(0);
    opacity: 1;
}

.ckb-cookie__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-sizing: border-box;
}

.ckb-cookie__text {
    flex: 1 1 auto;
}

.ckb-cookie__title {
    display: block;
    margin-bottom: 4px;
    font-weight: 700;
}

.ckb-cookie__description {
    margin: 0;
    color: #e4e7f0;
}

.ckb-cookie__actions {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.ckb-cookie__link {
    display: inline-block;
    padding: 8px 10px;
    color: #b8c4ff;
    text-decoration: underline;
    font-size: 16px;
}

.ckb-cookie__button {
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    background: #ff6b2b;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(255, 107, 43, 0.4);
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.ckb-cookie__button:hover {
    background: #ff5a1b;
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(255, 107, 43, 0.5);
}

/* responsive */
@media (max-width: 768px) {
    .ckb-cookie__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 16px 16px 16px;
    }

    .ckb-cookie__actions {
        width: 100%;
        justify-content: flex-start;
    }

    .ckb-cookie__button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width:767px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}