@charset "utf-8";
/* CSS Document */


/* Calendly styling */
.booking-options {
    width: min(1200px, calc(100% - 40px));
    margin: 70px auto 90px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.booking-option {
    position: relative;
    min-height: 190px;
    padding: 30px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;

    color: #111;
    text-decoration: none;

    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 28px;

    box-shadow: 0 18px 45px rgba(20, 35, 45, 0.06);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.booking-option:hover {
    transform: translateY(-4px);
    border-color: #b8cedd;
    box-shadow: 0 22px 50px rgba(20, 35, 45, 0.11);
}

.booking-icon {
    width: 76px;
    height: 76px;

    display: grid;
    place-items: center;

    border-radius: 22px;
    background: linear-gradient(
        135deg,
        #e6f1f8 0%,
        #f7efe7 100%
    );
}

.booking-icon svg {
    width: 34px;
    height: 34px;

    fill: none;
    stroke: #0f5f77;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.booking-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-content strong {
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.booking-content span {
    max-width: 420px;
    color: #6f6f6f;
    font-size: 16px;
    line-height: 1.5;
}

.booking-arrow {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border: 1px solid #e2e2e2;
    border-radius: 50%;

    font-size: 22px;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}

.booking-option:hover .booking-arrow {
    transform: translateX(4px);
    background: #f5f8fa;
}




.booking-option-featured {
    border-color: #9fc4d8;
    background:
        linear-gradient(
            135deg,
            rgba(232, 244, 251, 0.95) 0%,
            rgba(255, 248, 241, 0.95) 100%
        );

    animation: bookingPulse 2.8s ease-in-out infinite;
}

.booking-option-featured .booking-icon {
    background: #fff;
    box-shadow: 0 10px 28px rgba(37, 109, 137, 0.12);
}

.booking-badge {
    position: absolute;
    top: 18px;
    right: 18px;

    padding: 8px 12px;

    color: #0f5f77;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(159, 196, 216, 0.8);
    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

@keyframes bookingPulse {
    0%,
    100% {
        box-shadow:
            0 18px 45px rgba(20, 35, 45, 0.06),
            0 0 0 0 rgba(113, 174, 204, 0);
    }

    50% {
        box-shadow:
            0 22px 52px rgba(20, 35, 45, 0.11),
            0 0 0 8px rgba(113, 174, 204, 0.12);
    }
}



@media (max-width: 760px) {
    .booking-options {
        width: calc(100% - 32px);
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 44px auto 60px;
    }

    .booking-option {
        min-height: 160px;
        padding: 24px;

        grid-template-columns: auto 1fr;
        gap: 18px;

        border-radius: 24px;
    }

    .booking-icon {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }

    .booking-icon svg {
        width: 29px;
        height: 29px;
    }

    .booking-content strong {
        font-size: 22px;
    }

    .booking-arrow {
        display: none;
    }

    .booking-badge {
        top: 14px;
        right: 14px;
        font-size: 10px;
    }
}







/* Header cta buttoons */
.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-call {
    position: relative;

    min-height: 64px;
    padding: 14px 28px 14px 14px;

    display: inline-flex;
    align-items: center;
    gap: 14px;

    color: #111;
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 999px;

    font-size: 16px;
    font-weight: 700;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.btn-call:hover {
    transform: translateY(-2px);
    border-color: #bdd0dd;
    box-shadow: 0 14px 34px rgba(40, 80, 105, 0.12);
}

.call-pulse {
    position: relative;

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    color: #fff;
    background: #0f7c91;
    border-radius: 50%;
}

.call-pulse::before,
.call-pulse::after {
    content: "";
    position: absolute;
    inset: 0;

    border: 2px solid rgba(15, 124, 145, 0.38);
    border-radius: 50%;

    animation: callPulse 2s ease-out infinite;
}

.call-pulse::after {
    animation-delay: 1s;
}

.call-pulse svg {
    position: relative;
    z-index: 2;

    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes callPulse {
    0% {
        transform: scale(1);
        opacity: 0.75;
    }

    75%,
    100% {
        transform: scale(1.65);
        opacity: 0;
    }
}

@media (max-width: 600px) {
    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-call {
        width: 100%;
        justify-content: center;
    }
}






/* =========================
   MULTI STEP FORM
========================= */

#WOD_FormDiv_1_10001_Itm10 {
    width: 100%;
}

#WOD_Form_1_10001_Itm10 {
    width: 100%;
    margin: 0;
}

/* Показуємо тільки активний крок */
#WOD_Form_1_10001_Itm10 .typeform-step {
    display: none;
}

#WOD_Form_1_10001_Itm10 .typeform-step.active {
    display: block;
    animation: formStepFade 0.35s ease;
}

@keyframes formStepFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Progress bar */
#WOD_Form_1_10001_Itm10 .typeform-progress {
    width: 100%;
    height: 8px;
    margin: 45px 0 55px;

    background: #e9e9e9;
    border-radius: 999px;
    overflow: hidden;
}

#WOD_Form_1_10001_Itm10 .typeform-progress-bar {
    width: 20%;
    height: 100%;

    background: linear-gradient(
        90deg,
        #8fb5cf 0%,
        #c8ddea 100%
    );

    border-radius: inherit;
    transition: width 0.35s ease;
}

