@charset "UTF-8";
/** */
/* Theme Name: Afirmacje */
/* Theme URI: https://afirmacje.local */
/* Author: Michał Brania */
/* Author URI: https://afirmacje.local */
/* Description: Niestandardowy motyw WordPress dla serwisu Afirmacje */
/* Version: 1.0.0 */
/* Requires at least: 6.0 */
/* Tested up to: 6.5 */
/* Requires PHP: 7.4 */
/* License: GNU General Public License v2 or later */
/* License URI: http://www.gnu.org/licenses/gpl-2.0.html */
/* Text Domain: afirmacje */
/* Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready */
/* Reset & Base Styles */
@font-face {
  font-family: "Cabinet Grotesk";
  src: url("./assets/fonts/CabinetGrotesk-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aptos";
  src: url("./assets/fonts/Aptos.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aptos";
  src: url("./assets/fonts/Aptos-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  padding: 0;
  margin: 0;
  font-family: "Aptos", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--fontBodyColor);
  box-sizing: border-box;
}

:root {
  --primaryColor: rgba(106, 158, 181, 1);
  --secondaryColor: rgba(184, 154, 126, 1);
  --whiteColor: rgba(249, 247, 246, 1);
  --fontBodyColor: #525252;
  --headerFont: 'Cabinet Grotesk';
  --bodyFont: 'Aptos', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transitionBase: 0.3s ease-in-out;
  --transitionFast: 0.15s ease-in-out;
  --borderRadius: 8px;
  --sidePadding: 1rem;
}
@media (min-width: 1024px) {
  :root {
    --sidePadding: 5rem;
  }
}
@media (min-width: 1366px) {
  :root {
    --sidePadding: 10rem;
  }
}
@media (min-width: 1920px) {
  :root {
    --sidePadding: 15rem;
  }
}

.a-button {
  border-radius: 18px;
  padding: 1.15rem 1.35rem;
  font-family: Aptos;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.5px;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
}
.a-button:hover {
  cursor: pointer;
}
.a-button.--primary {
  background: var(--primaryColor);
  color: #fff;
}
.a-button.--secondary {
  background: var(--secondaryColor);
  color: #fff;
}
.a-button.--ghost {
  background: transparent;
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
}

.a-section__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.a-section__title {
  font-family: var(--headerFont);
  font-weight: 700;
  font-size: 4rem;
  line-height: 56px;
  letter-spacing: -0.5px;
  text-align: center;
  color: var(--primaryColor);
}
.a-section__title.--configurator {
  text-transform: uppercase;
  font-weight: 900;
}
.a-section__text {
  font-size: 1.25rem;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: var(--fontBodyColor);
  max-width: 650px;
  text-align: center;
}

.m-homeProductCard {
  width: min(100%, 550px);
  min-height: 430px;
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  position: absolute;
  gap: 1rem;
  left: 50%;
  top: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.28));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 38px rgba(52, 63, 74, 0.18);
  transform: translateX(-50%) scale(0.72) translateY(90px);
  opacity: 0;
  filter: saturate(0.65) blur(1px);
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.45s ease, filter 0.45s ease, box-shadow 0.45s ease;
  pointer-events: none;
}
@media (max-width: 767px) {
  .m-homeProductCard {
    min-height: auto;
    width: 100%;
    position: static;
    transform: none;
    opacity: 1;
    filter: none;
    pointer-events: auto;
  }
}
@media (min-width: 1024px) {
  .m-homeProductCard.is-current-level {
    transform: translateX(-50%) scale(1) translateY(0);
    opacity: 1;
    filter: saturate(1) blur(0);
    box-shadow: 0 26px 60px rgba(52, 63, 74, 0.28);
    z-index: 3;
    pointer-events: auto;
  }
  .m-homeProductCard.is-prev-level {
    transform: translateX(-118%) scale(0.84) translateY(62px);
    opacity: 0.56;
    filter: saturate(0.75) blur(0.2px);
    z-index: 1;
    pointer-events: auto;
  }
  .m-homeProductCard.is-next-level {
    transform: translateX(18%) scale(0.9) translateY(34px);
    opacity: 0.72;
    filter: saturate(0.88) blur(0.1px);
    z-index: 2;
    pointer-events: auto;
    z-index: 2;
  }
}
.m-homeProductCard__title {
  font-family: var(--headerFont);
  font-size: 2rem;
  line-height: 1.1;
  color: var(--fontBodyColor);
  text-align: center;
}
.m-homeProductCard__price {
  margin-top: 1rem;
  font-family: var(--headerFont);
  text-align: center;
  color: var(--primaryColor);
}
.m-homeProductCard__price .woocommerce-Price-amount {
  font-size: 3rem;
  line-height: 1;
  color: var(--primaryColor);
}
.m-homeProductCard__price bdi {
  color: inherit;
}
.m-homeProductCard__price .woocommerce-Price-currencySymbol {
  color: inherit;
}
.m-homeProductCard__text {
  margin-top: 0.7rem;
  text-align: center;
  line-height: 1.4;
}
.m-homeProductCard__features {
  margin-top: 1.6rem;
}
.m-homeProductCard__features ul, .m-homeProductCard__features ol {
  list-style: none;
}
.m-homeProductCard__features li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.m-homeProductCard__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primaryColor);
  font-weight: 700;
}
.m-homeProductCard__button {
  margin-top: auto;
  width: 100%;
  text-decoration: none;
}

