:root {
  --wl-bg: #f7f8fb;
  --wl-white: #ffffff;
  --wl-card: #faf9f5;
  --wl-text: #29313f;
  --wl-text-soft: rgba(41, 49, 63, 0.72);
  --wl-line: rgba(41, 49, 63, 0.1);
  --wl-teal: #3ecddb;
  --wl-teal-dark: #1fb7c5;
  --wl-pink: #f29fbe;
  --wl-pink-soft: rgba(242, 159, 190, 0.12);
  --wl-pink-gradient: linear-gradient(135deg, #f8a7c4 0%, #f18ab0 100%);
  --wl-gray-button: #e2e3e6;
  --wl-blue-border: #d9edf4;
  --wl-shadow: 0 24px 70px rgba(73, 84, 109, 0.12);
  --wl-radius-xl: 34px;
  --wl-radius-lg: 26px;
  --wl-radius-md: 18px;
  --wl-container: min(1200px, calc(100% - 40px));
  --wl-gap: 15px;
  --wl-transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--wl-text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(62, 205, 219, 0.08), transparent 28%),
    linear-gradient(180deg, #fbfcff 0%, #f7f8fb 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  display: block;
}

.wl-page {
  min-height: 100vh;
  overflow-x: clip;
}

.wl-container {
  width: var(--wl-container);
  margin: 0 auto;
}

.wl-section {
  position: relative;
  padding: 88px 0;
}

.wl-section--hero {
  padding-top: 154px;
  padding-bottom: 110px;
}

.wl-section--orbs::before,
.wl-section--orbs::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1.5px solid rgba(62, 205, 219, 0.18);
  pointer-events: none;
}

.wl-section--orbs::before {
  left: -130px;
  top: 48px;
}

.wl-section--orbs::after {
  right: -120px;
  bottom: 42px;
}

.wl-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 24px 0;
  transition:
    background-color var(--wl-transition),
    backdrop-filter var(--wl-transition),
    box-shadow var(--wl-transition),
    border-color var(--wl-transition),
    padding var(--wl-transition);
  border-bottom: 1px solid transparent;
}

.wl-header.is-scrolled {
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(41, 49, 63, 0.08);
  box-shadow: 0 16px 40px rgba(41, 49, 63, 0.06);
}

.wl-header__inner,
.wl-header__right,
.wl-nav,
.wl-socials,
.wl-brand,
.wl-about-team,
.wl-awards,
.wl-video-section,
.wl-contacts,
.wl-hero,
.wl-cta-row,
.wl-inline-socials {
  display: flex;
}

.wl-header__inner {
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wl-header__right,
.wl-nav,
.wl-socials {
  align-items: center;
}

.wl-header__right {
  gap: 18px;
}

.wl-brand {
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.wl-brand__mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: rgba(41, 49, 63, 0.9);
  color: var(--wl-white);
  font-weight: 800;
  letter-spacing: 0.14em;
}

.wl-brand__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wl-brand__copy strong {
  font-size: 0.96rem;
}

.wl-brand__copy span {
  color: var(--wl-text-soft);
  font-size: 0.78rem;
}

.wl-nav {
  gap: 8px;
}

.wl-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--wl-text-soft);
  transition:
    color var(--wl-transition),
    background-color var(--wl-transition);
}

.wl-nav a:hover {
  color: var(--wl-text);
  background: rgba(255, 255, 255, 0.6);
}

.wl-socials {
  gap: 8px;
}

.wl-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(41, 49, 63, 0.08);
  color: var(--wl-text);
  transition:
    transform var(--wl-transition),
    color var(--wl-transition),
    border-color var(--wl-transition);
}

.wl-socials a:hover {
  transform: translateY(-2px);
  color: var(--wl-teal-dark);
  border-color: rgba(62, 205, 219, 0.28);
}

.wl-socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wl-menu-toggle {
  display: none;
  border: 1px solid var(--wl-line);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--wl-text);
}

.wl-eyebrow {
  margin: 0 0 14px;
  font-size: 0.77rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wl-pink);
}

.wl-hero,
.wl-about-team,
.wl-awards,
.wl-video-section,
.wl-contacts {
  gap: 40px;
}