/* Заголовок питання */
#WOD_Form_1_10001_Itm10 .typeform-question {
    margin-bottom: 32px;

    color: #101010;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

/* Контейнер поля */
#WOD_Form_1_10001_Itm10 .typeform-field-wrapper {
    width: 100%;
}

/* Input + textarea */
#WOD_Form_1_10001_Itm10 .typeform-input,
#WOD_Form_1_10001_Itm10 .typeform-textarea {
    width: 100% !important;

    padding: 24px 28px;

    color: #111;
    font-family: inherit;
    font-size: 18px;
    line-height: 1.4;

    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 22px;
    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

#WOD_Form_1_10001_Itm10 .typeform-input {
    min-height: 76px;
}

#WOD_Form_1_10001_Itm10 .typeform-textarea {
    min-height: 170px;
    resize: vertical;
}

#WOD_Form_1_10001_Itm10 .typeform-input::placeholder,
#WOD_Form_1_10001_Itm10 .typeform-textarea::placeholder {
    color: #929292;
}

#WOD_Form_1_10001_Itm10 .typeform-input:focus,
#WOD_Form_1_10001_Itm10 .typeform-textarea:focus {
    border-color: #9dbed4;
    background-color: #fbfdff;
    box-shadow: 0 0 0 4px rgba(157, 190, 212, 0.18);
}

/* Кнопки */
#WOD_Form_1_10001_Itm10 .typeform-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    margin-top: 34px;
}

#WOD_Form_1_10001_Itm10 .typeform-button {
    min-width: 130px;
    min-height: 58px;

    padding: 16px 28px;

    border: 1px solid transparent;
    border-radius: 999px;

    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;

    cursor: pointer;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

/* Далі / Надіслати */
#WOD_Form_1_10001_Itm10 .typeform-button.next,
#WOD_Form_1_10001_Itm10 .typeform-button.submit {
    color: #fff;
    background: #101010;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Назад */
#WOD_Form_1_10001_Itm10 .typeform-button.prev {
    color: #111;
    background: #fff;
    border-color: #dedede;
}

#WOD_Form_1_10001_Itm10 .typeform-button:hover {
    transform: translateY(-2px);
}

#WOD_Form_1_10001_Itm10 .typeform-button.next:hover,
#WOD_Form_1_10001_Itm10 .typeform-button.submit:hover {
    background: #272727;
}

#WOD_Form_1_10001_Itm10 .typeform-button.prev:hover {
    background: #f6f6f6;
    border-color: #cfcfcf;
}

/* Submit не повинен примусово бути на всю ширину */
#WOD_Form_1_10001_Itm10 .typeform-button.submit {
    width: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

/* Помилки */
#WOD_FormDiv_1_10001_Itm10 .WOD_Form_Error {
    margin-bottom: 18px;
    color: #b42318;
    font-size: 14px;
    line-height: 1.5;
}

/* Mobile */
@media (max-width: 700px) {
    #WOD_Form_1_10001_Itm10 .typeform-progress {
        margin: 30px 0 38px;
    }

    #WOD_Form_1_10001_Itm10 .typeform-question {
        margin-bottom: 24px;
        font-size: 34px;
    }

    #WOD_Form_1_10001_Itm10 .typeform-input,
    #WOD_Form_1_10001_Itm10 .typeform-textarea {
        padding: 20px;
        border-radius: 18px;
        font-size: 16px;
    }

    #WOD_Form_1_10001_Itm10 .typeform-input {
        min-height: 66px;
    }

    #WOD_Form_1_10001_Itm10 .typeform-buttons {
        margin-top: 26px;
    }

    #WOD_Form_1_10001_Itm10 .typeform-button {
        min-width: 0;
        min-height: 54px;
        padding: 15px 22px;
    }
}











#WOD_Form_1_10001_Itm10 .typeform-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    padding-right: 64px !important;

    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 24px center;
    background-size: 18px;
}

#WOD_Form_1_10001_Itm10 .typeform-select::-ms-expand {
    display: none;
}

#WOD_Form_1_10001_Itm10 .typeform-select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 24px center;
    background-size: 18px;
}

@media (max-width: 700px) {
    #WOD_Form_1_10001_Itm10 .typeform-select {
        padding-right: 54px !important;
        background-position: right 18px center;
        background-size: 16px;
    }
}


























/* About Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;

    width: calc(100% - 40px);
    max-width: 1200px;
    margin: 42px auto 0;
}

@media (max-width: 700px) {
    .stats-grid {
        grid-template-columns: 1fr;
        width: calc(100% - 32px);
        gap: 14px;
        margin-top: 28px;
    }
}



/* Services Section */
.services-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 28px;

    display: grid;
    place-items: center;

    border-radius: 20px;
    background: linear-gradient(
        135deg,
        #f1f9ff 0%,
        #edfaff 100%
    );

    overflow: hidden;
}

.services-icon img {
    width: 100%;
    height: 100%;
    display: block;
    transform: scale(1.15);

    object-fit: contain;
    padding: 7px;
    mix-blend-mode: multiply;
}


