@charset "UTF-8";
.h1, .h2, .h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  background: linear-gradient(135deg, #33A4D5 0%, #2986B7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.h1 {
  font-size: 2.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .h1 {
    font-size: 3rem;
  }
}
.h2 {
  font-size: 2rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .h2 {
    font-size: 2.5rem;
  }
}
.h3 {
  font-size: 1.5rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .h3 {
    font-size: 1.75rem;
  }
}
.h--plain {
  background: none !important;
  -webkit-text-fill-color: initial !important;
  color: #0f172a;
}

.h--white {
  background: none !important;
  -webkit-text-fill-color: initial !important;
  color: #ffffff !important;
}

.accordion {
  margin-bottom: 2.5rem;
}
.accordion__answer {
  margin-bottom: 0;
}
.accordion__answer h1, .accordion__answer h2, .accordion__answer h3, .accordion__answer h4 {
  color: rgb(51, 164, 213);
  font-weight: bold;
}
.accordion__answer ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 2rem;
}
.accordion__answer ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.accordion__answer ul li:before {
  content: "";
  background-color: rgb(51, 164, 213);
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  left: 0;
  top: 12px;
}
.accordion > *:last-child {
  margin-bottom: 0;
}

.app-store-buttons {
  background-color: #ffffff;
  padding: 4rem 0 5rem;
}
.app-store-buttons__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
  position: relative;
}
.app-store-buttons__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #33A4D5 0%, #2986B7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (min-width: 768px) {
  .app-store-buttons__title {
    font-size: 1.875rem;
  }
}
.app-store-buttons__description {
  color: #475569;
  font-size: 1.125rem;
  margin-bottom: 2.25rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.app-store-buttons__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
}
@media (min-width: 640px) {
  .app-store-buttons__wrapper {
    flex-direction: row;
  }
}
.app-store-buttons__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  border-radius: 0.9rem;
  padding: 0.85rem 1.6rem;
  text-decoration: none;
  border: 1px solid rgba(51, 164, 213, 0.15);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 12px 20px -8px rgba(15, 23, 42, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.app-store-buttons__button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(51, 164, 213, 0.08), rgba(41, 134, 183, 0.04));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.app-store-buttons__button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 24px 36px -14px rgba(51, 164, 213, 0.25);
  border-color: rgba(51, 164, 213, 0.35);
}
.app-store-buttons__button:hover::after {
  opacity: 1;
}
.app-store-buttons__button--google {
  color: #33A4D5;
  border-color: rgba(51, 164, 213, 0.25);
}
.app-store-buttons__button--apple {
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.12);
}
.app-store-buttons__icon {
  width: 2rem;
  height: 2rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}
.app-store-buttons__text {
  text-align: left;
}
.app-store-buttons__label {
  font-size: 0.75rem;
  font-weight: 400;
  color: #475569;
}
.app-store-buttons__name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.cta-section {
  padding: 4rem 0;
}
.cta-section--gradient {
  background: linear-gradient(135deg, rgb(51, 164, 213) 0%, rgb(41, 134, 183) 100%);
  color: #ffffff;
}
.cta-section--gradient .cta-section__divider {
  background-color: #ffffff;
}
.cta-section--gradient .cta-section__button {
  background-color: #ffffff;
  color: rgb(51, 164, 213);
}
.cta-section--gradient .cta-section__button:hover {
  background-color: #f3f4f6;
}
.cta-section--white {
  background-color: #ffffff;
  color: #1f2937;
}
.cta-section--white .cta-section__divider {
  background-color: rgb(51, 164, 213);
}
.cta-section--white .cta-section__button {
  background-color: rgb(51, 164, 213);
  color: #ffffff;
}
.cta-section--white .cta-section__button:hover {
  background-color: rgb(41, 134, 183);
}
.cta-section--gray {
  background-color: #f9fafb;
  color: #1f2937;
}
.cta-section--gray .cta-section__divider {
  background-color: rgb(51, 164, 213);
}
.cta-section--gray .cta-section__button {
  background-color: rgb(51, 164, 213);
  color: #ffffff;
}
.cta-section--gray .cta-section__button:hover {
  background-color: rgb(41, 134, 183);
}
.cta-section__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.cta-section__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .cta-section__title {
    font-size: 2.25rem;
  }
}
.cta-section__divider {
  height: 0.25rem;
  width: 6rem;
  margin: 0 auto 1.5rem;
  opacity: 0.75;
  border-radius: 9999px;
}
.cta-section__description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.cta-section__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .cta-section__actions {
    flex-direction: row;
  }
}
.cta-section__button {
  font-weight: 700;
  border-radius: 9999px;
  padding: 1rem 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.cta-section__button:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: scale(1.05);
}

.feature-card-wrapper {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.feature-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  border: 1px solid #f9fafb;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-color: #33A4D5;
  border-radius: 1rem 1rem 0 0;
}
.feature-card:hover {
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  border-color: #f8fafc;
  transform: translateY(-0.25rem);
}
.feature-card__header {
  padding: 2rem 2rem 1.25rem;
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}
.feature-card__icon-wrapper {
  padding: 0.75rem;
  border-radius: 0.75rem;
  background-color: #f8fafc;
  margin-right: 1rem;
  flex-shrink: 0;
}
.feature-card__icon {
  width: 2rem;
  height: 2rem;
  color: #33A4D5;
}
.feature-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}
.feature-card__description {
  color: #475569;
  margin: 0 2rem 1.5rem;
  line-height: 1.5;
}
.feature-card__list {
  list-style: none;
  padding: 0;
  margin: 0 2rem 1.75rem;
  position: relative;
  z-index: 10;
}
.feature-card__list-item {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  margin-bottom: 0.75rem;
}
.feature-card__list-item:last-child {
  margin-bottom: 0;
}
.feature-card:hover .feature-card__list-item {
  background-color: #f8fafc;
}
.feature-card__check-icon {
  flex-shrink: 0;
  margin-right: 0.75rem;
  background-color: rgba(51, 164, 213, 0.1);
  border-radius: 50%;
  padding: 0.375rem;
  transition: all 0.3s ease;
}
.feature-card__check-icon svg {
  width: 1rem;
  height: 1rem;
  color: #33A4D5;
}
.feature-card:hover .feature-card__check-icon {
  background-color: rgba(51, 164, 213, 0.3);
}
.feature-card__list-text {
  color: #0f172a;
  font-weight: 500;
}
.feature-card__footer {
  margin-top: auto;
  padding: 0 2rem 2rem;
}
.feature-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #33A4D5;
  color: #ffffff;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  width: 100%;
  text-align: center;
  text-decoration: none;
}
.feature-card__button:hover {
  background-color: #2986B7;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
  transform: scale(1.05);
}
.feature-card__button-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.5rem;
  display: inline-block;
}