.m-productCard {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  padding: 3rem;
  border-radius: 16px;
  border: 2px solid transparent;
  transition: border-color var(--transitionBase);
}
.m-productCard.is-selected {
  border-color: var(--primaryColor);
}
.m-productCard__title {
  font-family: var(--headerFont);
  font-size: 2rem;
  line-height: 1.1;
  color: var(--fontBodyColor);
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}
.m-productCard__price {
  font-family: var(--headerFont);
  font-weight: 900;
  text-align: center;
  color: var(--primaryColor);
  margin-top: 1rem;
}
.m-productCard__price .woocommerce-Price-amount {
  font-size: 3rem;
  line-height: 1;
  color: var(--primaryColor);
}
.m-productCard__price bdi {
  color: inherit;
  font-family: var(--headerFont);
}
.m-productCard__price .woocommerce-Price-currencySymbol {
  color: inherit;
}
.m-productCard__text {
  margin-top: 0.7rem;
  text-align: center;
  line-height: 1.4;
}
.m-productCard__features {
  margin-top: 1.6rem;
}
.m-productCard__features ul, .m-productCard__features ol {
  list-style: none;
}
.m-productCard__features li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.m-productCard__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primaryColor);
  font-weight: 700;
}
.m-productCard__button {
  margin-top: auto;
  width: 100%;
  text-decoration: none;
}

.o-hero {
  height: 100%;
  width: 100%;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 200px;
  padding-left: 86px;
  padding-right: 86px;
  padding-bottom: 3rem;
  border-bottom-right-radius: 64px;
  border-bottom-left-radius: 64px;
}
@media (min-width: 1024px) {
  .o-hero__content {
    max-width: 70%;
  }
}
@media (min-width: 1366px) {
  .o-hero__content {
    max-width: 50%;
  }
}
.o-hero__title {
  font-family: var(--headerFont);
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  font-size: 3rem;
  color: #fff;
}
@media (min-width: 1024px) {
  .o-hero__title {
    font-size: 5rem;
  }
}
@media (min-width: 1366px) {
  .o-hero__title {
    font-size: 128px;
    line-height: 123px;
  }
}
.o-hero__subtitle {
  font-family: var(--bodyFont);
  font-weight: 400;
  font-style: italic;
  font-size: 1rem;
  line-height: 33px;
  letter-spacing: -0.5px;
  color: #fff;
}
@media (min-width: 1024px) {
  .o-hero__subtitle {
    font-size: 1.5rem;
  }
}
@media (min-width: 1366px) {
  .o-hero__subtitle {
    font-size: 2rem;
    line-height: 33px;
  }
}
.o-hero__buttonWrapper {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 4rem;
}
.o-hero__button.--secondary {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.o-feature {
  padding: 5rem 0 10rem;
}
.o-feature__list {
  display: flex;
  gap: 3rem;
  max-width: 1280px;
  margin: 4.5rem auto 0;
}
.o-feature__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex: 1 1;
}
.o-feature__title {
  font-family: var(--headerFont);
  color: var(--primaryColor);
  font-size: 1.5rem;
  line-height: 32px;
  font-weight: bold;
  letter-spacing: -0.5;
  text-align: center;
}
.o-feature__text {
  text-align: center;
}