.wl-hero,
.wl-about-team,
.wl-video-section,
.wl-contacts {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  align-items: center;
}

.wl-hero__copy h1,
.wl-section-heading h2,
.wl-about-copy h2,
.wl-awards__copy h2,
.wl-trust-card h2,
.wl-video-copy h2,
.wl-contact-card h2,
.wl-appointment-form-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.wl-hero__copy h1 {
  font-size: clamp(3.8rem, 7vw, 6.8rem);
}

.wl-lead,
.wl-about-copy p,
.wl-awards__copy p,
.wl-trust-card p,
.wl-video-copy p,
.wl-faq-card p,
.wl-event-main p,
.wl-event-meta,
.wl-contact-card li,
.wl-service-slide__body p,
.wl-blog-card__body span,
.wl-form label,
.wl-floating-note span,
.wl-stat span {
  color: var(--wl-text-soft);
  line-height: 1.8;
}

.wl-lead {
  max-width: 56ch;
  margin: 24px 0 0;
  font-size: 1.06rem;
}

.wl-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.wl-button,
.wl-register-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 32px;
  border-radius: 27px;
  transition:
    transform var(--wl-transition),
    box-shadow var(--wl-transition),
    background-color var(--wl-transition);
}

.wl-button:hover,
.wl-register-button:hover {
  transform: translateY(-2px);
}

.wl-button--primary {
  padding-left: 42px;
  padding-right: 42px;
  background: var(--wl-teal);
  color: var(--wl-white);
  box-shadow: 0 16px 34px rgba(62, 205, 219, 0.22);
}

.wl-button--primary:hover {
  background: var(--wl-teal-dark);
}

.wl-button--secondary {
  background: var(--wl-gray-button);
  color: var(--wl-text);
}

.wl-hero__visual {
  position: relative;
}

.wl-hero__photo-frame {
  position: relative;
  min-height: 720px;
  border-radius: var(--wl-radius-xl);
  overflow: hidden;
  box-shadow: var(--wl-shadow);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    linear-gradient(140deg, #dce9ee 0%, #f6dfe6 58%, #fbf6ef 100%);
}

.wl-hero__photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1000' height='1500' viewBox='0 0 1000 1500'%3E%3Cdefs%3E%3ClinearGradient id='bg' x1='0' x2='1' y1='0' y2='1'%3E%3Cstop stop-color='%23deedf2'/%3E%3Cstop offset='1' stop-color='%23f6dce6'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1000' height='1500' fill='url(%23bg)'/%3E%3Cellipse cx='540' cy='300' rx='180' ry='190' fill='%23f0d7c1'/%3E%3Cpath d='M365 530c44-178 120-284 175-320 55-36 133-27 190 22 66 56 110 168 132 338-92 53-186 73-317 71-84-1-141-12-180-44Z' fill='%23756a63'/%3E%3Cpath d='M430 420c56-96 137-147 213-147 94 0 163 74 205 224l-9 619H251l14-579c44-52 98-97 165-117Z' fill='%23fffaf5'/%3E%3Cpath d='M381 813h416v520H381z' fill='%23e7eef0'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center top;
  animation: 8s linear forwards zoom-in-right;
}

.wl-floating-note {
  position: absolute;
  left: 24px;
  bottom: 26px;
  max-width: 260px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--wl-shadow);
}

.wl-floating-note strong {
  display: block;
  margin-bottom: 6px;
}

.wl-section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.wl-section-heading h2,
.wl-about-copy h2,
.wl-awards__copy h2,
.wl-trust-card h2,
.wl-video-copy h2,
.wl-appointment-form-card h2,
.wl-contact-card h2 {
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  margin-bottom: 14px;
}

.wl-stats-grid,
.wl-why-grid,
.wl-partners-grid,
.wl-blog-grid,
.wl-faq-grid,
.wl-testimonials-grid {
  display: grid;
  gap: var(--wl-gap);
}

.wl-stats-grid {
  grid-template-columns: repeat(3, 1fr);
}

.wl-stat {
  padding: 32px;
  border-radius: var(--wl-radius-lg);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(62, 205, 219, 0.12);
  box-shadow: var(--wl-shadow);
}

