@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", "Segoe UI", Arial, sans-serif;
  color: #022C6D;
  line-height: 1.55;
  background: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #2D70B7;
}

h1, h2, h3, h4 {
  font-family: "Bai Jamjuree", "Segoe UI", Arial, sans-serif;
}

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 10px;
  top: 10px;
  background: #203958;
  color: #ffffff;
  padding: 8px 14px;
  z-index: 99;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
.container {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 20px;
}

.t-center {
  text-align: center;
}

.section {
  padding: 56px 0;
}
.section--lightblue {
  background: #CEDEEA;
}
.section--lightblue:has(+ .section--lightblue) {
  padding-bottom: 0;
}

.section-title {
  text-align: center;
  color: #203958;
  font-size: clamp(1.4rem, 3vw, 2.125rem);
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.25;
}
.section-title--sub {
  margin-top: -18px;
}
@media (max-width: 600px) {
  .section-title {
    font-size: 1.9rem;
  }
}

.section-subtitle {
  text-align: center;
  color: #2D70B7;
  font-family: "Bai Jamjuree", "Segoe UI", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: -18px 0 32px;
}

.lead {
  text-align: center;
  color: #203958;
  font-weight: 700;
  max-width: 820px;
  margin: -12px auto 48px;
}

.note-italic {
  text-align: center;
  font-style: italic;
  font-size: 0.85rem;
  color: #022C6D;
  margin-top: 28px;
}

.link-gold {
  color: #A38300;
  font-weight: 700;
  text-decoration: none;
}
.link-gold:hover {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-family: "Roboto", "Segoe UI", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  padding: 17px 32px;
  border-radius: 100px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn--gold {
  background: linear-gradient(90deg, #EFD76C 0%, #AD925A 100%);
  color: #000;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.25);
}
.btn--gold:hover {
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: #203958;
  border: 2px solid #203958;
}
@media (max-width: 600px) {
  .btn {
    padding: 14px 22px;
    font-size: 1rem;
  }
}

.pill {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
}
.pill--gold {
  background: linear-gradient(135deg, #F5E59F 0%, #EFD76C 100%);
  color: #000;
}

.accordion {
  max-width: 820px;
  margin: 36px auto 0;
}
.accordion__toggle {
  width: 100%;
  text-align: left;
  background: #F1F6FF;
  border: 1px solid #CEDEEA;
  border-radius: 10px;
  padding: 14px 18px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  color: #203958;
}
.accordion__toggle::after {
  content: "▾";
  float: right;
  transition: transform 0.2s;
}
.accordion__toggle[aria-expanded=true]::after {
  transform: rotate(180deg);
}
.accordion__panel {
  border: 1px solid #CEDEEA;
  border-top: 0;
  border-radius: 0 0 10px 10px;
  padding: 16px 18px 16px 38px;
  font-size: 0.9rem;
}
.accordion__panel li {
  margin-bottom: 10px;
}

.mform {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(32, 57, 88, 0.12);
  color: #022C6D;
  padding: 26px;
}
.mform input[type=text],
.mform input[type=tel],
.mform input[type=email],
.mform input[type=number],
.mform select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #c7d6e6;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #F1F6FF;
}
.mform textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #c7d6e6;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #F1F6FF;
  resize: vertical;
}
.mform input:focus,
.mform select:focus {
  outline: 2px solid #2D70B7;
  outline-offset: 1px;
}
.mform input.is-invalid {
  border-color: #d64545;
  background: #fdf0f0;
}
.mform input.is-warning {
  border-color: #9a6b00;
  background: #fffaf0;
}
.mform__hint {
  display: block;
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(32, 57, 88, 0.7);
  margin-top: 4px;
}
.mform__error {
  display: none;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 4px;
}
.mform__error.is-err {
  display: block;
  color: #d64545;
}
.mform__error.is-warn {
  display: block;
  color: #9a6b00;
}
.mform__required {
  font-size: 0.85rem;
  font-weight: 700;
  color: #203958;
}
.mform__progress {
  margin-bottom: 18px;
  font-size: 0.85rem;
  color: #022C6D;
}
.mform__progress-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.mform__step-label {
  font-weight: 600;
  color: #8c8577;
}
.mform__bar {
  height: 20px;
  background: #e5e5e2;
  border-radius: 999px;
  margin: 10px 0 4px;
  overflow: hidden;
}
.mform__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #EFD76C 0%, #AD925A 100%);
  transition: width 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #203958;
}
.mform__step {
  display: none;
  border: 0;
}
.mform__step.is-active {
  display: block;
}
.mform__row {
  margin-bottom: 6px;
}
.mform__row input[type=checkbox] {
  margin-right: 8px;
}
.mform__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
@media (max-width: 600px) {
  .mform__row--2 {
    grid-template-columns: 1fr;
  }
}
.mform__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}
.mform__pair--dob {
  grid-template-columns: repeat(3, 1fr);
}
.mform__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #203958;
  margin-bottom: 6px;
}
.mform__label small {
  font-weight: 400;
}
.mform__choice {
  display: block;
  font-size: 0.88rem;
  font-weight: 400;
  color: #022C6D;
  margin: 6px 0;
  cursor: pointer;
}
.mform__choice input {
  margin-right: 8px;
}
.mform__note {
  font-size: 0.85rem;
  background: #F1F6FF;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 16px;
}
.mform__nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.mform__msg {
  margin-top: 12px;
  font-weight: 700;
}
.mform__msg.is-ok {
  color: #1d7a3a;
}
.mform__msg.is-err {
  color: #d64545;
}
.mform--thanks {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  line-height: 1.6;
  outline: none;
}
.mform--thanks[hidden] {
  display: none;
}
.mform--thanks p {
  font-size: 0.95rem;
}
.mform__thanks-title {
  font-family: "Bai Jamjuree", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 700;
  color: #000;
}
.mform__thanks-outro {
  font-weight: 700;
}