@media (max-width: 600px) {
    .services-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 22px;
        border-radius: 18px;
    }

    .services-icon img {
        padding: 6px;
    }
}



















.reviews-slider-wrap {
  position: relative;
  margin-top: 70px;
}

.reviews-grid {
  display: flex;
  gap: 24px;

  overflow-x: auto;
  overflow-y: hidden;

  scroll-behavior: smooth;

  scrollbar-width: none;

  -webkit-overflow-scrolling: touch;

  scroll-snap-type: x mandatory;

  padding-bottom: 10px;
}

.reviews-grid::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 420px;
  max-width: 420px;

  min-height: 340px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 34px;

  border-radius: 32px;

  background: rgba(255,255,255,0.7);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(0,0,0,0.04);

  color: var(--text);

  transition: var(--transition);

  box-shadow: var(--shadow-soft);

  scroll-snap-align: start;
}

.review-card:hover {
  transform: translateY(-8px);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 18px;

  margin-bottom: 24px;
}

.review-avatar {
  width: 62px;
  height: 62px;

  border-radius: 50%;

  background: linear-gradient(
    135deg,
    var(--accent-blue),
    var(--beige)
  );

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 20px;
}

.review-top h3 {
  font-size: 20px;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.review-top span {
  color: var(--muted);
  font-size: 14px;
}

/* STARS */

.review-stars {
  display: flex;
  align-items: center;
  gap: 4px;

  margin-bottom: 22px;
}

.star {
  position: relative;

  width: 24px;
  height: 24px;

  flex-shrink: 0;
}

.star svg {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
}

.star-bg path {
  fill: rgba(0,0,0,0.08);
}

.star-fill {
  position: absolute;
  inset: 0;

  overflow: hidden;
}

.star-fill path {
  fill: #f4b400;
}

.modal-stars {
  margin-bottom: 28px;
}

/* TEXT */

.review-text {
  color: var(--muted);

  line-height: 1.8;

  display: -webkit-box;

  -webkit-line-clamp: 5;

  -webkit-box-orient: vertical;

  overflow: hidden;

  margin-bottom: 22px;
}

/* BUTTON */

.review-more {
  width: fit-content;

  border: none;

  background: transparent;

  color: var(--accent-blue-dark);

  font-weight: 600;

  cursor: pointer;

  font-size: 15px;

  padding: 0;
}

.review-more:hover {
  opacity: 0.7;
}

@media (max-width: 860px) {

  .review-card {
    min-width: 84vw;
    max-width: 84vw;
  }

}








/* FAQ */
.faq-section {
    padding: 110px 0;
}

.faq-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 80px;
    align-items: start;
}

.faq-heading {
    position: sticky;
    top: 130px;
}

.faq-heading .section-title {
    margin-top: 18px;
    max-width: 500px;
}

.faq-heading .section-text {
    max-width: 470px;
    margin-top: 24px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;

    background: rgba(255, 255, 255, 0.88);
    border: 1px solid #e7e7e7;
    border-radius: 24px;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease,
        background-color 0.25s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: #c3d4df;
    box-shadow: 0 16px 38px rgba(45, 76, 96, 0.08);
}

.faq-item.active {
    border-color: #aac7d8;
    background:
        linear-gradient(
            135deg,
            rgba(239, 247, 251, 0.96) 0%,
            rgba(255, 249, 243, 0.96) 100%
        );
    box-shadow: 0 18px 42px rgba(45, 76, 96, 0.09);
}

.faq-question {
    width: 100%;
    padding: 27px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    color: #111;
    background: transparent;
    border: 0;

    font-family: inherit;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;

    cursor: pointer;
}

.faq-icon {
    position: relative;
    flex: 0 0 auto;

    width: 42px;
    height: 42px;

    border: 1px solid #dfe6ea;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);

    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;

    width: 14px;
    height: 2px;

    background: #111;
    border-radius: 999px;

    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: #fff;
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;

    transition: grid-template-rows 0.4s ease;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer p {
    margin: 0;
    padding: 0 84px 30px 30px;

    color: #666;
    font-size: 16px;
    line-height: 1.7;
}


@media (max-width: 850px) {
    .faq-section {
        padding: 75px 0;
    }

    .faq-container {
        width: calc(100% - 32px);
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .faq-heading {
        position: static;
    }

    .faq-question {
        padding: 22px;
        gap: 16px;
        font-size: 18px;
    }

    .faq-icon {
        width: 38px;
        height: 38px;
    }

    .faq-answer p {
        padding: 0 22px 24px;
        font-size: 15px;
    }
}















/* FOOTER */
.footer-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;

    padding-top: 28px;
    border-top: 1px solid #e8e8e8;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;

    color: #6d6d6d;
    font-size: 14px;
    line-height: 1.5;
}

.privacy-link {
    width: fit-content;
    color: #6d6d6d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.privacy-link:hover {
    color: #111;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-link {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    color: #111;
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 50%;

    text-decoration: none;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    background: #f4f7f9;
    border-color: #cbd9e2;
}



@media (max-width: 700px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .footer-socials {
        width: 100%;
    }
}
