.feature-card-grid {
  padding: 4rem 0;
  background-color: #ffffff;
}
.feature-card-grid__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.feature-card-grid__items {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}
.feature-card-grid__items--cols-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .feature-card-grid__items--cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.feature-card-grid__items--cols-3 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .feature-card-grid__items--cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .feature-card-grid__items--cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature-card-grid__items--cols-4 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .feature-card-grid__items--cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .feature-card-grid__items--cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-grid {
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.feature-grid--gradient {
  background: linear-gradient(135deg, #33A4D5 0%, #2986B7 100%);
  color: #ffffff;
  border-radius: 1rem;
  margin: 0 1rem 5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
@media (min-width: 1024px) {
  .feature-grid--gradient {
    margin: 0 auto 5rem;
    max-width: 80rem;
  }
}
.feature-grid--white {
  background-color: #ffffff;
  color: #0f172a;
}
.feature-grid--gray {
  background-color: #f9fafb;
  color: #0f172a;
}
.feature-grid__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}
.feature-grid__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .feature-grid__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.feature-grid__item {
  transition: transform 0.3s ease;
}
.feature-grid__item:hover {
  transform: scale(1.05);
}
.feature-grid__item-content {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  transition: background-color 0.3s ease;
}
@media (min-width: 768px) {
  .feature-grid__item-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
    text-align: left;
  }
}
.feature-grid--white .feature-grid__item-content {
  background-color: #ffffff;
  border-color: #f8fafc;
}
.feature-grid--gray .feature-grid__item-content {
  background-color: #ffffff;
  border-color: #f8fafc;
}
.feature-grid__item:hover .feature-grid__item-content {
  background-color: rgba(255, 255, 255, 0.2);
}
.feature-grid__icon-wrapper {
  background-color: #ffffff;
  color: #33A4D5;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .feature-grid__icon-wrapper {
    margin-bottom: 0;
    margin-right: 1rem;
  }
}
.feature-grid__item:hover .feature-grid__icon-wrapper {
  transform: scale(1.1);
}
.feature-grid__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: block;
}
.feature-grid__text {
  flex: 1;
}
.feature-grid__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.feature-grid--gradient .feature-grid__title {
  color: #ffffff;
}
.feature-grid--white .feature-grid__title, .feature-grid--gray .feature-grid__title {
  color: #0f172a;
}
.feature-grid__description {
  opacity: 0.9;
  line-height: 1.5;
}
.feature-grid--gradient .feature-grid__description {
  color: #ffffff;
}
.feature-grid--white .feature-grid__description, .feature-grid--gray .feature-grid__description {
  color: #475569;
}
.feature-grid__decoration {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
}
.feature-grid__decoration--top {
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  margin-right: -8rem;
  margin-top: -8rem;
}
.feature-grid__decoration--bottom {
  bottom: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  margin-left: -12rem;
  margin-bottom: -12rem;
}

.hero {
  background: linear-gradient(135deg, rgb(51, 164, 213) 0%, rgb(41, 134, 183) 100%);
  color: #ffffff;
  padding: 6rem 0 6rem;
  margin-top: -3.125rem;
  position: relative;
  padding-top: 250px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(51, 164, 213) 0%, rgba(51, 164, 213, 0.7) 50%, rgba(51, 164, 213, 0.25) 80%, rgba(51, 164, 213, 0) 100%), linear-gradient(180deg, rgba(51, 164, 213, 0.8), rgba(51, 164, 213, 0.5));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.hero.hero--has-bg::before {
  opacity: 1;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero__bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}
.hero--centered .hero__content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}
.hero--split .hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .hero--split .hero__container {
    flex-direction: row;
    gap: 4rem;
  }
}
.hero--split .hero__content {
  flex: 1;
  text-align: left;
  margin-top: 2.5rem;
  max-width: 42rem;
}
.hero--split .hero__content .hero__title {
  margin-bottom: 1rem;
}
.hero--split .hero__content .hero__subtitle {
  margin-bottom: 1.5rem;
}
.hero--split .hero__content .hero__description {
  margin-bottom: 2rem;
}
.hero--split .hero__content .hero__actions {
  justify-content: flex-start;
}
.hero--split .hero__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero--split .hero__image-wrapper {
    justify-content: flex-end;
  }
}
.hero__content--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 3rem;
  }
}
.hero__subtitle {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 2rem;
  opacity: 0.75;
  line-height: 1.5;
}
.hero__description {
  font-size: 1.125rem;
  color: #ffffff;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}
.hero__description p {
  margin-bottom: 1rem;
}
.hero__description p:last-child {
  margin-bottom: 0;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
  }
}
.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 2px solid rgb(51, 164, 213);
  color: rgb(51, 164, 213);
  font-weight: 700;
  border-radius: 0.5rem;
  padding: 1rem 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
  opacity: 0.9;
}
.hero__button:hover {
  opacity: 1;
  transform: scale(1.05);
}
.hero__badge-wrapper {
  margin-top: 1rem;
}
.hero__image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 auto;
  max-width: 100%;
}
.hero__image {
  display: block;
  width: clamp(220px, 45vw, 32rem);
  height: auto;
  max-width: 100%;
  max-height: 500px;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}