.wl-stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--wl-teal-dark);
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  line-height: 1;
}

.wl-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--wl-gap);
}

.wl-team-card,
.wl-icon-card,
.wl-badge,
.wl-partner,
.wl-faq-card,
.wl-blog-card,
.wl-contact-card,
.wl-map-card,
.wl-appointment-form-card,
.wl-service-slide,
.wl-testimonial-card {
  background: var(--wl-white);
  border: 1px solid rgba(41, 49, 63, 0.08);
  box-shadow: var(--wl-shadow);
}

.wl-team-card {
  padding: 22px;
  border-radius: var(--wl-radius-lg);
  text-align: center;
}

.wl-avatar,
.wl-round-photo {
  width: 170px;
  height: 170px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid var(--wl-blue-border);
}

.wl-avatar--one,
.wl-round-photo--one {
  background: linear-gradient(145deg, #dce9ee 0%, #f7dde6 100%);
}

.wl-avatar--two,
.wl-round-photo--two {
  background: linear-gradient(145deg, #ecdfcf 0%, #dce8ec 100%);
}

.wl-avatar--three,
.wl-round-photo--three {
  background: linear-gradient(145deg, #dfe7d8 0%, #f3dce7 100%);
}

.wl-inline-socials {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.wl-inline-socials a {
  color: var(--wl-teal-dark);
}

.wl-why-grid {
  grid-template-columns: repeat(3, 1fr);
}

.wl-icon-card {
  padding: 28px;
  border-radius: var(--wl-radius-lg);
}

.wl-icon-card svg {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  fill: none;
  stroke: var(--wl-pink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wl-icon-card h3 {
  margin: 0 0 10px;
}

.wl-icon-card p {
  margin: 0;
  color: var(--wl-text-soft);
  line-height: 1.75;
}

.wl-awards {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.wl-awards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wl-gap);
}

.wl-badge,
.wl-partner {
  display: grid;
  place-items: center;
  min-height: 120px;
  border-radius: var(--wl-radius-md);
  font-weight: 700;
  color: var(--wl-text);
  letter-spacing: 0.08em;
}

.wl-section--trust {
  padding-top: 24px;
  padding-bottom: 30px;
}

.wl-trust-banner {
  position: relative;
  width: min(1380px, 100%);
  margin: 0 auto;
  min-height: 620px;
}

.wl-trust-banner__image {
  min-height: 620px;
  border-radius: 40px;
  background: linear-gradient(145deg, #dce9ee 0%, #e8d7c7 55%, #d6e2d6 100%);
}

.wl-trust-card {
  position: absolute;
  left: 50%;
  bottom: -34px;
  transform: translateX(-50%);
  width: min(680px, calc(100% - 28px));
  padding: 28px 32px;
  border-radius: var(--wl-radius-xl);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--wl-shadow);
  text-align: center;
}

.wl-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.wl-slider__viewport {
  overflow: hidden;
}

.wl-slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 30px) / 3);
  gap: var(--wl-gap);
  transition: transform 500ms ease;
}

.wl-service-slide {
  overflow: hidden;
  border-radius: var(--wl-radius-lg);
}

.wl-service-slide__image {
  min-height: 240px;
}

.wl-service-slide__image--one {
  background: linear-gradient(135deg, #dbeaf1 0%, #ecdacd 100%);
}

.wl-service-slide__image--two {
  background: linear-gradient(135deg, #e8ddd0 0%, #dce7ed 100%);
}

.wl-service-slide__image--three {
  background: linear-gradient(135deg, #dbe4d9 0%, #eedde7 100%);
}

.wl-service-slide__image--four {
  background: linear-gradient(135deg, #ecdfd2 0%, #dce6dd 100%);
}

.wl-service-slide__body {
  padding: 22px;
}

.wl-service-slide__body p {
  margin: 0 0 16px;
}

.wl-price-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--wl-pink-soft);
  color: #d56f97;
  font-weight: 700;
}

.wl-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(62, 205, 219, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--wl-teal);
}

.wl-slider__arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wl-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.wl-slider__dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(62, 205, 219, 0.24);
}

.wl-slider__dots button.is-active {
  background: var(--wl-teal);
}

.wl-appointment-shell {
  position: relative;
  min-height: 640px;
}

.wl-appointment-photo {
  width: calc(100% - 220px);
  min-height: 640px;
  border-radius: 40px;
  background: linear-gradient(135deg, #e2edf1 0%, #f4dbe4 100%);
  box-shadow: var(--wl-shadow);
}

.wl-appointment-form-card {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: min(420px, 100%);
  padding: 30px;
  border-radius: var(--wl-radius-xl);
}

.wl-form {
  display: grid;
  gap: 16px;
}

.wl-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.wl-form input,
.wl-form select,
.wl-form textarea {
  width: 100%;
  border: 1px solid rgba(41, 49, 63, 0.12);
  border-radius: 16px;
  background: #fff;
  padding: 14px 16px;
  color: var(--wl-text);
  outline: none;
}

.wl-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wl-gap);
}

.wl-testimonial-card {
  padding: 28px;
  border-radius: var(--wl-radius-lg);
  background: var(--wl-card);
  text-align: center;
}

.wl-testimonial-card span {
  display: block;
  width: 48px;
  height: 3px;
  margin: 12px auto 16px;
  border-radius: 999px;
  background: var(--wl-teal);
}

.wl-testimonial-card p {
  margin: 0;
  color: var(--wl-text-soft);
  line-height: 1.8;
}

.wl-partners-grid {
  grid-template-columns: repeat(4, 1fr);
}

.wl-video-thumb {
  position: relative;
  min-height: 420px;
  border-radius: var(--wl-radius-xl);
  overflow: hidden;
  box-shadow: var(--wl-shadow);
}

.wl-video-thumb__image {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #dae8ee 0%, #f1dce5 100%);
}

.wl-play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--wl-teal);
  box-shadow: var(--wl-shadow);
}