.o-howItWorks {
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .o-howItWorks {
    margin-top: 4rem;
  }
}
.o-howItWorks__card {
  padding: 5rem;
  position: relative;
  border-top-right-radius: 64px;
  border-top-left-radius: 64px;
  min-height: 700px;
}
@media (min-width: 1680px) {
  .o-howItWorks__card {
    padding: 10rem 5rem;
  }
}
.o-howItWorks__card:nth-child(1) {
  background: rgb(106, 158, 181);
}
.o-howItWorks__card:nth-child(1)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/images/clouds.png") no-repeat center/cover;
  opacity: 0.2;
  pointer-events: none;
}
.o-howItWorks__card:nth-child(2) {
  transform: translateY(-100px);
  background: url("./assets/images/step2_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.o-howItWorks__card:nth-child(3) {
  transform: translateY(-200px);
  background: url("./assets/images/step3_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: 1rem;
}
@media (min-width: 1024px) {
  .o-howItWorks__card:nth-child(3) {
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
  }
}
.o-howItWorks__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  row-gap: 10rem;
  counter-reset: step-counter;
  position: relative;
}
.o-howItWorks__divider {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background: #fff;
}
.o-howItWorks__step {
  counter-increment: step-counter;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  width: 100%;
}
.o-howItWorks__step::before {
  content: counter(step-counter);
  position: absolute;
  top: -1.25rem;
  left: -2.5rem;
  font-size: 3rem;
  color: #fff;
}
.o-howItWorks__step:nth-child(1) {
  grid-column: 1/span 1;
}
.o-howItWorks__step:nth-child(2) {
  grid-column: 3/span 1;
}
.o-howItWorks__step:nth-child(3) {
  grid-column: 2/span 1;
}
.o-howItWorks__step:nth-child(4) {
  grid-column: 4/span 4;
}
.o-howItWorks__stepTitle {
  color: #fff;
  font-size: 1.5rem;
  line-height: 100%;
  letter-spacing: -5%;
}
.o-howItWorks__stepText {
  color: #fff;
  font-size: 1rem;
  line-height: 100%;
}
.o-howItWorks__testimonialTitle {
  font-family: var(--headerFont);
  font-weight: 900;
  font-size: 128px;
  line-height: 60px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: #fff;
}
.o-howItWorks__testimonialSubtitle {
  font-family: var(--headerFont);
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: #fff;
  transform: translateX(300px);
  margin-top: 2rem;
}
.o-howItWorks__sampleLabel {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.75rem;
  padding: 0.5rem 1.25rem;
}
.o-howItWorks__sampleTitle {
  font-family: var(--headerFont);
  font-weight: 800;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: -0.5px;
  color: #fff;
}
.o-howItWorks__sampleText {
  font-family: var(--bodyFont);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.5px;
  color: #fff;
  margin-top: 1rem;
  max-width: 435px;
}

.o-soundPlayer {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 1.25rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.o-soundPlayer__cover {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: url("./assets/images/clouds.png") center/cover no-repeat;
  overflow: hidden;
}
.o-soundPlayer__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.45) 100%);
}
.o-soundPlayer__trackTitle {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  z-index: 1;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.o-soundPlayer__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1rem 1.5rem 1.5rem;
}
.o-soundPlayer__progress {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.o-soundPlayer__time {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  white-space: nowrap;
  min-width: 2.5rem;
}
.o-soundPlayer__scrubber {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  flex: 1;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.25);
  outline: none;
  cursor: pointer;
}
.o-soundPlayer__scrubber::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.o-soundPlayer__scrubber::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.o-soundPlayer__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.o-soundPlayer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  color: #fff;
}
.o-soundPlayer__btn svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}
.o-soundPlayer__btn:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.2);
}
.o-soundPlayer__btn:active {
  transform: scale(0.95);
}
.o-soundPlayer__btn--play {
  width: 68px;
  height: 68px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.o-soundPlayer__btn--play svg {
  width: 28px;
  height: 28px;
  margin-left: 3px;
}
.o-soundPlayer__btn--play:hover {
  background: rgba(255, 255, 255, 0.32);
}

.o-homeProducts {
  margin-top: 3rem;
  padding: 2.5rem 0 1rem;
  position: relative;
  overflow: hidden;
}
.o-homeProducts::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(106, 158, 181, 0.22), transparent 60%), radial-gradient(circle at 0% 80%, rgba(184, 154, 126, 0.18), transparent 42%);
  pointer-events: none;
}
.o-homeProducts__list {
  margin: 3rem auto 0;
  max-width: 1180px;
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  perspective: 1100px;
  pointer-events: auto;
}
@media (max-width: 767px) {
  .o-homeProducts__list {
    gap: 1rem;
    padding: 1rem;
  }
}
.o-homeProducts__item.is-hidden-level {
  transform: translateX(-50%) scale(0.72) translateY(90px);
  opacity: 0;
  z-index: 0;
}
.o-homeProducts__dots {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
}
.o-homeProducts__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(106, 158, 181, 0.35);
  transition: transform 0.25s ease, background 0.25s ease;
  cursor: pointer;
}
.o-homeProducts__dot.is-active {
  transform: scale(1.35);
  background: var(--primaryColor);
}
@media (min-width: 768px) {
  .o-homeProducts__list {
    overflow: visible;
  }
}
@media (max-width: 767px) {
  .o-homeProducts__item {
    display: none;
  }
  .o-homeProducts__item.is-current-level {
    display: flex;
  }
  .o-homeProducts__dots {
    margin-top: 1rem;
  }
}
@media (min-width: 1024px) {
  .o-homeProducts__item.is-prev-level {
    transform: translateX(-116%) scale(0.84) translateY(62px);
  }
  .o-homeProducts__item.is-next-level {
    transform: translateX(16%) scale(0.9) translateY(34px);
  }
}
@media (min-width: 1366px) {
  .o-homeProducts__item.is-prev-level {
    transform: translateX(-122%) scale(0.84) translateY(62px);
  }
  .o-homeProducts__item.is-next-level {
    transform: translateX(22%) scale(0.9) translateY(34px);
  }
}
@media (max-width: 767px) {
  .o-homeProducts__list {
    margin-top: 2rem;
    min-height: 470px;
  }
}