@media (min-width: 768px) {
  .hero__image {
    width: clamp(260px, 40vw, 32rem);
  }
}
.hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  height: 2.5rem;
  z-index: 3;
  pointer-events: none;
}

/* Header (BEM) */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent; /* prevent layout jump */
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  /* Scrolled state */
  /* Unscrolled: slight white separator to lift from content */
  /* Menu open (mobile): keep white header and readable content */
  /* Mobile: no backdrop blur when menu open (avoid logo/content blur perception) */
  /* Taller header on desktop */
  /* make logo white on transparent header (assumes dark logo) */
  /* when menu is open (even if not scrolled), keep normal (dark) logo for white bg */
  /* Explicit states for hamburger icon */
  /* Actions (language switcher + CTA) */
  /* At top (not scrolled): make CTA white */
  /* Mobile: CTA always blue */
}
body.scrolled .header {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.75) 35%, rgba(255, 255, 255, 0.78) 70%, rgb(255, 255, 255) 100%); /* glass gradient */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
}
body:not(.scrolled) .header {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}
body.menu-open .header {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  -webkit-backdrop-filter: saturate(180%) blur(4px);
  backdrop-filter: saturate(180%) blur(4px);
}
@media (max-width: 991.98px) {
  body.menu-open .header {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
}
.header__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  height: 76px;
  display: flex;
  align-items: center; /* vertical center */
  justify-content: space-between;
  position: relative;
  gap: 12px;
}
@media (min-width: 992px) {
  .header__container {
    height: 92px;
  }
  .header__logo {
    height: 36px;
  }
}
.header__brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.header__logo {
  height: 32px;
  width: auto;
  display: block;
  transition: filter 0.25s ease;
  vertical-align: middle;
  margin: 0;
}
body:not(.scrolled) .header__logo {
  filter: invert(100%);
}
body.menu-open .header__logo {
  filter: none !important;
}
.header__toggle {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1f2937;
}
@media (min-width: 992px) {
  .header__toggle {
    display: none;
  }
}
body:not(.scrolled) .header__toggle {
  color: #ffffff;
}
body.menu-open .header__toggle {
  color: #ffffff;
}
.header__toggle-icon {
  height: 24px;
  width: 24px;
  fill: currentColor;
  stroke: currentColor;
  color: inherit;
}
body:not(.scrolled) .header__toggle-icon {
  fill: #ffffff;
  stroke: #ffffff;
}
body.menu-open .header__toggle-icon {
  fill: #ffffff !important;
  stroke: #ffffff !important;
}
body.scrolled .header__toggle-icon {
  fill: #1f2937;
  stroke: #1f2937;
}
.header__menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  padding: 12px 16px;
  display: none;
  z-index: 110; /* above overlay */
}
.header__menu--open {
  display: block;
}
@media (min-width: 992px) {
  .header__menu {
    position: static;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    display: flex !important; /* override any legacy .hidden display:none */
    align-items: center;
    gap: 24px;
  }
}
.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.16); /* needed for backdrop-filter to apply */
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  backdrop-filter: saturate(140%) blur(8px);
  z-index: 90;
  transition: backdrop-filter 0.2s ease, background 0.2s ease;
}
.header__nav {
  display: block;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
@media (min-width: 992px) {
  .header__actions {
    margin-top: 0;
  }
}
.header__cta {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #33A4D5, #2986B7);
  box-shadow: 0 10px 18px -8px rgba(41, 134, 183, 0.6);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 22px -8px rgba(41, 134, 183, 0.5);
}
.header__cta:active {
  transform: translateY(0);
}
.header__cta-link {
  text-decoration: none;
}
body:not(.scrolled) .header .header__cta {
  background: #ffffff;
  color: #1f2937;
  box-shadow: 0 8px 14px -8px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.85);
}
body:not(.scrolled) .header .header__cta:hover {
  box-shadow: 0 12px 18px -8px rgba(0, 0, 0, 0.28);
}
@media (max-width: 991.98px) {
  .header {
    /* lock scroll on mobile when menu is open */
    /* Mobile: Blue header bar and white logo/links when menu open */
  }
  .header .header__cta {
    background: linear-gradient(135deg, #33A4D5, #2986B7) !important;
    color: #ffffff !important;
    border: 0 !important;
    box-shadow: 0 10px 18px -8px rgba(41, 134, 183, 0.6) !important;
  }
  .header body.menu-open {
    overflow: hidden;
  }
  body.menu-open .header {
    background: linear-gradient(180deg, #33A4D5 0%, #2986B7 100%) !important;
    border-bottom-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  }
  body.menu-open .header__logo {
    filter: invert(100%) !important;
  }
  .header body.menu-open .nav__link,
  .header body.menu-open .nav__dropdown-link {
    color: #ffffff !important;
  }
  .header body.menu-open .nav__link:hover {
    background: rgba(255, 255, 255, 0.12) !important;
  }
  .header body.menu-open .nav__link::after,
  .header body.menu-open .nav__item.is-active > .nav__link::after {
    background: rgba(255, 255, 255, 0.95) !important;
  }
}

/* Primary nav */
.nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* Desktop + not scrolled: underline white to match transparent header */
  /* While menu is open (mobile), enforce dark links */
  /* When mobile menu is open, force dark links on white background */
  /* Desktop + not scrolled: active underline white */
  /* Dropdown */
  /* show dropdown: desktop hover, mobile when is-open set via JS */
  /* Mobile: make dropdown use full width and wrap text nicely */
}
@media (min-width: 992px) {
  .nav {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
}
.nav__item {
  position: relative;
}
.nav__link, .nav__link:visited {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #1f2937; /* default on white */
  transition: color 0.2s ease, background 0.2s ease;
  font-weight: 500; /* medium for cleaner look */
  letter-spacing: 0.01em;
  line-height: 1.2;
  font-size: 17px;
  position: relative;
  /* fancy hover underline */
}
@media (min-width: 992px) {
  .nav__link, .nav__link:visited {
    font-size: 18px;
    padding: 14px 14px; /* more vertical space on desktop */
  }
}
body:not(.scrolled) .nav__link, body:not(.scrolled) .nav__link:visited {
  color: #ffffff;
}
.nav__link:hover, .nav__link:visited:hover {
  background: rgba(0, 0, 0, 0.04);
}
body:not(.scrolled) .nav__link:hover, body:not(.scrolled) .nav__link:visited:hover {
  background: rgba(255, 255, 255, 0.12);
}
.nav__link::after, .nav__link:visited::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: #33A4D5;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  border-radius: 2px;
}
.nav__link:hover::after, .nav__link:visited:hover::after {
  transform: scaleX(1);
}
@media (min-width: 992px) {
  body:not(.scrolled) .nav__link::after {
    background: rgba(255, 255, 255, 0.95);
  }
}
body.menu-open .nav__link, body.menu-open .nav__dropdown-link {
  color: #1f2937 !important;
}
.header__menu--open .nav__link, .header__menu--open .nav__dropdown-link {
  color: #1f2937 !important;
}
.header__menu--open .nav__link:hover {
  background: rgba(0, 0, 0, 0.04);
}
.nav__link--button {
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav__item.is-active > .nav__link, .nav__dropdown-link.is-active {
  font-weight: 700;
  position: relative;
}
.nav__item.is-active > .nav__link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: #33A4D5;
  border-radius: 2px;
}
@media (min-width: 992px) {
  body:not(.scrolled) .nav__item.is-active > .nav__link::after {
    background: rgba(255, 255, 255, 0.95);
  }
}
.nav__dropdown {
  position: static;
  display: none;
  padding-left: 10px;
  margin-top: 6px;
}
@media (min-width: 992px) {
  .nav__dropdown {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    min-width: 220px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
    padding: 8px;
    margin-top: 0;
  }
}
.nav__dropdown-link {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #1f2937;
  text-decoration: none;
  white-space: nowrap;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0.005em;
}
@media (min-width: 992px) {
  .nav__dropdown-link {
    font-size: 17px;
  }
}
.nav__dropdown-link:hover {
  background: #f5f7fb;
}
@media (min-width: 992px) {
  .nav__item.has-dropdown:hover > .nav__dropdown {
    display: block;
  }
}
.nav__item.is-open > .nav__dropdown {
  display: block;
}
@media (max-width: 991.98px) {
  .nav__dropdown {
    position: static;
    width: 100%;
    max-width: 100%;
    padding: 6px 0 0 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .nav__dropdown-link {
    width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

/* Footer enhancements (BEM) for templates/components/_footer.html.twig */
.footer {
  position: relative;
  background: #ffffff;
  /* Logo */
  /* Contact */
  /* Payments */
  /* Icon circles for better visual balance */
  /* Brand-ish accents without hardcoding brand palettes too much */
  /* Section title */
  /* Nav */
  /* Column divider on md+ */
}
.footer__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}
.footer__grid {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}
@media (min-width: 768px) {
  .footer__grid {
    flex-direction: row;
    align-items: flex-start;
  }
}
.footer__logo {
  max-width: 300px;
  height: 42px;
  width: auto;
  image-rendering: -webkit-optimize-contrast;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: transform 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
  display: inline-block;
  vertical-align: middle;
}
.footer__brand-link:hover .footer__logo {
  transform: translateY(-1px);
  opacity: 0.95;
}
.footer__brand {
  flex: 1 1 0;
  color: #0f172a;
  font-size: 0.95rem;
  line-height: 1.7;
}
.footer__legal {
  flex: 1 1 0;
}
.footer__contact {
  color: #475569;
  margin-top: 0.65rem;
}
.footer__email {
  position: relative;
  transition: color 0.2s ease;
  color: #2986B7; /* refined brand-ish blue */
  text-decoration: none;
}
.footer__email::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: rgba(51, 164, 213, 0.75);
  transition: width 0.25s ease;
}
.footer__email:hover::after {
  width: 100%;
}
.footer__email:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(51, 164, 213, 0.18);
  border-radius: 4px;
}
.footer__payments {
  margin-top: 1rem;
}
.footer__payments-title {
  color: #475569;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.footer__payments-list {
  gap: 0.5rem;
  display: flex;
  flex-wrap: wrap;
}
.footer__payment-pill {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, outline-color 0.18s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-size: 0.85rem;
  padding: 0.5rem 0.9rem 0.5rem 0.6rem;
  outline: 2px solid transparent;
}
.footer__payment-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  background: #f9fafb;
  outline-color: rgba(51, 164, 213, 0.12);
}
.footer__payment-pill:focus-within {
  outline-color: rgba(51, 164, 213, 0.18);
}
.footer__payment-icon {
  vertical-align: middle;
  margin-right: 4px;
}
.footer__payment-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}
.footer__payment-icon.fa-cc-paypal {
  color: #33A4D5;
  background: rgba(51, 164, 213, 0.12);
  border-color: rgba(51, 164, 213, 0.25);
}
.footer__payment-icon.fa-apple {
  color: #ffffff;
  background: #0f172a;
  border-color: rgba(15, 23, 42, 0.5);
  box-shadow: none;
}
.footer__payment-icon.fa-google-pay {
  color: #0f172a;
  background: #f9fafb;
}
.footer__payment-icon.fa-credit-card {
  color: #2986B7;
  background: rgba(51, 164, 213, 0.12);
  border-color: rgba(51, 164, 213, 0.25);
}
.footer__section-title {
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 0.85rem;
}
.footer__nav a {
  display: inline-flex;
  align-items: center;
  color: #475569;
  padding: 6px 0;
  text-decoration: none;
  background: linear-gradient(currentColor, currentColor) left bottom/0 2px no-repeat;
  transition: color 0.2s ease, transform 0.2s ease, background-size 0.25s ease;
}
.footer__nav a:hover {
  color: #33A4D5;
  transform: translateX(2px);
  background-size: 100% 2px;
}
.footer__nav a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(51, 164, 213, 0.18);
  border-radius: 4px;
}
@media (min-width: 768px) {
  .footer__grid {
    position: relative;
  }
  .footer__grid::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0));
    transform: translateX(-0.5px);
    pointer-events: none;
  }
}
@media (max-width: 767.98px) {
  .footer__grid {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .footer__brand {
    margin-bottom: 1rem;
  }
}

.decorative-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5rem;
  overflow: hidden;
  z-index: 50;
  pointer-events: none;
  margin-bottom: -1px;
}
.decorative-wave--top {
  top: 0;
  bottom: auto;
  transform: rotate(180deg);
}