.wl-play-button svg {
  width: 28px;
  height: 28px;
  margin: 0 auto;
}

.wl-faq-grid {
  grid-template-columns: repeat(3, 1fr);
}

.wl-faq-card {
  padding: 24px;
  border-radius: var(--wl-radius-lg);
}

.wl-faq-card h3 {
  position: relative;
  padding-left: 16px;
  margin: 0 0 10px;
}

.wl-faq-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wl-pink);
}

.wl-faq-card p {
  margin: 0;
}

.wl-events-list {
  display: grid;
  gap: 16px;
}

.wl-event-row {
  display: grid;
  grid-template-columns: 110px 1fr 180px auto;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border-radius: var(--wl-radius-lg);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(41, 49, 63, 0.08);
  box-shadow: var(--wl-shadow);
}

.wl-event-date strong {
  color: var(--wl-teal);
  font-size: 2.6rem;
  line-height: 1;
}

.wl-event-date span,
.wl-event-main p,
.wl-event-meta {
  color: var(--wl-text-soft);
}

.wl-event-meta {
  display: grid;
  gap: 4px;
}

.wl-register-button {
  padding-left: 28px;
  padding-right: 28px;
  background: var(--wl-pink-gradient);
  color: var(--wl-white);
}

.wl-blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.wl-blog-card {
  overflow: hidden;
  border-radius: var(--wl-radius-lg);
}

.wl-blog-card__image {
  min-height: 240px;
}