.o-configurator {
  padding: 2rem var(--sidePadding) 4rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: rgb(249, 247, 246);
}
.o-configurator__header {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}
.o-configurator__title {
  font-family: var(--headerFont);
  font-weight: 700;
  font-size: 3rem;
  line-height: 56px;
  letter-spacing: -0.5px;
  text-align: center;
  color: var(--primaryColor);
  text-transform: uppercase;
  font-weight: 900;
}
@media (min-width: 1024px) {
  .o-configurator__title {
    font-size: 4rem;
    line-height: 64px;
    text-align: left;
    max-width: 80%;
  }
}
.o-configurator__progress {
  margin-bottom: 3rem;
}
.o-configurator__steps {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}
@media (max-width: 767px) {
  .o-configurator__steps {
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .o-configurator__steps::-webkit-scrollbar {
    display: none;
  }
}
.o-configurator__step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 12px;
  transition: all var(--transitionBase);
  white-space: nowrap;
}
.o-configurator__step:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.o-configurator__step:not(:disabled):hover {
  background: rgba(106, 158, 181, 0.08);
}
.o-configurator__step.is-active {
  opacity: 1;
}
.o-configurator__step.is-active .o-configurator__stepNumber {
  background: var(--primaryColor);
  color: #fff;
}
.o-configurator__step.is-completed .o-configurator__stepNumber {
  background: var(--secondaryColor);
  color: #fff;
}
@media (max-width: 767px) {
  .o-configurator__step {
    padding: 0.5rem 0.75rem;
  }
}
.o-configurator__stepNumber {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--headerFont);
  font-weight: 700;
  font-size: 0.875rem;
  background: rgba(106, 158, 181, 0.15);
  color: var(--primaryColor);
  transition: all var(--transitionBase);
  flex-shrink: 0;
}
.o-configurator__stepLabel {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fontBodyColor);
  transition: color var(--transitionBase);
}
@media (max-width: 767px) {
  .o-configurator__stepLabel {
    display: none;
  }
}
.o-configurator__progressBar {
  margin-top: 1rem;
  height: 4px;
  background: rgba(106, 158, 181, 0.12);
  border-radius: 2px;
  overflow: hidden;
}
.o-configurator__progressFill {
  height: 100%;
  background: linear-gradient(90deg, var(--primaryColor), var(--secondaryColor));
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.o-configurator__content {
  flex: 1;
}
.o-configurator__panel {
  display: none;
  flex-direction: column;
  gap: 3rem;
}
.o-configurator__panel.is-active {
  display: flex;
}
.o-configurator__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(106, 158, 181, 0.12);
}
@media (max-width: 767px) {
  .o-configurator__nav {
    flex-direction: column-reverse;
    gap: 1rem;
  }
}
.o-configurator__navBtn {
  color: var(--primaryColor);
}
.o-configurator__navBtn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.o-configurator__navBtn--prev {
  color: var(--primaryColor);
}
@media (max-width: 767px) {
  .o-configurator__navBtn {
    width: 100%;
  }
}