.icon-list {
  padding: 4rem 0;
  background-color: #ffffff;
}
.icon-list__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.icon-list__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  margin-bottom: 3rem;
}
.icon-list__grid {
  display: grid;
  gap: 2rem;
}
.icon-list__grid--cols-1 {
  grid-template-columns: 1fr;
}
.icon-list__grid--cols-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .icon-list__grid--cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.icon-list__grid--cols-3 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .icon-list__grid--cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .icon-list__grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.icon-list__item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}
.icon-list__item:hover {
  background-color: #f9fafb;
  transform: translateX(0.5rem);
}
.icon-list__icon-wrapper {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background-color: rgba(51, 164, 213, 0.1);
}
.icon-list__icon {
  width: 1.75rem;
  height: 1.75rem;
  color: rgb(51, 164, 213);
}
.icon-list__content {
  flex: 1;
}
.icon-list__item-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.icon-list__description {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.image-text {
  padding: 4rem 0;
  background-color: #ffffff;
}
.image-text__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .image-text__container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .image-text--left .image-text__container {
    grid-template-columns: 1fr 1fr;
  }
  .image-text--left .image-text__container .image-text__image-wrapper {
    order: -1;
  }
}
.image-text__subtitle {
  color: #33A4D5;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.image-text__title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .image-text__title {
    font-size: 2.5rem;
  }
}
.image-text__text {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.image-text__text p {
  margin-bottom: 1rem;
}
.image-text__text p:last-child {
  margin-bottom: 0;
}
.image-text__text ul, .image-text__text ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.image-text__text li {
  margin-bottom: 0.5rem;
}
.image-text__actions {
  margin-top: 2rem;
}
.image-text__button {
  display: inline-block;
  background-color: #33A4D5;
  color: #ffffff;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1);
}
.image-text__button:hover {
  background-color: #2986B7;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.1);
}
.image-text__image-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.image-text__image {
  width: 100%;
  height: auto;
  display: block;
}

.pricing-table {
  padding: 4rem 0 5rem;
  background-color: #ffffff;
}
.pricing-table__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.pricing-table__title {
  text-align: center;
  margin: 0;
}
.pricing-table__subtitle {
  text-align: center;
  color: #475569;
  max-width: 48rem;
  margin: 0.5rem auto 0;
}
.pricing-table__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  justify-content: center;
  align-items: stretch;
}
@media (min-width: 768px) {
  .pricing-table__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pricing-table__grid--cols-2 {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .pricing-table__grid--cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pricing-table__grid--cols-3 {
  max-width: 96rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .pricing-table__grid--cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pricing-table__grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pricing-table__grid--cols-4 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 112rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .pricing-table__grid--cols-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .pricing-table__grid--cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.pricing-table__card, .pricing-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0.96) 100%);
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid rgba(51, 164, 213, 0.12);
  box-shadow: 0 8px 18px -10px rgba(15, 23, 42, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pricing-table__card:hover, .pricing-plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 36px -16px rgba(51, 164, 213, 0.28);
  border-color: rgba(51, 164, 213, 0.28);
}
.pricing-table__card::after, .pricing-plan::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(51, 164, 213, 0.06), rgba(41, 134, 183, 0.03));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.pricing-table__card:hover::after, .pricing-plan:hover::after {
  opacity: 1;
}
.pricing-table__card--highlight {
  border-color: rgba(51, 164, 213, 0.45);
  box-shadow: 0 30px 50px -18px rgba(51, 164, 213, 0.38);
}
.pricing-table__card--highlight .pricing-table__button, .pricing-table__card--highlight .pricing-plan__button {
  background: linear-gradient(135deg, #33A4D5 0%, #2986B7 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 18px 30px -16px rgba(51, 164, 213, 0.4);
}
.pricing-table__header {
  margin-bottom: 1.25rem;
  padding-top: 0.75rem;
}
.pricing-table__name, .pricing-plan__name {
  margin: 0 0 0.5rem;
}
.pricing-table__description, .pricing-plan__description {
  color: #475569;
  font-size: 0.95rem;
}
.pricing-table__description, .pricing-plan__description {
  margin: 0 0 1rem;
}
.pricing-table__price {
  margin: 1rem 0 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f8fafc;
}
.pricing-table__price-value {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1;
}
.pricing-table__price-period {
  color: #475569;
  margin-left: 0.35rem;
}
.pricing-table__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  flex: 1;
}
.pricing-table__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #475569;
  margin-bottom: 0.85rem;
}
.pricing-table__feature:last-child {
  margin-bottom: 0;
}
.pricing-table__feature::before {
  content: "✓";
  color: #33A4D5;
  font-weight: 800;
  margin-right: 0.25rem;
}
.pricing-table__actions {
  margin-top: auto;
}
.pricing-table__button, .pricing-plan__button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.9rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  background-color: rgba(51, 164, 213, 0.08);
  color: #33A4D5;
  border: 1px solid rgba(51, 164, 213, 0.18);
}
.pricing-table__button:hover, .pricing-plan__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -14px rgba(51, 164, 213, 0.3);
  background-color: rgba(51, 164, 213, 0.12);
}
.pricing-table__badge {
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #ffffff;
  border-radius: 9999px;
  background: linear-gradient(135deg, #33A4D5 0%, #2986B7 100%);
  box-shadow: 0 10px 18px -10px rgba(51, 164, 213, 0.5);
  pointer-events: none;
  z-index: 2;
}

.stats-card-wrapper {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  padding: 3rem 0;
}

.stats-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border-radius: 1.25rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(51, 164, 213, 0.12);
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -1px rgba(15, 23, 42, 0.04);
}
.stats-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgb(51, 164, 213) 0%, rgb(41, 134, 183) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.stats-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px -12px rgba(51, 164, 213, 0.25);
  border-color: rgba(51, 164, 213, 0.28);
}
.stats-card:hover::before {
  transform: scaleX(1);
}
.stats-card:hover .stats-card__icon-wrapper {
  transform: scale(1.08) rotate(4deg);
  box-shadow: 0 12px 22px -8px rgba(51, 164, 213, 0.35);
}
.stats-card:hover .stats-card__value {
  color: rgb(41, 134, 183);
}
.stats-card__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.stats-card__icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(51, 164, 213, 0.1) 0%, rgba(51, 164, 213, 0.05) 100%);
  border: 2px solid rgba(51, 164, 213, 0.22);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.stats-card__icon-wrapper svg {
  width: 2.2rem;
  height: 2.2rem;
  color: rgb(51, 164, 213);
}
.stats-card__value {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, rgb(51, 164, 213) 0%, rgb(41, 134, 183) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stats-card__label {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #475569;
}

.stats-card-grid {
  padding: 4rem 0 5rem;
  background: #ffffff;
}
.stats-card-grid__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.stats-card-grid__items {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.stats-card-grid__items--cols-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .stats-card-grid__items--cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stats-card-grid__items--cols-3 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .stats-card-grid__items--cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .stats-card-grid__items--cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.stats-card-grid__items--cols-4 {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .stats-card-grid__items--cols-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .stats-card-grid__items--cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-member-wrapper {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  padding: 3rem 0;
}

.team-member {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.team-member__image-wrapper {
  height: 16rem;
  background-color: #f8fafc;
  overflow: hidden;
}
.team-member__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.team-member__content {
  padding: 2rem;
}
.team-member__badge {
  display: inline-block;
  background: linear-gradient(135deg, #33A4D5 0%, #2986B7 100%);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}
.team-member__name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #0f172a;
}
.team-member__description {
  color: #475569;
  line-height: 1.7;
}
.team-member__description p {
  margin-bottom: 1rem;
}
.team-member__description p:last-child {
  margin-bottom: 0;
}
.team-member__social {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
}
.team-member__social-link {
  color: #33A4D5;
  transition: color 0.2s ease;
}
.team-member__social-link:hover {
  color: #2986B7;
}
.team-member__social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.team-member-grid {
  padding: 4rem 0 5rem;
  background: #ffffff;
}
.team-member-grid__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.team-member-grid__items {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .team-member-grid__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.team-member-grid__items--cols-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .team-member-grid__items--cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.team-member-grid__items--cols-3 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .team-member-grid__items--cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .team-member-grid__items--cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.team-member-grid__items--cols-4 {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .team-member-grid__items--cols-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .team-member-grid__items--cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.testimonial-wrapper {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.testimonial {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  position: relative;
}
.testimonial__rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.testimonial__star {
  width: 1.25rem;
  height: 1.25rem;
  color: #f59e0b;
}
.testimonial__quote {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #374151;
  margin: 0 0 2rem;
  position: relative;
  font-style: italic;
}
.testimonial__quote-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: rgb(51, 164, 213);
  opacity: 0.2;
  position: absolute;
  top: -1rem;
  left: -0.5rem;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}
.testimonial__author-image {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgb(51, 164, 213);
}
.testimonial__author-info {
  flex: 1;
}
.testimonial__author-name {
  font-weight: 700;
  color: #1f2937;
  font-size: 1rem;
}
.testimonial__author-role {
  color: #6b7280;
  font-size: 0.875rem;
}

.text-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  overflow-x: hidden;
  overflow-y: clip;
  height: auto;
}
.text-section h1, .text-section h2, .text-section h3, .text-section h4 {
  color: rgb(51, 164, 213);
  font-weight: bold;
}
.text-section ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 2rem;
}
.text-section ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.text-section ul li:before {
  content: "";
  background-color: rgb(51, 164, 213);
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  left: 0;
  top: 12px;
}
.text-section__decor {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 34rem;
  height: 34rem;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51, 164, 213, 0.06) 0%, transparent 70%);
}
.text-section__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 60rem;
}
.text-section__header {
  text-align: center;
  margin-bottom: 2rem;
}
.text-section__title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 auto 0.75rem;
  background: linear-gradient(135deg, #33A4D5 0%, #2986B7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-section__underline {
  display: block;
  width: 88px;
  height: 4px;
  margin: 0.25rem auto 1.25rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, rgba(51, 164, 213, 0.9), rgba(41, 134, 183, 0.9));
  box-shadow: 0 6px 12px -6px rgba(51, 164, 213, 0.6);
}
.text-section__subtitle {
  font-size: 1.25rem;
  line-height: 1.75;
  color: #475569;
  max-width: 46rem;
  margin: 0 auto 2rem;
}
.text-section__body {
  margin: 0 auto;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(51, 164, 213, 0.12);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 18px -10px rgba(15, 23, 42, 0.2);
}
.text-section.text-section--dark {
  background: linear-gradient(135deg, rgba(51, 164, 213, 0.08) 0%, rgba(41, 134, 183, 0.06) 100%);
}
.text-section.text-section--dark__decor {
  background: radial-gradient(circle, rgba(51, 164, 213, 0.12) 0%, transparent 70%);
}
.text-section.text-section--dark__title {
  background: linear-gradient(135deg, #33A4D5 0%, #2986B7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-section.text-section--dark__subtitle {
  color: #475569;
}
.text-section.text-section--dark__underline {
  background: linear-gradient(90deg, rgba(51, 164, 213, 0.95), rgba(41, 134, 183, 0.95));
  box-shadow: 0 8px 16px -6px rgba(51, 164, 213, 0.35);
}
.text-section.text-section--dark__body {
  color: #0f172a;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(51, 164, 213, 0.18);
  box-shadow: 0 14px 24px -12px rgba(15, 23, 42, 0.15);
}

.prose p {
  margin: 0 0 1rem;
  line-height: 1.8;
}
.prose h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 1.75rem 0 0.75rem;
}
.prose h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
}
.prose h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 1.25rem 0 0.5rem;
}
.prose ul {
  padding-left: 1.25rem;
  margin: 0.75rem 0 1rem;
}
.prose ol {
  padding-left: 1.25rem;
  margin: 0.75rem 0 1rem;
}
.prose li {
  margin: 0.375rem 0;
}
.prose a {
  color: #33A4D5;
  text-decoration: underline;
}
.prose blockquote {
  margin: 1rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid #33A4D5;
  background: #f8fafc;
  color: #334155;
  border-radius: 0.5rem;
}

