* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #4e3394;
  background: #fbf6ed;
  font-size: 0.95rem;
}

.pt-header-offset {
  padding-top: 86px;
}

.site-header {
  height: 86px;
  background: #fbf6ed;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(78, 51, 148, 0.1);
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header .navbar {
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

.header-container {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 24px rgba(78, 51, 148, 0.1);
}

.navbar-toggler {
  grid-column: 3;
  justify-self: end;
  border-color: rgba(244, 125, 50, 0.32);
  display: inline-flex;
}

@media (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }

  .header-nav {
    position: absolute;
    left: 50%;
    max-width: calc(100% - 390px);
    justify-self: unset;
    transform: translateX(-50%);
  }

  .header-actions {
    grid-column: 3;
    justify-self: end;
  }

  .site-header .header-menu {
    gap: 0.18rem;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(244, 125, 50, 0.24);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.brand-logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 150px;
}

.nav-link {
  color: #4e3394;
  font-weight: 400;
  font-size: 0.87rem;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: #f47d32;
}

.btn {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.85rem 1.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  line-height: 1;
  box-shadow: none;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, filter 0.25s ease;
}

.btn-primary-custom {
  border: 0;
  color: #ffffff;
  background: #f47d32;
  box-shadow: none;
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
  color: #ffffff;
  background: #f47d32;
  transform: translateY(-3px);
  box-shadow: none;
}

.btn-outline-custom {
  border: 0;
  color: #2a2b72;
  background: #ffffff;
  box-shadow: none;
}

.btn-outline-custom:hover,
.btn-outline-custom:focus {
  color: #2a2b72;
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: none;
}

.hero-section {
  padding: 0;
}

.hero-static-banner {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 58vh, 580px);
  width: 100%;
  border-radius: 0;
  display: flex;
  align-items: center;
  padding: 2.2rem;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 45%, rgba(255, 255, 255, 0.4) 100%),
    radial-gradient(circle at 78% 78%, rgba(255, 185, 101, 0.46), transparent 32%),
    radial-gradient(circle at 14% 12%, rgba(136, 199, 182, 0.32), transparent 28%),
    linear-gradient(140deg, #fbf6ed, #eadff5);
  border: 0;
}

.hero-static-content {
  max-width: 680px;
}

.hero-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-static-content > :not(.hero-img) {
  position: relative;
  z-index: 2;
}

.hero-title {
  margin: 0 0 0.9rem;
  font-size: clamp(1.25rem, 2.8vw, 2.55rem);
  line-height: 1.1;
  color: #4e3394;
  font-weight: 600;
}

.hero-title span {
  color: #f47d32;
}

.hero-subtitle {
  margin: 0 0 1.35rem;
  color: #5f5a78;
  font-size: clamp(0.6rem, 1.15vw, 1rem);
  line-height: 1.55;
}

.positioning-section {
  padding: 0;
}

.positioning-content {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(2rem, 4.8vw, 4.2rem);
  border: 0;
  border-radius: 24px;
  color: #ffffff;
  background: #4e3394;
  isolation: isolate;
}

.positioning-content::before,
.positioning-content::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.positioning-content::before {
  right: -5.5rem;
  top: -5rem;
  z-index: 0;
  width: clamp(12rem, 21vw, 21rem);
  aspect-ratio: 1;
  background: rgb(255 255 255 / 20%);
}

.positioning-content::after {
  left: -5rem;
  bottom: -7rem;
  z-index: 0;
  width: clamp(11rem, 18vw, 17rem);
  aspect-ratio: 1;
  background: rgb(255 255 255 / 10%);
}

.positioning-content > .row {
  position: relative;
  z-index: 1;
}

.positioning-eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1.2rem;
  padding: 0.48rem 1rem;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.positioning-content h2 {
  max-width: 760px;
  margin: 0 0 1.15rem;
  color: #ffffff;
  font-size: clamp(1.55rem, 2.75vw, 2.85rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.positioning-content p {
  max-width: 760px;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.88rem, 1vw, 0.96rem);
  line-height: 1.65;
}

.positioning-content p:last-child {
  margin-bottom: 0;
}

.positioning-media {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: clamp(310px, 32vw, 440px);
  border-radius: 22px;
  background: #2a2b72;
}

.positioning-media::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 18px;
  pointer-events: none;
}

.positioning-img {
  width: 100%;
  height: 100%;
  min-height: clamp(310px, 32vw, 440px);
  display: block;
  object-fit: cover;
  object-position: center;
}

.methodology-section {
  padding: 0;
}

.methodology-heading {
  margin: 0 0 2.7rem;
  color: #4e3394;
  font-size: clamp(1.65rem, 2.45vw, 2.35rem);
  font-weight: 600;
  line-height: 1.05;
  text-align: center;
}

.methodology-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.55rem;
}