.wl-blog-card__image--one {
  background: linear-gradient(135deg, #dde8ec 0%, #e9d8cb 100%);
}

.wl-blog-card__image--two {
  background: linear-gradient(135deg, #e9dccb 0%, #d8e4ea 100%);
}

.wl-blog-card__image--three {
  background: linear-gradient(135deg, #dae6db 0%, #efdbe5 100%);
}

.wl-blog-card__body {
  padding: 22px;
}

.wl-blog-card__body h3 {
  margin: 10px 0 0;
}

.wl-contacts {
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.wl-contact-card,
.wl-map-card {
  padding: 30px;
  border-radius: var(--wl-radius-xl);
}

.wl-contact-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}

.wl-map {
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(41, 49, 63, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(41, 49, 63, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #f6f7fb 0%, #ebf5f7 100%);
  background-size: 60px 60px, 60px 60px, auto;
}

.wl-map::before {
  content: "";
  position: absolute;
  inset: 12% 10% 16% 12%;
  border-radius: 34px;
  border: 3px solid rgba(62, 205, 219, 0.2);
}

.wl-map__pin {
  position: absolute;
  left: 56%;
  top: 44%;
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--wl-teal);
  box-shadow: 0 0 0 10px rgba(62, 205, 219, 0.16);
}

.wl-map span {
  position: absolute;
  left: 50%;
  top: calc(44% + 38px);
  transform: translateX(-50%);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--wl-shadow);
}

.wl-animate {
  opacity: 0;
}

.wl-animate.is-visible {
  opacity: 1;
}

.wl-fade-bottom.is-visible {
  animation: fadeInBottom 0.9s ease forwards;
}

.wl-fade-left.is-visible {
  animation: fadeInLeft 0.9s ease forwards;
}

.wl-fade-right.is-visible {
  animation: fadeInRight 0.9s ease forwards;
}

.wl-fade-top.is-visible {
  animation: fadeInTop 0.9s ease forwards;
}

.wl-fade.is-visible {
  animation: fadeIn 0.9s ease forwards;
}

.wl-zoom-bottom.is-visible {
  animation: zoomInBottom 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.wl-fade-up-in.is-visible {
  animation: fadeUpIn 0.75s ease forwards;
}

@keyframes fadeInBottom {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInTop {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomInBottom {
  from {
    opacity: 0;
    transform: translateY(80px) scale(0.1);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(-20%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heartBeat {
  0%,
  100% {
    transform: scale(1);
  }
  25%,
  75% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1);
  }
}

@keyframes zoom-in-right {
  from {
    transform: translateX(20px) scale(1.5);
  }
  to {
    transform: translateX(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .wl-header,
  .wl-button,
  .wl-register-button,
  .wl-socials a,
  .wl-animate,
  .wl-hero__photo {
    transition: none;
    animation: none;
  }

  .wl-animate {
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .wl-hero,
  .wl-about-team,
  .wl-awards,
  .wl-video-section,
  .wl-contacts {
    grid-template-columns: 1fr;
  }

  .wl-team-grid,
  .wl-why-grid,
  .wl-partners-grid,
  .wl-faq-grid,
  .wl-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wl-slider__track {
    grid-auto-columns: calc((100% - 15px) / 2);
  }

  .wl-appointment-photo {
    width: 100%;
  }

  .wl-appointment-form-card {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: -80px auto 0;
  }
}

@media (max-width: 860px) {
  .wl-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(41, 49, 63, 0.08);
    box-shadow: 0 20px 40px rgba(41, 49, 63, 0.08);
  }

  .wl-nav.is-open {
    display: flex;
  }

  .wl-menu-toggle {
    display: inline-flex;
  }

  .wl-socials {
    display: none;
  }

  .wl-stats-grid,
  .wl-testimonials-grid,
  .wl-event-row,
  .wl-blog-grid {
    grid-template-columns: 1fr;
  }

  .wl-slider {
    grid-template-columns: 1fr;
  }

  .wl-slider__track {
    grid-auto-columns: 100%;
  }

  .wl-slider__arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --wl-container: min(100% - 24px, 100%);
  }

  .wl-header {
    padding: 16px 0;
  }

  .wl-brand__copy span {
    display: none;
  }

  .wl-section,
  .wl-section--hero {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .wl-section--hero {
    padding-top: 126px;
  }

  .wl-hero__copy h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .wl-section-heading h2,
  .wl-about-copy h2,
  .wl-awards__copy h2,
  .wl-trust-card h2,
  .wl-video-copy h2,
  .wl-appointment-form-card h2,
  .wl-contact-card h2 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .wl-team-grid,
  .wl-why-grid,
  .wl-partners-grid,
  .wl-faq-grid,
  .wl-blog-grid {
    grid-template-columns: 1fr;
  }

  .wl-contact-card,
  .wl-map-card,
  .wl-stat,
  .wl-faq-card,
  .wl-service-slide__body,
  .wl-blog-card__body,
  .wl-icon-card,
  .wl-appointment-form-card,
  .wl-testimonial-card,
  .wl-event-row {
    padding-left: 20px;
    padding-right: 20px;
  }
}