.hp {
  position: absolute;
  left: -9999px;
}

/* Konténer */
.price {
  font-family: "Roboto", "Segoe UI", Arial, sans-serif;
  font-size: 1.05rem;
  border: 1px solid #323F61;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.price a {
  color: #A38300;
}
.price a:hover {
  color: #AD925A;
}
.price .label {
  display: none;
}
.price .price-row .goldPrice {
  color: #AD925A;
  font-size: 16.8px;
}

/* Price flex */
.price-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.price-flex strong {
  color: #AD925A;
}

/* Kupon fül a prémium táblázat felett.
   A szélessége a táblázat utolsó két oszlopát fedi le (18% + 27%). */
.coupon {
  position: static;
  background: gold;
  background-image: linear-gradient(180deg, #EFD76C 0%, #AD925A 100%);
  color: #203958;
  padding: 10px 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  z-index: 1;
  width: 45%;
  text-align: center;
  margin-left: auto;
  font-family: "Roboto", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  text-transform: none;
}

/* Prémium táblázat sarokszalaggal */
.price.premium {
  border-top: none;
  border-top-right-radius: 0;
}
.price.premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 80px solid #AD925A;
  border-right: 120px solid transparent;
  z-index: 1;
}
.price.premium .premium-flag {
  position: absolute;
  top: 50px;
  left: 8px;
  text-align: center;
  font: 400 14px "Roboto", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.5px;
  color: #ffffff;
  transform: rotate(-33.5deg);
  transform-origin: 0 0;
  z-index: 999;
  pointer-events: none;
}

/* ÚJ jelölés */
.new-flag {
  color: #AD925A;
  font-weight: 900;
}

/* Régi (áthúzott) ár */
.oldPrice {
  display: block;
}

/* Bevezető ár */
.intro-price {
  color: #AD925A;
}

.discount-price span strong {
  width: 100%;
  display: block;
}