.methodology-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin: 0 auto 2.1rem;
  color: #ffffff;
  font-size: 4.2rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: transform 0.25s ease;
}

.methodology-item {
  width: 100%;
  height: 100%;
  min-height: 390px;
  padding: 2.55rem 1.8rem 2.1rem;
  border-radius: 22px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
}

.methodology-item h3 {
  margin: 0 0 1.15rem;
  color: #ffffff;
  font-size: clamp(1.02rem, 1.3vw, 1.25rem);
  font-weight: 600;
  line-height: 1.22;
  text-transform: uppercase;
}

.methodology-item h3 span {
  display: block;
  text-transform: none;
}

.methodology-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.82rem, 0.95vw, 0.92rem);
  font-weight: 400;
  line-height: 1.75;
}

.methodology-item:hover .methodology-icon {
  transform: translateY(-4px) scale(1.04);
}

.methodology-purple {
  background: #f3e7f0;
  border: 1px solid #4e3394;
}
.methodology-purple .methodology-icon,
.methodology-purple h3,
.methodology-purple p {
  color: #4e3394;
}

.methodology-green {
  background: #f0f0e2;
  border: 1px solid #28813f;
}
.methodology-green .methodology-icon,
.methodology-green h3,
.methodology-green p {
  color: #28813f;
}

.methodology-orange {
  background: #fef2e7;
  border: 1px solid #f47d32;
}
.methodology-orange .methodology-icon,
.methodology-orange h3,
.methodology-orange p {
  color: #f47d32;
}

.methodology-blue {
  background: #e4e9ee;
  border: 1px solid #2a2b72;
}
.methodology-blue .methodology-icon,
.methodology-blue h3,
.methodology-blue p {
  color: #2a2b72;
}

.methodology-pink {
  background: #fde5e1;
  border: 1px solid #ef4a8d;
}
.methodology-pink .methodology-icon,
.methodology-pink h3,
.methodology-pink p {
  color: #ef4a8d;
}

.how-works-section {
  padding: 0;
}

.how-works-header {
  max-width: 1080px;
  margin: 0 auto 4rem;
}

.how-works-eyebrow {
  display: block;
  margin-bottom: 0.45rem;
  color: #f47d32;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.how-works-header h2 {
  margin: 0 0 1.05rem;
  color: #4e3394;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 600;
  line-height: 1.1;
}

.how-works-header p {
  max-width: 1050px;
  margin: 0 auto;
  color: #5f5a78;
  font-size: clamp(0.92rem, 1.25vw, 1.1rem);
  line-height: 1.7;
}

.how-works-header p strong {
  color: #4e3394;
  font-weight: 600;
}

.how-works-panel {
  height: 100%;
  min-height: 100%;
  padding: 2.8rem 2.75rem;
  border: 1px solid #eadfd6;
  border-radius: 28px;
  background: #fffdf7;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.how-works-panel:hover {
  border-color: #e1d2bf;
  background: #fffaf2;
  transform: translateY(-3px);
}

.how-works-card-title {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  margin-bottom: 2.05rem;
}

.how-works-title-icon {
  flex: 0 0 auto;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.18rem;
  line-height: 1;
}

.how-works-title-orange {
  color: #f47d32;
  background: #fef2e7;
}

.how-works-title-blue {
  color: #2a2b72;
  background: #e4e9ee;
}

.how-works-card-title h3 {
  margin: 0;
  color: #4e3394;
  font-size: clamp(1.45rem, 2.05vw, 1.9rem);
  font-weight: 600;
  line-height: 1.1;
}

.how-works-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.how-works-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 5rem;
  padding: 1rem 1.15rem;
  border: 1px solid #eee7df;
  border-radius: 18px;
  color: #4e3394;
  background: #ffffff;
  font-size: clamp(0.84rem, 1.05vw, 0.96rem);
  font-weight: 500;
  line-height: 1.35;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.how-works-list li:hover {
  border-color: #ded4cb;
  transform: translateX(4px);
}