.o-configurator__products {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .o-configurator__products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.o-configurator__panel--split.is-active {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .o-configurator__panel--split.is-active {
    grid-template-columns: 1fr 1fr;
  }
}
.o-configurator__panelForm {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.o-configurator__panelImage {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 200px;
}
@media (min-width: 1024px) {
  .o-configurator__panelImage {
    min-height: 400px;
  }
}
.o-configurator__sideImage {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.o-configurator__sideImagePlaceholder {
  width: 100%;
  height: 100%;
  max-height: 200px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(106, 158, 181, 0.15) 0%, rgba(184, 154, 126, 0.15) 100%);
}
@media (min-width: 1024px) {
  .o-configurator__sideImagePlaceholder {
    min-height: 400px;
  }
}
.o-configurator__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.o-configurator__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.o-configurator__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primaryColor);
}
.o-configurator__input {
  padding: 1rem 1.25rem;
  border: 1px solid rgba(106, 158, 181, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--bodyFont);
  background: #fff;
  color: var(--fontBodyColor);
  transition: border-color var(--transitionBase);
  outline: none;
  width: 100%;
}
.o-configurator__input::-moz-placeholder {
  color: rgba(82, 82, 82, 0.4);
}
.o-configurator__input::placeholder {
  color: rgba(82, 82, 82, 0.4);
}
.o-configurator__input:focus {
  border-color: var(--primaryColor);
}
.o-configurator__input--phone {
  border-left: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.o-configurator__phoneWrapper {
  display: flex;
  align-items: stretch;
}
.o-configurator__phoneSelect {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: flex;
  align-items: center;
  padding: 1rem;
  background: #fff;
  border: 1px solid rgba(106, 158, 181, 0.2);
  border-right: none;
  border-radius: 12px 0 0 12px;
  font-size: 0.9rem;
  font-family: var(--bodyFont);
  color: var(--fontBodyColor);
  cursor: pointer;
  outline: none;
  white-space: nowrap;
}
.o-configurator__phoneSelect:focus {
  border-color: var(--primaryColor);
}

.m-step3__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .m-step3__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.m-step3__topic {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(106, 158, 181, 0.2);
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--bodyFont);
  font-size: 1rem;
  color: var(--fontBodyColor);
  transition: border-color var(--transitionBase), background var(--transitionBase);
  text-align: left;
}
.m-step3__topic:hover {
  border-color: var(--primaryColor);
}
.m-step3__topic.is-selected {
  border-color: var(--primaryColor);
  background: rgba(106, 158, 181, 0.08);
}
.m-step3__topic.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.m-step3__topic.is-disabled:hover {
  border-color: rgba(106, 158, 181, 0.2);
}
.m-step3__check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(106, 158, 181, 0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transitionBase);
}
.is-selected .m-step3__check {
  border-color: var(--primaryColor);
  background: var(--primaryColor);
}
.is-selected .m-step3__check::after {
  content: "✓";
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}
.m-step3__topicLabel {
  font-weight: 500;
}