/* Grid — minden .price blokkra közös */
.price-header,
.price-row {
  display: grid;
  grid-template-columns: 55% 18% 27%;
}

/* 2 oszlopos változat (kedvezőbb árfekvésű kezelések) */
.price--2col .price-header,
.price--2col .price-row {
  grid-template-columns: 70% 30%;
}

/* Apró felirat a kezelés neve alatt (pl. + Ajándék napszemüveg) */
.price-gift {
  font-size: 12px;
  text-align: center;
}

/* Áthúzott listaár + akciós ár egymás alatt */
.price-stack {
  display: inline-block;
  text-align: right;
}

.price-header {
  background: #203958;
  color: #ffffff;
  font-weight: 600;
}

/* Cellák */
.price-header .col,
.price-row .cell {
  padding: 0.75rem 1rem;
  text-align: center;
  border-right: 1px solid #e2e8f0;
}

.price-header .col:last-child,
.price-row .cell:last-child {
  border-right: none;
}

.price-row {
  border-bottom: 1px solid #e2e8f0;
}
.price-row:nth-of-type(even) {
  background: #f9f9f9;
}

/* Megjegyzés a 3. oszlopban */
.note {
  grid-column: 3/4;
  display: block;
  padding: 0.25rem 1rem;
  font-size: 0.9em;
  text-align: center;
  font-weight: 400;
}

/* Lábjegyzet a táblázat alatt */
.price-note {
  display: block;
  text-align: center;
  margin: 16px 0;
}

.mobile-coupon-row,
.discount-mobile {
  display: none;
}

.discount-price {
  flex-direction: column;
}
.discount-price .label {
  width: 100%;
  text-align: center;
  margin-bottom: 0.5rem;
}
.discount-price .price-flex {
  width: 100%;
}
.discount-price .discount-flex {
  flex-direction: row;
}