.how-works-list-icon {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e4e9ee;
  color: #2a2b72;
  font-size: 1.12rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.how-works-list li:hover .how-works-list-icon {
  transform: rotate(-5deg) scale(1.08);
}

.how-works-list-purple {
  color: #2a2b72;
  background: #e4e9ee;
}

.how-works-list-green {
  color: #2a2b72;
  background: #e4e9ee;
}

.how-works-list-orange {
  color: #2a2b72;
  background: #e4e9ee;
}

.how-works-list-blue {
  color: #2a2b72;
  background: #e4e9ee;
}

.how-works-list-pink {
  color: #2a2b72;
  background: #e4e9ee;
}

.how-works-list-yellow {
  color: #2a2b72;
  background: #e4e9ee;
}

.how-works-modalities-panel {
  position: relative;
}

.how-works-modalities {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  margin-top: 0;
}

.how-works-modality {
  min-height: 6.5rem;
  padding: 1.15rem 1.3rem;
  border: 1px solid #eee7df;
  border-radius: 20px;
  background: #ffffff;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.how-works-modality + .how-works-modality {
  border-left: 1px solid #eee7df;
}

.how-works-modality:hover {
  border-color: #ded4cb;
  transform: translateX(4px);
}

.how-works-modality-icon {
  grid-row: 1 / span 2;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: #fef2e7;
  color: #f47d32;
  font-size: 1.12rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.how-works-modality:hover .how-works-modality-icon {
  transform: rotate(5deg) scale(1.08);
}

.how-works-modality-blue {
  color: #f47d32;
  background: #fef2e7;
}

.how-works-modality-orange {
  color: #f47d32;
  background: #fef2e7;
}

.how-works-modality-yellow {
  color: #f47d32;
  background: #fef2e7;
}

.how-works-modality-green {
  color: #f47d32;
  background: #fef2e7;
}

.how-works-modality-purple {
  color: #f47d32;
  background: #fef2e7;
}

.how-works-modality-pink {
  color: #f47d32;
  background: #fef2e7;
}

.how-works-modality h3 {
  margin: 0;
  color: #4e3394;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
}

.how-works-modality p {
  grid-column: 2;
  margin: 0.2rem 0 0;
  color: #5f5a78;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.3;
}

.party-section,
.welcome-section {
  padding: 0;
}

.party-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: clamp(320px, 28vw, 410px);
  border-radius: 22px;
  padding: clamp(2rem, 4.6vw, 4.2rem);
  color: #ffffff;
  background: #3e858a;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.party-img {
  width: min(78%, 200px);
  max-width: 200px;
  height: auto;
}

.party-content h2 {
  margin: 0 0 1.25rem;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.9vw, 2.65rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.party-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
}

.party-content p {
  max-width: 1010px;
  margin: 0 0 2.2rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(0.88rem, 1.25vw, 1.12rem);
  font-weight: 400;
  line-height: 1.55;
}

.party-content p strong {
  color: #ffffff;
  font-weight: 600;
}

.party-visual {
  position: relative;
  z-index: 2;
  width: clamp(9rem, 16vw, 15.5rem);
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.party-mobile-visual {
  display: none;
}

.party-visual-circle {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.party-btn {
  width: fit-content;
  min-width: 178px;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.85rem;
  color: #3e858a;
  background: #ffffff;
  box-shadow: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.party-btn:hover,
.party-btn:focus {
  color: #2a2b72;
  background: #ffffff;
  transform: translateY(-3px);
}

.welcome-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: clamp(350px, 32vw, 445px);
  border-radius: 22px;
  padding: clamp(2.2rem, 5vw, 4.2rem);
  color: #ffffff;
  background: #2a2b72;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.welcome-card::before,
.welcome-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.welcome-card::before {
  right: -3.2rem;
  top: -5.8rem;
  width: clamp(12rem, 20vw, 20rem);
  aspect-ratio: 1;
  background: rgb(255 255 255 / 20%);
}

.welcome-card::after {
  left: -5.1rem;
  bottom: -7.3rem;
  width: clamp(11rem, 17vw, 16rem);
  aspect-ratio: 1;
  background: rgb(255 255 255 / 10%);
}

.welcome-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
  padding: 0.55rem 1.45rem;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  font-size: clamp(0.7rem, 1.05vw, 0.9rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.welcome-card h2 {
  position: relative;
  z-index: 2;
  margin: 0 0 2rem;
  color: #ffffff;
  font-size: clamp(2rem, 3.7vw, 3.35rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.welcome-card p {
  position: relative;
  z-index: 2;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.92rem, 1.45vw, 1.22rem);
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
}

.welcome-btn {
  position: relative;
  z-index: 2;
  width: fit-content;
  min-width: min(100%, 340px);
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 2rem;
  color: #2a2b72;
  background: #e4e9ee;
  box-shadow: none;
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.welcome-btn:hover {
  color: #2a2b72;
  background: #e4e9ee;
}

.benefits-section {
  padding: 0;
}

.benefits-header {
  max-width: 880px;
  margin-bottom: 2.4rem;
}

.benefits-header span {
  display: block;
  margin-bottom: 0.55rem;
  color: #f47d32;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.benefits-header h2 {
  margin: 0 0 1rem;
  color: #4e3394;
  font-size: clamp(1.5rem, 2.35vw, 2.1rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.benefits-header p {
  max-width: 760px;
  margin: 0;
  color: #5f5a78;
  font-size: clamp(0.84rem, 0.95vw, 0.92rem);
  line-height: 1.65;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-card {
  position: relative;
  grid-column: span 4;
  min-height: 220px;
  padding: 1.55rem;
  border-radius: 24px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: -4.5rem;
  right: -4rem;
  z-index: 0;
  width: 13rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.benefit-card::after {
  content: "";
  position: absolute;
  left: -2rem;
  bottom: -4.5rem;
  z-index: 0;
  width: 8rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.benefit-card:hover {
  filter: saturate(1.08);
  transform: translateY(-5px);
}

.benefit-card-teal {
  background: #2a2b72;
}

.benefit-card-orange {
  background: #f47d32;
}

.benefit-card-purple {
  background: #4e3394;
}

.benefit-card-pink {
  background: #ef4a8d;
}

.benefit-card-green {
  background: #28813f;
}

.benefit-card-blue {
  background: #2a2b72;
}

.benefit-chip {
  position: relative;
  z-index: 1;
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: auto;
  padding: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.benefit-chip i {
  font-size: 1.38rem;
  line-height: 1;
}

.benefit-card h3 {
  position: relative;
  z-index: 1;
  margin: 2.1rem 0 0.7rem;
  color: #ffffff;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.benefit-card p {
  position: relative;
  z-index: 1;
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.55;
}

.footer-callback-section {
  padding: 0;
}

main > section + section {
  margin-top: 6rem;
}

.footer-callback-card {
  position: relative;
  overflow: visible;
  min-height: 178px;
  padding: clamp(1.35rem, 2.7vw, 2.3rem);
  border-radius: 22px;
  border: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  color: #ffffff;
  background: #2a2b72;
  isolation: isolate;
}

.footer-callback-copy h2 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 0 0.45rem;
  color: #ffffff;
  font-size: clamp(1.15rem, 2vw, 1.9rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.footer-callback-copy p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  line-height: 1.45;
}

.footer-callback-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: end;
  gap: 0.7rem;
  padding-right: 0;
}

.footer-callback-btn {
  border: 0;
  color: #ffffff;
  background: #f47d32;
  font-weight: 600;
  box-shadow: none;
}

.footer-callback-btn:hover,
.footer-callback-btn:focus {
  color: #ffffff;
  background: #f47d32;
  transform: translateY(-3px);
}

.callback-text-btn {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.2s ease;
}

.callback-text-btn:hover,
.callback-text-btn:focus {
  color: #ffffff;
}

.site-footer {
  background: #fbf6ed;
  color: #4e3394;
  padding: clamp(3.5rem, 6vw, 5.4rem) 0 1.9rem;
}

.footer-brand .brand-logo-img {
  height: auto;
  max-width: 285px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: clamp(2.5rem, 8vw, 7.5rem);
  align-items: start;
  padding-bottom: clamp(2.5rem, 5vw, 4.2rem);
  border-bottom: 1px solid rgba(78, 51, 148, 0.12);
}

.footer-brand-column {
  max-width: 560px;
}

.footer-brand {
  margin-bottom: 1.9rem;
}

.footer-brand-column p {
  margin: 0;
  color: #5f5a78;
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  font-weight: 400;
  line-height: 1.75;
}

.footer-visit-column h2 {
  margin: 0 0 2rem;
  color: #4e3394;
  font-size: clamp(1.55rem, 2.7vw, 2.45rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
}

.footer-contact-list {
  display: grid;
  gap: 1.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact-list li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  align-items: center;
  gap: 1rem;
  color: #4e3394;
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  font-weight: 500;
  line-height: 1.45;
}

.footer-contact-list a {
  color: #4e3394;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-list a:hover,
.footer-contact-list a:focus {
  color: #f47d32;
}

.footer-contact-icon {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.22rem;
  line-height: 1;
}

.footer-contact-orange {
  background: #f47d32;
}

.footer-contact-blue {
  background: #2a2b72;
}

.footer-contact-pink {
  background: #ef4a8d;
}

.footer-contact-green {
  background: #28813f;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(78, 51, 148, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1190;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(84vw, 320px);
  height: 100vh;
  background: #fbf6ed;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 1200;
  padding: 1rem;
  border-left: 1px solid rgba(78, 51, 148, 0.12);
  display: flex;
  flex-direction: column;
}

.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(78, 51, 148, 0.12);
}

.mobile-menu-head h5 {
  margin: 0;
  font-weight: 600;
}

.mobile-menu-links {
  list-style: none;
  margin: 0;
  padding: 1rem 0;
  display: grid;
  gap: 0.35rem;
}

.mobile-menu-links a {
  text-decoration: none;
  color: #4e3394;
  font-weight: 400;
  font-size: 0.86rem;
  padding: 0.45rem 0.2rem;
  display: inline-block;
}

body.mobile-menu-open {
  overflow: hidden;
}

body.mobile-menu-open .mobile-menu-backdrop {
  opacity: 1;
  visibility: visible;
}

body.mobile-menu-open .mobile-menu-panel {
  transform: translateX(0);
}

.copyright {
  margin: 1.65rem 0 0;
  padding-top: 0;
  text-align: center;
  color: #5f5a78;
  font-size: 0.82rem;
  font-weight: 400;
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 3.2rem;
  height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 1.42rem;
  background: #25d366;
  box-shadow: 0 10px 18px rgba(18, 73, 41, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 1200;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 22px rgba(18, 73, 41, 0.42);
}

@media (max-width: 991.98px) {
  .hero-static-banner {
    min-height: 380px;
    padding: 1.6rem;
  }

  .hero-static-content {
    max-width: 450px;
  }

  .hero-static-banner .container {
    margin-left: 0;
  }

  .hero-img {
    object-position: right;
  }

  main > section + section {
    margin-top: 3rem;
  }

  .positioning-content {
    padding: 2rem;
    border-radius: 22px;
  }

  .positioning-media {
    min-height: 230px;
  }

  .positioning-img {
    min-height: 230px;
  }

  .methodology-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .methodology-item:nth-child(odd) {
    border-left: 0;
  }

  .how-works-panel {
    min-height: auto;
    padding: 2rem;
    border-radius: 26px;
  }

  .how-works-header {
    margin-bottom: 3rem;
  }

  .how-works-list,
  .how-works-modalities {
    gap: 0.9rem;
  }

  .how-works-list li,
  .how-works-modality {
    min-height: 4.9rem;
  }

  .how-works-modality + .how-works-modality {
    border-left: 1px solid #eee7df;
  }

  .party-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 2rem;
  }

  .party-visual {
    display: none;
  }

  .party-mobile-visual {
    width: min(11.5rem, 62vw);
    margin: 0 auto 1.35rem;
    display: flex;
    justify-content: center;
  }

  .welcome-card {
    min-height: auto;
    padding: 2.5rem 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-card,
  .benefit-card:nth-child(4),
  .benefit-card:nth-child(5),
  .benefit-card:nth-child(6) {
    grid-column: auto;
  }

  .footer-callback-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.25rem;
  }

  .footer-callback-actions {
    align-items: center;
    justify-self: center;
    padding-right: unset;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }

  .footer-brand-column {
    max-width: 680px;
  }

  .footer-visit-column h2 {
    margin-bottom: 1.55rem;
  }
}

@media (max-width: 575.98px) {
  html {
    font-size: 14.5px;
  }

  .btn {
    --bs-btn-font-size: 0.66rem;
  }

  .hero-static-content {
    max-width: 250px;
  }

  .footer-brand .brand-logo-img {
    height: auto;
    max-width: 245px;
  }

  .site-footer {
    padding-top: 3rem;
  }

  .footer-main {
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .footer-brand-column p {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .footer-visit-column h2 {
    font-size: 1.95rem;
  }

  .footer-contact-list {
    gap: 1rem;
  }

  .footer-contact-list li {
    grid-template-columns: 3rem 1fr;
    gap: 0.8rem;
    font-size: 0.84rem;
  }

  .footer-contact-icon {
    width: 2.65rem;
    height: 2.65rem;
    font-size: 1rem;
  }

  .copyright {
    font-size: 0.76rem;
    line-height: 1.5;
  }

  .hero-static-banner {
    min-height: 340px;
    padding: 1.2rem;
  }

  .how-works-panel {
    padding: 1.25rem;
    border-radius: 22px;
  }

  .how-works-header {
    margin-bottom: 2rem;
    text-align: center !important;
  }

  .how-works-eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .how-works-header h2 {
    font-size: 1.82rem;
  }

  .how-works-header p {
    font-size: 0.86rem;
    line-height: 1.6;
  }

  .how-works-card-title {
    gap: 0.75rem;
    margin-bottom: 1.15rem;
  }

  .how-works-title-icon {
    width: 2.85rem;
    height: 2.85rem;
    font-size: 0.96rem;
  }

  .how-works-card-title h3 {
    font-size: 1.38rem;
  }

  .how-works-list li {
    grid-template-columns: auto 1fr;
    gap: 0.65rem;
    min-height: 4.5rem;
    padding: 0.85rem;
    border-radius: 16px;
    font-size: 0.78rem;
  }

  .how-works-list-icon {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 12px;
    font-size: 0.9rem;
  }

  .how-works-modality {
    min-height: 4.9rem;
    padding: 0.85rem;
    border-radius: 16px;
  }

  .how-works-modality-icon {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 12px;
    font-size: 0.9rem;
  }

  .how-works-modality h3 {
    font-size: 0.82rem;
  }

  .how-works-modality p {
    font-size: 0.74rem;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
  }

  .party-card,
  .welcome-card {
    border-radius: 18px;
    padding: 1.5rem;
  }

  .party-card-icon {
    margin-bottom: 1rem;
  }

  .party-content h2 {
    font-size: 1.82rem;
  }

  .party-content p {
    margin-bottom: 1.4rem;
    font-size: 0.84rem;
  }

  .welcome-badge {
    margin-bottom: 1.2rem;
    padding: 0.5rem 0.85rem;
    font-size: 0.62rem;
    line-height: 1.25;
  }

  .welcome-card h2 {
    font-size: 2rem;
  }

  .welcome-card p {
    margin-bottom: 1.35rem;
    font-size: 0.86rem;
  }

  .party-btn,
  .welcome-btn,
  .footer-callback-btn {
    width: 100%;
    text-align: center;
  }

  .positioning-content {
    padding: 1.5rem;
    border-radius: 18px;
  }

  .positioning-eyebrow {
    margin-bottom: 1rem;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .positioning-content h2 {
    font-size: 1.65rem;
  }

  .positioning-content p {
    font-size: 0.82rem;
  }

  .positioning-media,
  .positioning-img {
    min-height: 220px;
    border-radius: 18px;
  }

  .footer-callback-card {
    border-radius: 18px;
  }

  .benefits-header {
    margin-bottom: 1.5rem;
  }

  .benefits-header span {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }

  .benefits-header h2 {
    font-size: 1.65rem;
  }

  .benefits-header p {
    font-size: 0.82rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 205px;
    padding: 1.25rem;
    border-radius: 18px;
  }

  .benefit-card h3 {
    font-size: 1.12rem;
  }

  .benefit-card p {
    font-size: 0.78rem;
  }
}

@media (max-width: 767.98px) {
  .methodology-heading {
    margin-bottom: 1.6rem;
    font-size: 1.65rem;
  }

  .methodology-list {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }

  .methodology-item {
    min-height: auto;
    padding: 1.55rem 1.25rem;
    border: 0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    text-align: center;
  }

  .methodology-icon {
    margin: 0 auto 0.75rem;
    font-size: 3.15rem;
  }

  .methodology-item h3 {
    margin: 0 0 0.25rem;
    font-size: 0.92rem;
    line-height: 1.2;
  }

  .methodology-item h3 span {
    display: inline;
  }

  .methodology-item p {
    font-size: 0.78rem;
    line-height: 1.45;
  }
}

@media (max-width: 475.98px) {
  .hero-static-content {
    max-width: 200px;
  }
}

@media (min-width: 992px) {
  .mobile-menu-backdrop,
  .mobile-menu-panel {
    display: none;
  }
}