.m-step4__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .m-step4__layout {
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
  }
}
.m-step4__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.m-step4__option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(106, 158, 181, 0.2);
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--bodyFont);
  font-size: 1rem;
  color: var(--fontBodyColor);
  transition: border-color var(--transitionBase), background var(--transitionBase);
  text-align: left;
}
.m-step4__option:hover {
  border-color: var(--primaryColor);
}
.m-step4__option.is-selected {
  border-color: var(--primaryColor);
  background: rgba(106, 158, 181, 0.08);
}
.m-step4__radio {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(106, 158, 181, 0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transitionBase);
}
.is-selected .m-step4__radio {
  border-color: var(--primaryColor);
  background: var(--primaryColor);
}
.is-selected .m-step4__radio::after {
  content: "✓";
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}
.m-step4__optionLabel {
  font-weight: 500;
}
.m-step4__players {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.m-step4__player {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(106, 158, 181, 0.06);
  border: 1px solid rgba(106, 158, 181, 0.12);
  border-radius: 12px;
  transition: border-color var(--transitionBase), background var(--transitionBase);
}
.m-step4__player.is-active {
  border-color: var(--primaryColor);
  background: rgba(106, 158, 181, 0.1);
}
.m-step4__playBtn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--primaryColor);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transitionBase), transform var(--transitionBase);
}
.m-step4__playBtn:hover {
  background: #5a8ea5;
  transform: scale(1.05);
}
.m-step4__playBtn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.m-step4__waveform {
  flex: 1;
  position: relative;
  height: 48px;
  overflow: hidden;
}
.m-step4__waveSvg {
  width: 100%;
  height: 100%;
}
.m-step4__wavePath--bg {
  fill: none;
  stroke: rgba(106, 158, 181, 0.2);
  stroke-width: 1.5;
  stroke-linecap: round;
}
.m-step4__wavePath--fill {
  fill: none;
  stroke: var(--primaryColor);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  transition: stroke-dashoffset 0.1s linear;
}
.m-step4__waveProgress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: rgba(106, 158, 181, 0.08);
  border-radius: 4px;
  transition: width 0.1s linear;
}
.m-step4__audio {
  display: none;
}

.o-configurator__subtitle {
  font-size: 1rem;
  color: var(--fontBodyColor);
  margin-top: 0.5rem;
  max-width: 520px;
  line-height: 1.6;
}