.text h1, .text h2, .text h3, .text h4 {
  color: rgb(51, 164, 213);
  font-weight: bold;
}
.text ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 2rem;
}
.text ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.text ul li:before {
  content: "";
  background-color: rgb(51, 164, 213);
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  left: 0;
  top: 12px;
}

@media (prefers-color-scheme: dark) {
  .text-section:not(.text-section--light) {
    background: linear-gradient(135deg, rgba(51, 164, 213, 0.08) 0%, rgba(41, 134, 183, 0.06) 100%);
  }
  .text-section:not(.text-section--light) .text-section__decor {
    background: radial-gradient(circle, rgba(51, 164, 213, 0.12) 0%, transparent 70%);
  }
  .text-section:not(.text-section--light) .text-section__subtitle {
    color: #475569;
  }
  .text-section:not(.text-section--light) .text-section__underline {
    box-shadow: 0 8px 16px -6px rgba(51, 164, 213, 0.35);
  }
  .text-section:not(.text-section--light) .text-section__body {
    color: #0f172a;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(51, 164, 213, 0.18);
    box-shadow: 0 14px 24px -12px rgba(15, 23, 42, 0.15);
  }
  .text-section:not(.text-section--light) .prose a {
    color: #33A4D5;
  }
  .text-section:not(.text-section--light) .prose blockquote {
    background: #f8fafc;
    color: #334155;
    border-left-color: #33A4D5;
  }
}
.video-embed {
  padding: 4rem 0;
  background-color: #ffffff;
}
.video-embed__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.video-embed__container--large {
  max-width: 56.25rem;
}
.video-embed__container--medium {
  max-width: 43.75rem;
}
.video-embed__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  margin-bottom: 2rem;
}
.video-embed__wrapper {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.video-embed__wrapper--16-9 {
  padding-bottom: 56.25%;
}
.video-embed__wrapper--4-3 {
  padding-bottom: 75%;
}
.video-embed__wrapper--1-1 {
  padding-bottom: 100%;
}
.video-embed__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.image-gallery {
  padding: 4rem 0;
  background-color: #ffffff;
}
.image-gallery__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.image-gallery__title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 auto 2rem;
  text-align: center;
  background: linear-gradient(135deg, #33A4D5 0%, #2986B7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.image-gallery__grid {
  display: grid;
  gap: 1rem;
}
.image-gallery__grid--cols-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .image-gallery__grid--cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.image-gallery__grid--cols-3 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .image-gallery__grid--cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .image-gallery__grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.image-gallery__grid--cols-4 {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .image-gallery__grid--cols-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .image-gallery__grid--cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.image-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #ffffff;
  border: 1px solid rgba(51, 164, 213, 0.12);
  box-shadow: 0 6px 12px -6px rgba(15, 23, 42, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-gallery__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -10px rgba(51, 164, 213, 0.25);
}
.image-gallery__item--square {
  aspect-ratio: 1/1;
}
.image-gallery__item--landscape {
  aspect-ratio: 16/9;
}
.image-gallery__item--portrait {
  aspect-ratio: 3/4;
}
.image-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.65) 100%);
  color: #ffffff;
  font-size: 0.875rem;
}