/* ---------- Tablet / mobil (élő töréspont: 1024px) ---------- */
@media screen and (max-width: 1024px) {
  .price.premium .premium-flag {
    display: none;
  }
  .price-flex {
    flex-direction: row;
  }
  /* Nincsenek oszlopok, amikhez igazodni kellene: teljes szélesség. A negatív
     alsó margó a táblázat tetejére húzza a fület, a padding-bottom pedig
     kitölti a rést, hogy a kettő egybefüggő tömbnek látsszon. */
  .coupon {
    width: 100%;
    margin-left: 0;
    margin-bottom: -15px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .price * {
    white-space: normal;
  }
  .price {
    border: none;
    border-radius: 20px 0 20px 0;
  }
  .price-header {
    display: none;
  }
  .price-header.header-title {
    display: block;
    background: none;
  }
  .price-header.header-title .col {
    display: none;
  }
  .price-header.header-title .col.title {
    display: block;
    color: #323F61;
    font-size: 1.6rem;
    line-height: 1.8rem;
    font-weight: 700;
  }
  .new-flag {
    color: #F8F8F8;
  }
  .price.premium {
    border: none;
  }
  .price.premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 80px solid #323F61;
    border-right: 80px solid transparent;
    z-index: 1;
  }
  .price.premium .premium-flag {
    position: absolute;
    top: 50px;
    left: 5px;
    text-align: center;
    font: 400 10px "Roboto", "Segoe UI", Arial, sans-serif;
    letter-spacing: 0.5px;
    color: #ffffff;
    transform: rotate(-45deg);
    transform-origin: 0 0;
    z-index: 999;
    pointer-events: none;
  }
  .price-row .cell:not(:first-child).mob-hidden {
    display: none;
  }
  .price-row .cell:first-of-type {
    border: none;
  }
  .price-row {
    display: block;
    margin: 0 0 1rem;
    border: 2px solid #323F61;
    border-radius: 15px;
    overflow: hidden;
    background: #ffffff;
  }
  .price.premium .price-row .cell:first-child {
    background: #323F61;
  }
  .price.premium .price-row .cell:first-child a {
    transition: 0.3s ease all;
  }
  .price.premium .price-row .cell:first-child a:hover {
    color: black;
  }
  .price-row .cell:first-child {
    background: #323F61;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    padding: 0.75rem 1rem;
  }
  .price-row .cell:not(:first-child) {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5rem 1rem;
    text-align: left;
    border: none;
    border-top: 1px solid #e2e8f0;
  }
  .toric .price-row .cell:first-child {
    display: none;
  }
  .price .label {
    display: inline-block;
    /*width: 52%;*/
    font-weight: 600;
  }
  .price strong {
    text-align: right;
  }
  .note {
    grid-column: auto;
    display: block;
    padding: 0.5rem 1rem;
    text-align: center;
    font-weight: 600;
    background: #f1f5f9;
    border-top: 1px solid #e2e8f0;
  }
  .mob-none {
    display: none !important;
  }
  .price-header .col {
    border-right: none !important;
  }
  .oldPrice {
    margin-left: auto;
  }
  .oldPrice + .goldPrice {
    flex: 0 0 100%;
  }
  .mobile-coupon-row {
    display: block;
    background: #EFD76C;
    color: #203958;
    font-weight: 700;
    text-align: center;
    padding: 0.75rem 1rem;
  }
  .price-row .cell:not(:first-child).discount-price {
    display: block;
    background-image: linear-gradient(90deg, #EFD76C 0%, #AD925A 100%);
    color: #203958;
    font-weight: 700;
    text-align: center;
    margin: 0;
    padding: 0.5rem 0 0 0;
  }
  .discount-flex {
    background: #F8F8F8;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
  }
  .discount-price div {
    background: #f8f8f8;
    padding: 0.5rem 1rem;
    font-size: 14px;
  }
  .discount-price span strong {
    text-align: center;
  }
  .intro-price {
    font-size: 16.8px;
  }
}
@media screen and (max-width: 621px) {
  .goldUp .goldPrice {
    margin-top: 0;
  }
  .goldUp .goldPrice.oneLine {
    margin-top: -25px;
  }
}
.tip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: static;
}
.tip__btn {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  line-height: 0;
}
.tip__btn img {
  width: 34px;
  height: 34px;
  display: block;
}
.tip__bubble {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  padding: 12px 16px;
  background: rgba(217, 217, 217, 0.85);
  border: 1px solid rgb(217, 217, 217);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4.6px);
  -webkit-backdrop-filter: blur(4.6px);
  font-family: "Bai Jamjuree", "Segoe UI", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: #203958;
  white-space: normal;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.tip--show .tip__bubble {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: lightbox-fade 0.2s;
}
.lightbox__dialog {
  position: relative;
  width: min(960px, 100%);
}
.lightbox__close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s;
}
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
}
.lightbox__frame {
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@keyframes lightbox-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background: #203958;
  color: #ffffff;
  box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.28);
  font-size: 0.9rem;
}
.cookie[hidden] {
  display: none;
}
.cookie__inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 900px) {
  .cookie__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
}
.cookie__title {
  font-family: "Bai Jamjuree", "Segoe UI", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #EFD76C;
  margin-bottom: 4px;
}
.cookie__text {
  max-width: 820px;
  line-height: 1.5;
}
.cookie__text a {
  color: #CEDEEA;
}
.cookie__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .cookie__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.cookie__btn {
  border: 0;
  cursor: pointer;
  font-family: "Roboto", "Segoe UI", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 13px 26px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.15s;
}
.cookie__btn:hover {
  transform: translateY(-1px);
}
.cookie__btn--accept {
  background: linear-gradient(90deg, #EFD76C 0%, #AD925A 100%);
  color: #000;
}
.cookie__btn--reject {
  background: #ffffff;
  color: #203958;
}
.cookie__btn--navy {
  background: #203958;
  color: #ffffff;
}
.cookie__link {
  background: none;
  border: 0;
  cursor: pointer;
  color: #ffffff;
  font-family: "Roboto", "Segoe UI", Arial, sans-serif;
  font-size: 0.9rem;
  text-decoration: underline;
  padding: 13px 8px;
}

.cookie-prefs {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.cookie-prefs[hidden] {
  display: none;
}
.cookie-prefs__dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: 100%;
  overflow-y: auto;
  background: #ffffff;
  color: #022C6D;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(32, 57, 88, 0.12);
  padding: 28px 26px;
}
.cookie-prefs__dialog h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #203958;
  margin-bottom: 10px;
  padding-right: 32px;
}
.cookie-prefs__dialog > p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 14px;
}
.cookie-prefs__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #F1F6FF;
  color: #203958;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.cookie-prefs__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.45;
  padding: 14px 0;
  border-top: 1px solid #CEDEEA;
  cursor: pointer;
}
.cookie-prefs__row input {
  margin-top: 3px;
  flex-shrink: 0;
}
.cookie-prefs__row strong {
  display: block;
  color: #203958;
}
.cookie-prefs__row:has(input:disabled) {
  cursor: default;
}
.cookie-prefs__actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .cookie-prefs__actions {
    flex-direction: column;
  }
}