.o-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .o-packages {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (min-width: 768px) {
  .o-packages {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .o-packages {
    grid-template-columns: repeat(3, 1fr);
  }
}
.o-packages__card {
  cursor: pointer;
  position: relative;
}
.o-packages__radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.o-packages__cardInner {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem 1.5rem;
  border-radius: 24px;
  border: 2px solid rgba(106, 158, 181, 0.15);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.35));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  height: 100%;
  position: relative;
}
.o-packages__cardInner:hover {
  border-color: rgba(106, 158, 181, 0.4);
  box-shadow: 0 12px 32px rgba(52, 63, 74, 0.1);
  transform: translateY(-4px);
}
.o-packages__radio:checked + .o-packages__cardInner {
  border-color: var(--primaryColor);
  box-shadow: 0 16px 48px rgba(106, 158, 181, 0.2), inset 0 0 0 1px rgba(106, 158, 181, 0.15);
  background: linear-gradient(160deg, rgba(106, 158, 181, 0.08), rgba(255, 255, 255, 0.5));
}
.o-packages__radio:checked + .o-packages__cardInner .o-packages__check {
  opacity: 1;
  transform: scale(1);
}
.o-packages__radio:checked + .o-packages__cardInner .o-packages__select {
  background: var(--secondaryColor);
}
.o-packages__check {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primaryColor);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.o-packages__name {
  font-family: var(--headerFont);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #2d4b60;
  padding-right: 2.5rem;
}
.o-packages__price {
  margin-top: 0.75rem;
}
.o-packages__price .woocommerce-Price-amount {
  font-family: var(--headerFont);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primaryColor);
}
.o-packages__price .woocommerce-Price-currencySymbol {
  font-size: 1.25rem;
}
.o-packages__price del {
  opacity: 0.4;
  font-size: 0.875rem;
}
.o-packages__price del .woocommerce-Price-amount {
  font-size: 1rem;
}
.o-packages__price ins {
  text-decoration: none;
}
.o-packages__desc {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--fontBodyColor);
}
.o-packages__desc p {
  margin: 0;
}
.o-packages__features {
  margin-top: 1.25rem;
  list-style: none;
  flex: 1;
}
.o-packages__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--fontBodyColor);
}
.o-packages__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primaryColor);
  font-weight: 700;
}
.o-packages__select {
  margin-top: 1.5rem;
  width: 100%;
  transition: all var(--transitionBase);
  display: block;
}
.o-packages__empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 3rem;
  color: var(--fontBodyColor);
  font-size: 1.1rem;
}

.o-homeGift {
  display: flex;
  flex-direction: column;
  place-content: center;
  place-items: center;
  gap: 1.5rem;
  padding: 2rem 1rem;
}
@media (min-width: 1024px) {
  .o-homeGift {
    padding: 2rem 5rem;
  }
}
.o-homeGift__image {
  max-width: 250px;
  margin: 0 auto;
}