.timeline {
  padding: 4rem 0 5rem;
  background: #ffffff;
  position: relative;
  overflow-x: hidden;
  overflow-y: clip;
  height: auto;
}
.timeline__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}
.timeline__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 auto 2.5rem;
  background: linear-gradient(135deg, #33A4D5 0%, #2986B7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.timeline__list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.timeline__list::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(51, 164, 213, 0.35), rgba(41, 134, 183, 0.15));
}
@media (min-width: 768px) {
  .timeline__list::before {
    left: 50%;
    transform: translateX(-50%);
  }
}
.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem 2rem;
  margin: 0 0 2rem;
}
@media (min-width: 768px) {
  .timeline__item {
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
  }
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 0.5rem;
  width: 14px;
  height: 14px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #33A4D5 0%, #2986B7 100%);
  box-shadow: 0 0 0 4px rgba(51, 164, 213, 0.12);
  transform: translate(-50%, 0);
}
@media (min-width: 768px) {
  .timeline__item::before {
    left: 50%;
  }
}
.timeline__date {
  color: #33A4D5;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-left: 2.5rem;
}
@media (min-width: 768px) {
  .timeline__date {
    text-align: right;
    margin: 0 1.5rem 0 0;
  }
}
.timeline__content {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(51, 164, 213, 0.12);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 10px 18px -10px rgba(15, 23, 42, 0.18);
  margin-left: 2.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .timeline__content {
    margin-left: 0;
  }
}
.timeline__content::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 1rem;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid rgba(51, 164, 213, 0.12);
}
.timeline__content::after {
  content: "";
  position: absolute;
  left: -7px;
  top: 1rem;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 7px solid #ffffff;
}
@media (min-width: 768px) {
  .timeline__content::before, .timeline__content::after {
    left: auto;
    right: calc(100% + 0px);
    transform: scaleX(-1);
  }
}
.timeline__item-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: #0f172a;
}
.timeline__description {
  color: #475569;
  line-height: 1.8;
}
.timeline__description p {
  margin: 0 0 0.75rem;
}
.timeline::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(51, 164, 213, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Language Switcher (BEM) */
.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  /* Keep menu within viewport on small screens */
}
.lang-switcher__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  cursor: pointer;
  appearance: none;
}
.lang-switcher__flag {
  display: inline-block;
  border-radius: 2px;
}
.lang-switcher__label {
  font-size: 14px;
  color: #222;
  display: none;
}
.lang-switcher__chevron {
  width: 16px;
  height: 16px;
  color: #666;
}
@media (min-width: 576px) {
  .lang-switcher__label {
    display: inline;
  }
}
.lang-switcher__menu {
  position: absolute;
  right: 0;
  left: auto;
  top: calc(100% + 8px);
  width: 200px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  padding: 6px;
  display: none;
  z-index: 50;
  box-sizing: border-box;
}
.lang-switcher__menu.is-open {
  display: block;
  min-width: 200px;
}
@media (max-width: 576px) {
  .lang-switcher__menu {
    left: 8px; /* safe gutters */
    right: 8px; /* anchor to visible area */
    width: auto; /* allow fluid width */
    max-width: calc(100vw - 16px);
  }
  .lang-switcher__item-label {
    font-size: 13.5px;
  }
}
.lang-switcher__item {
  display: flex;
  align-items: center; /* vertically center flag and multi-line label */
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
}
.lang-switcher__item:hover {
  background: #f5f7fb;
}
.lang-switcher__item-label {
  display: block;
  white-space: normal; /* allow wrapping */
  overflow-wrap: anywhere; /* break long words */
  line-height: 1.3;
  word-break: break-word;
  max-width: 100%;
}
.lang-switcher__flag {
  flex-shrink: 0;
  align-self: center;
  display: block;
}
.lang-switcher__item.is-active {
  opacity: 0.6;
  pointer-events: none;
}