.footer__cc {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: #CEDEEA;
}
.footer__cc:hover {
  text-decoration: underline;
}

.promo {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  animation: promo-fade 0.2s;
}
.promo[hidden] {
  display: none;
}
.promo__modal {
  position: relative;
  max-width: 100%;
}
.promo__image {
  max-width: 70vw;
  max-height: 70vh;
  width: auto;
  height: auto;
}
.promo__cta, .promo__close {
  position: absolute;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-indent: -9999px;
}
.promo__cta {
  right: 12.94%;
  bottom: 9.2%;
  width: 35.29%;
  height: 14.94%;
}
.promo__close {
  top: 0;
  right: 0;
  width: 5.88%;
  height: 11.49%;
}
.promo__cta:focus-visible, .promo__close:focus-visible {
  outline: 3px solid #EFD76C;
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .promo {
    padding: 0;
  }
  .promo__image {
    max-width: 100vw;
    max-height: 100vh;
  }
  .promo__cta {
    right: 16.42%;
    bottom: 1.14%;
    width: 67.16%;
    height: 11.36%;
  }
  .promo__close {
    top: 2.27%;
    right: 6.57%;
    width: 14.93%;
    height: 11.36%;
  }
}
@keyframes promo-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  background: #dee9f8;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: center;
  min-height: clamp(420px, 40vw, 550px);
}
.hero h1 {
  color: #203958;
  font-size: clamp(3rem, 5vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
}
.hero h1 span {
  font-weight: 500;
}
@media (max-width: 900px) {
  .hero h1 {
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 2rem);
  }
}
.hero__side {
  flex: 0 1 auto;
  width: clamp(350px, 40vw, 500px);
  min-width: 0;
  height: auto;
  align-self: stretch;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.hero__side--left {
  -o-object-position: left bottom;
     object-position: left bottom;
}
.hero__side--right {
  -o-object-position: right bottom;
     object-position: right bottom;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 530px;
  margin: 0 auto;
}
.hero__sub {
  color: #203958;
  font-family: "Bai Jamjuree", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.3rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  margin: 14px 0 28px;
}
.hero__gift {
  color: #203958;
  font-family: "Bai Jamjuree", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-top: 18px;
}
.hero__slides {
  flex: 1 1 auto;
  align-self: center;
  position: relative;
  z-index: 1;
  padding: 64px 20px;
}
.hero__slide {
  display: none;
}
.hero__slide.is-active {
  display: block;
  animation: fade-in 0.5s;
}
.hero__dots {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: rgba(32, 57, 88, 0.25);
}
.hero__dot.is-active {
  background: #203958;
}
@media (max-width: 900px) {
  .hero {
    flex-wrap: wrap;
    align-items: flex-start;
    min-height: 0;
  }
  .hero__slides {
    flex: 0 0 100%;
    order: -1;
    padding: 44px 20px 28px;
    background: #323F61;
  }
  .hero__side {
    flex: 1 1 50%;
    width: 50%;
    max-width: 50%;
    align-self: flex-end;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.strip {
  background: #203958;
  color: #ffffff;
  padding: 40px 0;
  text-align: center;
}
.strip--navy p {
  max-width: 860px;
  margin: 0 auto;
  font-weight: 600;
}
.strip--cta {
  background: #323F61;
  padding: 48px 0;
}
.strip--cta h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 18px;
}
@media (max-width: 600px) {
  .strip--cta h2 {
    font-size: 1.56rem;
  }
}
.strip--cta p {
  margin-bottom: 22px;
}
.strip__title {
  font-family: "Bai Jamjuree", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.725rem);
  font-weight: 500;
  line-height: 1.35;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .strip__title {
    font-size: 1.32rem;
  }
}
@media (max-width: 600px) {
  .strip p {
    font-size: 1.2rem;
  }
}

.discount__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 600px) {
  .discount__grid {
    grid-template-columns: 1fr;
  }
}
.discount__card {
  text-align: center;
}
.discount__card img {
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(32, 57, 88, 0.12);
  width: 100%;
  height: auto;
}
.discount__card h4 {
  color: #2D70B7;
  font-size: 1rem;
  margin: 18px 0 10px;
}
.discount__card p {
  font-size: 0.9rem;
  max-width: 380px;
  margin: 0 auto;
}
.discount__plus {
  align-self: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(90deg, #EFD76C 0%, #AD925A 100%);
  color: #000;
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .discount__plus {
    margin: 0 auto;
  }
}
.discount__terms {
  text-align: center;
  margin-top: 34px;
}

.treatments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.treatments--3 {
  grid-template-columns: repeat(3, calc((100% - 60px) / 4));
  justify-content: center;
}
@media (max-width: 900px) {
  .treatments {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .treatments {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.treatment {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(32, 57, 88, 0.12);
  padding: 0 18px 22px;
  text-align: center;
}
.treatment p {
  font-size: 0.85rem;
  color: #022C6D;
}
.treatment__badge {
  display: inline-block;
  transform: translateY(-50%);
  margin-bottom: -6px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #ffffff;
  font-family: "Bai Jamjuree", "Segoe UI", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.25;
}
.treatment__badge--navy {
  background: #203958;
}
.treatment__badge--blue {
  background: #2D70B7;
}
.treatment__badge--orange {
  background: #F9A61A;
}
.treatment__badge--gold {
  background: linear-gradient(90deg, #EFD76C 0%, #AD925A 100%);
  color: #000;
}
@media (max-width: 600px) {
  .treatment {
    padding: 0 22px 28px;
  }
  .treatment p {
    font-size: 1.05rem;
  }
  .treatment__badge {
    margin-bottom: -8px;
    padding: 12px 20px;
    font-size: 1rem;
  }
}

.video__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
@media (max-width: 900px) {
  .video__grid {
    grid-template-columns: 1fr;
  }
}
.video__placeholder {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 20px;
}
.video__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.video__placeholder:hover .video__thumb {
  transform: scale(1.04);
  opacity: 0.85;
}
.video__play {
  position: absolute;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: linear-gradient(90deg, #EFD76C 0%, #AD925A 100%);
  color: #000;
  font-size: 1.4rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}
.video__text h2 {
  color: #203958;
  font-size: 1.4rem;
  margin-bottom: 14px;
}
@media (max-width: 600px) {
  .video__text h2 {
    font-size: 1.9rem;
  }
}
.video__text p {
  font-size: 0.95rem;
}

.appointment {
  padding: 64px 0;
  color: #ffffff;
  background: url("../images/formbackground-scaled.webp") top center/cover no-repeat, #203958;
}
.appointment__title {
  text-align: center;
  color: #ffffff;
  font-size: clamp(1.6rem, 3vw, 2.125rem);
  font-weight: 600;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .appointment__title {
    font-size: 1.9rem;
  }
}
.appointment__subtitle {
  text-align: center;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 32px;
}
.appointment__grid {
  display: grid;
  grid-template-columns: 340px 510px;
  align-items: stretch;
  justify-content: center;
}
@media (max-width: 900px) {
  .appointment__grid {
    grid-template-columns: 1fr;
  }
}
.appointment__intro {
  background: #203958;
  border-radius: 30px 0 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 30px;
  padding: 48px 0;
  text-align: center;
}
@media (max-width: 900px) {
  .appointment__intro {
    border-radius: 30px 30px 0 0;
    padding-bottom: 0;
    padding-top: 24px;
  }
}
.appointment__promo-name {
  font-family: "Bai Jamjuree", "Segoe UI", Arial, sans-serif;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.3;
  color: #ffffff;
}
.appointment__promo-name span {
  color: #E1CA7D;
  font-weight: 700;
  text-decoration: underline;
}
.appointment__promo-amount {
  background: linear-gradient(90deg, #F5E59F 0%, #AD925A 100%);
  color: #203958;
  padding: 16px 24px;
  text-align: center;
  position: relative;
}
.appointment__promo-amount small {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: -2px;
}
.appointment__promo-price {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Bai Jamjuree", sans-serif;
}
.appointment .mform {
  max-width: 850px;
  background: #F8F8F8;
  border-radius: 0 30px 30px 0;
  box-shadow: none;
  padding: 16px 20px;
}
@media (max-width: 900px) {
  .appointment .mform {
    border-radius: 0 0 30px 30px;
  }
}
@media (max-width: 600px) {
  .appointment .mform {
    padding: 24px 20px;
  }
}
.appointment .mform input[type=text],
.appointment .mform input[type=tel],
.appointment .mform input[type=email],
.appointment .mform input[type=number],
.appointment .mform select {
  background: #ffffff;
  border: 1px solid #d5d8dc;
  border-radius: 999px;
  padding: 10px 18px;
}
.appointment .mform textarea {
  background: #ffffff;
  border: 1px solid #d5d8dc;
  border-radius: 20px;
  padding: 10px 18px;
}
.appointment .mform .btn {
  border-radius: 999px;
  padding: 13px 34px;
  font-size: 1rem;
}
.appointment .mform .btn--gold {
  background: linear-gradient(135deg, #F5E59F 0%, #EFD76C 100%);
  color: #203958;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.why {
  background: url("../images/mert_bg.webp") center center/cover no-repeat, #ffffff;
}
.why__mert {
  text-align: center;
  font-family: "Bai Jamjuree", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  color: #203958;
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.why__timeline {
  list-style: none;
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.why__timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #AD925A;
  transform: translateX(-50%);
}
@media (max-width: 600px) {
  .why__timeline::before {
    left: 13px;
  }
}
.why__item {
  position: relative;
  width: 50%;
  padding: 14px 44px;
  font-size: 0.95rem;
  color: #203958;
  font-weight: 600;
}
.why__item::before {
  content: "✓";
  position: absolute;
  top: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #AD925A;
  color: #A38300;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  z-index: 1;
}
.why__item--left {
  text-align: right;
}
.why__item--left::before {
  right: -15px;
}
.why__item--right {
  margin-left: 50%;
  text-align: left;
}
.why__item--right::before {
  left: -15px;
}
@media (max-width: 600px) {
  .why__item, .why__item--right {
    width: 100%;
    margin-left: 0;
    text-align: left;
    padding: 12px 12px 12px 44px;
  }
  .why__item--left::before, .why__item--right::before {
    left: 0;
    right: auto;
  }
}
.why__cta-text {
  text-align: center;
  color: #323F61;
  font-size: clamp(1.2rem, 2.4vw, 2.125rem);
  font-weight: 700;
  max-width: 900px;
  margin: 40px auto 24px;
  line-height: 1.25;
}

.prices__warning {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #203958;
  margin-top: 18px;
}
.prices__subtitle {
  margin-top: 56px;
  margin-bottom: 12px;
}
.prices__lead {
  text-align: center;
  color: #203958;
  margin-bottom: 24px;
}

.payment {
  text-align: center;
}
.payment p {
  max-width: 720px;
  margin: 0 auto;
}

.stats {
  background: #ffffff;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat {
  background: #F1F6FF;
  border-radius: 14px;
  padding: 30px 16px;
  text-align: center;
}
.stat__num {
  display: block;
  color: #203958;
  font-family: "Bai Jamjuree", "Segoe UI", Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
}
.stat__label {
  display: block;
  font-size: 0.85rem;
  color: #203958;
  font-weight: 600;
  margin-bottom: 8px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-bottom: 30px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}
.testimonials__col {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.tcard {
  background: #CEDEEA;
  border-radius: 28px;
  padding: 26px;
  cursor: pointer;
}
.tcard h3 {
  color: #203958;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 14px 0 10px;
}
.tcard p {
  font-size: 0.95rem;
  color: #022C6D;
}
.tcard__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tcard__badge {
  display: inline-block;
  background: #203958;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 999px;
}
.tcard__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(90deg, #EFD76C 0%, #AD925A 100%);
  color: #203958;
  font-size: 0.8rem;
  padding-left: 3px;
}
.tcard--feature .tcard__thumb {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.tcard--feature .tcard__thumb img {
  width: 100%;
  display: block;
}
.tcard--feature .tcard__thumb .tcard__badge {
  position: absolute;
  top: 14px;
  left: 14px;
}
.tcard--feature .tcard__thumb .tcard__play {
  position: absolute;
  top: 14px;
  right: 14px;
}
.tcard--split {
  display: flex;
  position: relative;
  align-items: flex-end;
  gap: 10px;
  overflow: hidden;
  padding-bottom: 0;
}
.tcard--split .tcard__body {
  flex: 0 0 50%;
  padding-bottom: 26px;
}
.tcard--split .tcard__body h3 {
  margin-top: 14px;
}
.tcard--split .tcard__cutout {
  width: 50%;
  max-width: 220px;
  flex-shrink: 0;
  align-self: flex-end;
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
}
.tcard--split-reverse {
  flex-direction: row-reverse;
}
.tcard--split-reverse .tcard__cutout {
  right: auto;
  left: 0;
}
.tcard--tall {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-bottom: 0;
}
.tcard--tall .tcard__body h3 {
  margin-top: 14px;
}
.tcard--tall .tcard__cutout {
  display: block;
  width: 88%;
  margin: auto auto 0;
}

.footer {
  background: #203958;
  color: #ffffff;
  padding: 44px 0 20px;
  font-size: 0.9rem;
}
.footer a {
  color: #CEDEEA;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer h3 {
  color: #EFD76C;
  font-size: 1rem;
  margin-bottom: 12px;
}
.footer ul {
  list-style: none;
}
.footer li {
  margin-bottom: 8px;
}
.footer__partners {
  display: flex;
  gap: 34px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 20px;
  margin-bottom: 26px;
}
.footer__partners img {
  height: 34px;
  width: auto;
}
@media (max-width: 600px) {
  .footer__partners {
    flex-wrap: wrap;
  }
}
.footer__logo {
  height: 44px;
  width: auto;
  margin-top: 14px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 30px;
}
@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
.footer__contact li {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  fill: #EFD76C;
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer__social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(180deg, #AD925A 0%, #FCE88F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__social svg {
  height: 16px;
  width: auto;
  fill: #323F61;
}
.footer__copy {
  text-align: center;
  margin-top: 34px;
  font-size: 0.8rem;
  opacity: 0.7;
}/*# sourceMappingURL=style.css.map */