.o-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  top: 1.5rem;
  left: 1rem;
  right: 1rem;
  background: linear-gradient(90deg, rgba(242, 247, 255, 0.44) 0%, rgba(225, 234, 249, 0.24) 100%);
  transition: transform var(--transitionBase), opacity var(--transitionBase);
  border-radius: 16px;
  padding: 0 3rem;
  gap: 3rem;
  border: 1px solid #fff;
}
.o-header.--is-hidden {
  transform: translateY(calc(-100% - 2rem));
  opacity: 0;
  pointer-events: none;
}
.o-header__logo {
  width: 120px;
  height: 69px;
  -o-object-fit: contain;
     object-fit: contain;
}
.o-header__menu {
  display: flex;
  gap: 3rem;
  list-style-type: none;
}
.o-header__menu a {
  font-size: 1rem;
  text-decoration: none;
  color: rgb(82, 82, 82);
}
.o-header__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}
.o-header__link {
  font-size: 1rem;
  text-decoration: none;
  color: rgb(82, 82, 82);
}
.o-header__link.--button {
  min-width: 150px;
  padding: 1rem 3rem;
}
.o-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.o-header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fontBodyColor);
  border-radius: 2px;
  transition: all var(--transitionBase);
}
.o-header__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.o-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.o-header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 767px) {
  .o-header__hamburger {
    display: flex;
  }
}
.o-header__drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80vw;
  max-width: 320px;
  background: rgba(249, 247, 246, 0.98);
  backdrop-filter: blur(12px);
  transform: translateX(100%);
  transition: transform var(--transitionBase);
  z-index: 9999;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .o-header__drawer {
    display: block;
  }
}
.o-header__drawer.is-open {
  transform: translateX(0);
}
.o-header__drawerInner {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  height: 100%;
  gap: 2rem;
}
.o-header__drawerClose {
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--fontBodyColor);
  line-height: 1;
  padding: 0;
}
.o-header__drawerMenu {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.o-header__drawerMenu a {
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--fontBodyColor);
  font-weight: 500;
}
.o-header__drawerActions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
}
.o-header__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9998;
}
@media (max-width: 767px) {
  .o-header__overlay.is-open {
    display: block;
  }
}
@media (max-width: 767px) {
  .o-header {
    padding: 0 1.25rem;
    gap: 1rem;
  }
  .o-header__nav {
    display: none;
  }
  .o-header__actions {
    display: none;
  }
}

.o-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 2rem 1rem;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .o-footer {
    padding: 3rem 5rem;
  }
}
.o-footer__pageName {
  color: var(--primaryColor);
}
.o-footer__title {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.o-footer__text {
  font-family: Aptos;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.5px;
  text-decoration: none;
  max-width: 500px;
}
.o-footer__text.--link {
  transition: var(--transitionBase);
  position: relative;
  align-self: flex-start;
}
.o-footer__text.--link::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--fontBodyColor);
  transition: var(--transitionBase);
}
.o-footer__text.--link:hover {
  cursor: pointer;
  transition: var(--transitionBase);
}
.o-footer__text.--link:hover::before {
  width: 100%;
}
.o-footer__column {
  display: flex;
  flex-direction: column;
}
.o-footer__column.--right {
  flex-direction: row;
  gap: 1rem;
}
.o-footer__company {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.o-footer__social {
  display: flex;
  flex-direction: column;
}
.o-footer__socialList {
  display: flex;
  gap: 1rem;
}

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

/* Header */
.site-header {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
}

.site-title {
  font-size: 2rem;
  margin-bottom: 10px;
}
.site-title a {
  color: #333;
  text-decoration: none;
}

.site-description {
  color: #666;
  font-size: 1rem;
}

/* Navigation */
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.site-navigation {
  flex: 1;
}
.site-navigation ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.site-navigation a {
  color: #333;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
}
.site-navigation a:hover {
  background-color: #f0f0f0;
  border-radius: 4px;
}

/* Content */
.site-content {
  padding: 40px 0;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.site-content.--flex {
  display: flex;
  flex-direction: column;
}

.content-area {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Posts */
.post {
  margin-bottom: 40px;
}

.entry-title {
  font-size: 2rem;
  margin-bottom: 10px;
}
.entry-title a {
  color: #333;
  text-decoration: none;
}
.entry-title a:hover {
  color: #0073aa;
}

.entry-meta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.entry-content {
  margin-bottom: 20px;
}
.entry-content p {
  margin-bottom: 15px;
}

/* Sidebar */
.sidebar {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.widget {
  margin-bottom: 30px;
}
.widget-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #0073aa;
}

/* Footer */
.site-footer {
  background-color: #333;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}
.site-footer a {
  color: #fff;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .site-content {
    grid-template-columns: 1fr;
  }
  .site-navigation ul {
    flex-direction: column;
    gap: 0;
  }
}/*# sourceMappingURL=style.css.map */