/* Contact section - BEM component */
.contact {
  position: relative !important;
  overflow: hidden;
  /* Top wave */
  /* Section background */
  /* Container */
  /* Heading */
  /* Rule */
  /* Subtitle */
  /* Cards grid */
  /* Card */
  /* Card title */
  /* Card text */
  /* Link */
  /* Socials */
  /* CTA */
  /* Bottom wave */
}
.contact__wave-top {
  display: none !important;
}
.contact__wave-top-shape {
  display: none !important;
}
.contact__section {
  position: relative !important;
  color: #e2e8f0 !important;
  background: linear-gradient(135deg, #48add9 0%, #33A4D5 50%, #40aad8 100%) !important;
  padding-top: 3rem !important;
  padding-bottom: 2.5rem !important;
  margin-top: 0rem !important;
}
.contact__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center !important;
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
  position: relative;
  z-index: 1;
}
.contact__heading {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  letter-spacing: -0.01em !important;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.08) !important;
}
.contact__rule {
  margin-bottom: 0.75rem !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
}
.contact__rule-bar {
  width: 40px !important;
  height: 2px !important;
  margin: 0 !important;
  opacity: 0.6 !important;
  border-radius: 10px !important;
  background: linear-gradient(90deg, transparent, #ffffff, transparent) !important;
}
.contact__subtitle {
  font-size: 0.95rem !important;
  margin: 0 auto 1.25rem !important;
  max-width: 40rem !important;
  color: #ffffff !important;
  opacity: 0.9 !important;
  line-height: 1.5 !important;
  font-weight: 400 !important;
}
.contact__cards {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 1.25rem !important;
  margin-top: 1.25rem !important;
}
@media (min-width: 768px) {
  .contact__cards {
    flex-direction: row !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 1.25rem !important;
  }
}
.contact__card {
  max-width: 24rem !important;
  width: 100% !important;
  padding: 1.5rem !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.1) 100%) !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.12) inset !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  text-align: left !important;
  transition: all 0.3s ease !important;
  position: relative !important;
}
.contact__card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.18) inset !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.12) 100%) !important;
}
.contact__card--primary {
  border-color: rgba(255, 255, 255, 0.18) !important;
}
.contact__card--secondary {
  border-color: rgba(255, 255, 255, 0.15) !important;
}
.contact__card-title {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.75rem !important;
  color: #ffffff !important;
  letter-spacing: -0.01em !important;
}
.contact__card-text {
  margin-bottom: 1rem !important;
  line-height: 1.6 !important;
  color: #ffffff !important;
  opacity: 0.9 !important;
  font-size: 0.9rem !important;
}
.contact__link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  position: relative !important;
  transition: transform 0.25s ease !important;
  border-bottom: 2px solid transparent !important;
}
.contact__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px;
  width: 0;
  background: #ffffff;
  opacity: 0.8;
  transition: width 0.25s ease;
}
.contact__link:hover {
  transform: translateY(-1px) scale(1.02) !important;
}
.contact__link:hover::after {
  width: 100%;
}
.contact__link-icon {
  width: 20px !important;
  height: 20px !important;
  display: inline-block !important;
  margin-left: 0.25rem !important;
}
.contact__socials {
  display: flex !important;
  justify-content: center !important;
  gap: 0.75rem !important;
  margin-top: 1rem !important;
}
.contact__social {
  display: inline-flex !important;
  width: 40px !important;
  height: 40px !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.25s ease !important;
}
.contact__social:hover {
  transform: translateY(-2px) scale(1.05) !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}
.contact__social-icon {
  width: 20px !important;
  height: 20px !important;
  fill: #ffffff !important;
}
.contact__cta {
  margin-top: 1.5rem !important;
}
.contact__button {
  display: inline-block !important;
  padding: 0.875rem 2rem !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  color: #33A4D5 !important;
  background: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
}
.contact__button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
}
.contact__wave-bottom {
  position: absolute !important;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 60px;
  overflow: hidden;
  line-height: 0;
}
.contact__wave-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}
.contact__wave-bottom path {
  fill: #ffffff;
}
.contact__wave-bottom-image {
  display: none !important;
}

/*# sourceMappingURL=app.output.css.map */
