/* Esthetic Hair Turkey — design tokens & custom styles */

:root {
  --navy-dark: #030e1a;
  --navy: #061829;
  --gold: #c9a961;
  --cream: #f5f1e8;
  --red: #e63946;
  --green: #25d366;
  --muted: #a0aec0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background-color: var(--navy-dark);
  color: var(--cream);
  overflow-x: hidden;
}

.font-serif {
  font-family: "Playfair Display", Georgia, serif;
}

/* Gradients */
.bg-gradient-page {
  background: linear-gradient(
    143deg,
    #030e1a 0%,
    #03101c 16.67%,
    #04111f 33.33%,
    #041321 50%,
    #051524 66.67%,
    #051626 83.33%,
    #061829 100%
  );
}

.bg-gradient-hero {
  background: linear-gradient(
    142.92deg,
    #030e1a 0%,
    #03101c 8.33%,
    #04111f 16.67%,
    #041321 25%,
    #051524 33.33%,
    #051626 41.67%,
    #061829 50%,
    #051626 58.33%,
    #051524 66.67%,
    #041321 75%,
    #04111f 83.33%,
    #03101c 91.67%,
    #030e1a 100%
  );
}

.bg-gradient-gold-icon {
  background: linear-gradient(135deg, #c9a961 0%, #a8895b 100%);
}

.bg-gradient-red-btn {
  background: linear-gradient(
    90deg,
    #e63946 0%,
    #e33744 9.09%,
    #e03441 18.18%,
    #dd323e 27.27%,
    #da303c 36.36%,
    #d62d39 45.45%,
    #d32b37 54.55%,
    #d02934 63.64%,
    #cd2632 72.73%,
    #ca232f 81.82%,
    #c7212d 90.91%,
    #c41e2a 100%
  );
}

.bg-gradient-banner {
  background: linear-gradient(
    90deg,
    #e63946 0%,
    #e33744 9.09%,
    #e03441 18.18%,
    #dd323e 27.27%,
    #da303c 36.36%,
    #d62d39 45.45%,
    #d32b37 54.55%,
    #d02934 63.64%,
    #cd2632 72.73%,
    #ca232f 81.82%,
    #c7212d 90.91%,
    #c41e2a 100%
  );
}

.bg-gradient-whatsapp {
  background: linear-gradient(
    149.5deg,
    #25d366 0%,
    #24d065 7.14%,
    #23cb64 14.29%,
    #22c662 21.43%,
    #21c161 28.57%,
    #20bc5f 35.71%,
    #1fb75e 42.86%,
    #1eb25c 50%,
    #1dad5b 57.14%,
    #1ca859 64.29%,
    #1ba358 71.43%,
    #1a9e56 78.57%,
    #199955 85.71%,
    #189453 92.86%,
    #178f52 100%
  );
}

.text-gradient-gold {
  background: linear-gradient(90deg, #c9a961 0%, rgba(201, 169, 97, 0) 100%);
  height: 4px;
}

/* Header — desktop Figma 0:686 · mobile Figma 1:1375 */
.site-header {
  background: rgba(3, 14, 26, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateZ(0);
  will-change: transform;
}

.site-header.is-scrolled {
  background: rgba(3, 14, 26, 0.92);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
  padding: 16px 0;
}

@media (min-width: 1024px) {
  .site-header__inner {
    gap: 16px;
    min-height: 83px;
    padding: 20px 0;
  }
}

.site-header__logo {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}

.site-header__logo-img {
  display: block;
  width: auto;
  max-width: 173px;
  height: 32px;
  object-fit: contain;
  object-position: left center;
}

@media (min-width: 1024px) {
  .site-header__logo-img {
    max-width: 216px;
    height: 40px;
  }
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-header__cta--desktop {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 188px;
  height: 43px;
  padding: 0 24px;
  border: none;
  border-radius: 9999px;
  background-color: #c9a961;
  color: #061829;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 19.5px;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, filter 0.2s ease;
}

@media (min-width: 1024px) {
  .site-header__cta--desktop {
    display: inline-flex;
  }
}

.site-header__cta--desktop:hover {
  background-color: #d4b56e;
  filter: brightness(1.04);
}

/* Mobile header CTA — Figma 1:1375 */
.site-header__cta-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 69px;
  height: 32px;
  padding: 0 12px;
  border: none;
  border-radius: 9999px;
  background-color: #c9a961;
  color: #061829;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  line-height: 16.5px;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, filter 0.2s ease;
}

.site-header__cta-mobile:hover {
  background-color: #d4b56e;
  filter: brightness(1.04);
}

@media (min-width: 1024px) {
  .site-header__cta-mobile {
    display: none;
  }
}

/* Hero glow */
.hero-glow-gold {
  background: #c9a961;
  filter: blur(150px);
  opacity: 0.3;
}

.hero-glow-red {
  background: #e63946;
  filter: blur(150px);
  opacity: 0.14;
}

/* Offer card */
.offer-card {
  border: 1.356px solid var(--red);
  box-shadow: 0 0 40px rgba(230, 57, 70, 0.3);
}

.offer-card-inner {
  background: linear-gradient(134.78deg, rgba(230, 57, 70, 0.1) 0%, transparent 100%);
}

/* Before / After gallery — Figma 0:208 */
.results-header__eyebrow {
  font-size: 11px;
  letter-spacing: 1.65px;
  color: #c9a961;
}

.results-header__title-line {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 48px);
  line-height: 1.1;
}

@media (min-width: 1024px) {
  .results-header__title-line {
    font-size: 48px;
    line-height: 52.8px;
  }
}

.results-header__title-line--gold {
  font-style: italic;
  color: #c9a961;
}

.results-header__desc {
  max-width: 600px;
  font-size: 16px;
  line-height: 26px;
  color: #f5f1e8;
}

.results-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 11px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  white-space: nowrap;
}

.results-badge--reviews {
  border: 0.678px solid #c9a961;
  color: #c9a961;
}

.results-badge--verified {
  gap: 8px;
  background-color: #25d366;
  color: #ffffff;
  font-weight: 600;
  box-shadow:
    0 10px 7.5px rgba(0, 0, 0, 0.1),
    0 4px 3px rgba(0, 0, 0, 0.1);
}

.results-badge--verified::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.52);
  flex-shrink: 0;
}

.results-stats {
  border-top: 0.678px solid rgba(201, 169, 97, 0.3);
  border-bottom: 0.678px solid rgba(201, 169, 97, 0.3);
}

.results-stats__value {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 40px);
  line-height: 60px;
  color: #c9a961;
}

.results-stats__label {
  font-size: 11px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: #f5f1e8;
}

.results-stats__divider {
  width: 1px;
  height: 48px;
  background: #c9a961;
  opacity: 0.3;
}

.results-cta__eyebrow {
  font-size: 11px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: #c9a961;
}

.results-cta__text {
  max-width: 520px;
  font-size: 16px;
  line-height: 26px;
  color: #f5f1e8;
}

.results-cta__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 223px;
  height: 56px;
  padding: 0 32px;
  border-radius: 9999px;
  background-color: #c9a961;
  color: #061829;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  transition: filter 0.2s ease;
}

.results-cta__primary:hover {
  filter: brightness(1.08);
}

.results-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.results-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 57px;
  padding: 0 24px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 22.5px;
  transition: filter 0.2s ease, background-color 0.2s ease;
}

.results-cta__btn--whatsapp {
  min-width: min(290px, 100%);
  background-color: #c9a961;
  color: #061829;
  font-weight: 700;
}

@media (max-width: 639px) {
  .results-cta__btn--whatsapp,
  .results-cta__btn--email {
    width: 100%;
    min-width: 0;
  }

  .results-cta__actions {
    width: 100%;
    max-width: 320px;
  }
}

.results-cta__btn--whatsapp:hover {
  filter: brightness(1.08);
}

.results-cta__btn--whatsapp img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.results-cta__btn--email {
  min-width: 198px;
  border: 1.356px solid #c9a961;
  background: transparent;
  color: #ffffff;
  font-weight: 600;
}

.results-cta__btn--email:hover {
  background: rgba(201, 169, 97, 0.1);
}

.results-cta__btn--email img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.results-cta__note {
  font-size: 12px;
  line-height: 18px;
  color: #a0aec0;
}

/* Before / After */
.ba-card {
  border-radius: 16px;
  overflow: hidden;
}

.ba-card-overlay {
  background: linear-gradient(
    0deg,
    #061829 0%,
    rgba(5, 20, 36, 0.92) 7.69%,
    rgba(4, 17, 31, 0.85) 15.38%,
    rgba(3, 13, 26, 0.77) 23.08%,
    transparent 100%
  );
}

.ba-divider {
  width: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* Team card */
.team-card {
  border: 1.356px solid var(--gold);
  box-shadow: 0 0 40px rgba(201, 169, 97, 0.2);
  background: linear-gradient(
    143deg,
    #030e1a 0%,
    #03101c 16.67%,
    #04111f 33.33%,
    #041321 50%,
    #051524 66.67%,
    #051626 83.33%,
    #061829 100%
  );
}

.team-photo-wrap {
  background: linear-gradient(116deg, #c9a961 0%, #8b6f47 100%);
}

.team-photo-wrap img {
  object-position: 28% top;
}

.team-photo-fade {
  background: linear-gradient(
    0deg,
    #030e1a 0%,
    rgba(2, 9, 19, 0.86) 14%,
    rgba(0, 0, 0, 0) 50%
  );
}

/* Team profile feature icons — Figma 0:166, 0:175, 0:184, 0:193 */
.team-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background-color: #c9a961;
}

.team-feature-icon img {
  width: 20px;
  height: 20px;
  display: block;
}

/* Video testimonials — Figma 0:347 / 0:348 */
.testimonials-header__eyebrow {
  font-size: 11px;
  letter-spacing: 1.65px;
  color: #c9a961;
}

.testimonials-header__title-line {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 44px);
  line-height: 1.1;
}

@media (min-width: 1024px) {
  .testimonials-header__title-line {
    font-size: 44px;
    line-height: 48.4px;
  }
}

.testimonials-header__title-line--gold {
  font-style: italic;
  color: #c9a961;
}

.testimonials-header__desc {
  max-width: 560px;
  font-size: 16px;
  line-height: 26px;
  color: #f5f1e8;
}

.video-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  border: 0.678px solid #c9a961;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .video-card {
    min-height: 676px;
  }
}

.video-card--blue {
  background: linear-gradient(
    119.32deg,
    #1a2a3a 0%,
    #182838 7.14%,
    #152535 14.29%,
    #132333 21.43%,
    #112131 28.57%,
    #0f1e2f 35.71%,
    #0c1c2c 42.86%,
    #0a1a2a 50%,
    #091827 60%,
    #081725 70%,
    #071522 80%,
    #061420 90%,
    #05121d 100%
  );
}

.video-card--purple {
  background: linear-gradient(
    119.32deg,
    #2a1a2a 0%,
    #271727 8.33%,
    #251525 16.67%,
    #221222 25%,
    #1f0f1f 33.33%,
    #1d0d1d 41.67%,
    #1a0a1a 50%,
    #180919 57.14%,
    #160817 64.29%,
    #140716 71.43%,
    #120614 78.57%,
    #110613 85.71%,
    #0f0510 92.86%,
    #0d050f 100%
  );
}

.video-card--green {
  background: linear-gradient(
    119.32deg,
    #1a2a1a 0%,
    #182818 7.14%,
    #152515 14.29%,
    #132313 21.43%,
    #112111 28.57%,
    #0f1e0e 35.71%,
    #0c1c0c 42.86%,
    #0a1a0a 50%,
    #091909 57.14%,
    #081708 64.29%,
    #081608 71.43%,
    #071407 78.57%,
    #061306 85.71%,
    #061106 92.86%,
    #051005 100%
  );
}

.video-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  padding: 16px;
}

.video-card__tag {
  display: inline-flex;
  align-items: center;
  height: 33px;
  padding: 0 12px;
  border: 0.678px solid #c9a961;
  border-radius: 9999px;
  background-color: #061829;
  color: #c9a961;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.video-card__autoplay {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 23px;
  padding: 4px 12px;
  border-radius: 9999px;
  background-color: #061829;
  color: #c9a961;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.video-card__autoplay-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background-color: #c9a961;
  flex-shrink: 0;
}

.video-card__stage {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  overflow: hidden;
  background-color: #061829;
}

.video-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  padding-left: 4px;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(201, 169, 97, 0.6);
  background: linear-gradient(
    135deg,
    #c9a961 0%,
    #ccac65 12.5%,
    #cfaf69 25%,
    #d2b26d 37.5%,
    #d4b471 50%,
    #d7b775 62.5%,
    #daba79 75%,
    #ddbd7d 87.5%,
    #e0c081 100%
  );
}

.video-play-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13.56px 0 13.56px 19.66px;
  border-color: transparent transparent transparent #061829;
}

.video-card.is-playing .video-play {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.video-card.is-playing .video-card__stage:hover .video-play,
.video-card.is-playing .video-card__stage:focus-within .video-play {
  opacity: 1;
  pointer-events: auto;
}

.video-card__footer {
  padding: 20px;
  background: linear-gradient(
    0deg,
    #061829 0%,
    #061829 50%,
    rgba(4, 17, 31, 0.86) 57.14%,
    rgba(2, 11, 22, 0.71) 64.29%,
    rgba(1, 6, 13, 0.57) 71.43%,
    rgba(0, 2, 6, 0.43) 78.57%,
    rgba(0, 1, 2, 0.29) 85.71%,
    rgba(0, 0, 0, 0.14) 92.86%,
    rgba(0, 0, 0, 0) 100%
  );
}

.video-card__quote {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 14px;
  line-height: 19.6px;
  color: #ffffff;
}

.video-card__patient {
  margin-top: 14px;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #c9a961;
}

.video-card__duration {
  margin-top: 4px;
  font-size: 11px;
  line-height: 16.5px;
  color: #f5f1e8;
}

.testimonials-stats {
  border-top: 0.678px solid rgba(201, 169, 97, 0.3);
  border-bottom: 0.678px solid rgba(201, 169, 97, 0.3);
}

.testimonials-stats__value {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 4vw, 32px);
  line-height: 48px;
  color: #c9a961;
}

.testimonials-stats__flags {
  font-size: clamp(1.25rem, 3vw, 28px);
  line-height: 42px;
  letter-spacing: 0.38px;
}

.testimonials-stats__label {
  font-size: 11px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: #f5f1e8;
}

.testimonials-stats__divider {
  width: 1px;
  height: 48px;
  background: #c9a961;
  opacity: 0.3;
}

.testimonials-cta__eyebrow {
  font-size: 11px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: #c9a961;
}

.testimonials-cta__text {
  max-width: 540px;
  font-size: 16px;
  line-height: 26px;
  color: #f5f1e8;
}

.testimonials-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonials-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 57px;
  padding: 0 24px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 22.5px;
  transition: filter 0.2s ease, background-color 0.2s ease;
}

.testimonials-cta__btn--instagram {
  min-width: 223px;
  background-color: #c9a961;
  color: #061829;
  font-weight: 700;
}

.testimonials-cta__btn--instagram:hover {
  filter: brightness(1.08);
}

.testimonials-cta__btn--instagram img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.testimonials-cta__btn--whatsapp {
  min-width: 243px;
  border: 1.356px solid #c9a961;
  background: transparent;
  color: #ffffff;
  font-weight: 600;
}

.testimonials-cta__btn--whatsapp:hover {
  background: rgba(201, 169, 97, 0.1);
}

.testimonials-cta__btn--whatsapp img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 639px) {
  .testimonials-cta__btn--instagram,
  .testimonials-cta__btn--whatsapp {
    width: 100%;
    min-width: 0;
  }

  .testimonials-cta__actions {
    width: 100%;
    max-width: 320px;
  }
}

/* Consultation CTA card — Figma 0:560 */
.consultation-card {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 32px;
  border: 0.678px solid #c9a961;
  border-radius: 16px;
  background: rgba(201, 169, 97, 0.1);
  text-align: center;
}

.consultation-card__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: #c9a961;
}

.consultation-card__title {
  margin-top: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.375rem, 3vw, 26px);
  line-height: 39px;
  color: #ffffff;
}

.consultation-card__desc {
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  max-width: 580px;
  font-size: 15px;
  line-height: 24.375px;
  color: #f5f1e8;
}

.consultation-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 54px;
  margin-top: 24px;
  border: none;
  border-radius: 9999px;
  background-color: #c9a961;
  color: #061829;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 22.5px;
  cursor: pointer;
  transition: filter 0.2s ease;
}

.consultation-card__btn:hover {
  filter: brightness(1.08);
}

.consultation-card__note {
  margin-top: 12px;
  font-size: 12px;
  line-height: 18px;
  color: #a0aec0;
}

/* Urgency */
.urgency-offer-card {
  border: 1.356px solid var(--red);
  box-shadow: 0 0 50px rgba(230, 57, 70, 0.3);
}

/* Sticky campaign CTA — Figma 36:2682 / 36:3401 */
:root {
  --sticky-cta-height: 112px;
}

@media (min-width: 1024px) {
  :root {
    --sticky-cta-height: 79px;
  }
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 48;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  transform: translate3d(0, 100%, 0);
  will-change: transform;
}

.sticky-cta.is-visible {
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.sticky-cta__panel {
  border-top: 2px solid #c9a961;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
  background: linear-gradient(
    90deg,
    #e63946 0%,
    #e13542 7.14%,
    #dc323f 14.29%,
    #d72f3a 21.43%,
    #d22c37 28.57%,
    #ce2934 35.71%,
    #c92631 42.86%,
    #c41e2a 50%,
    #c92631 57.14%,
    #ce2934 64.29%,
    #d22c37 71.43%,
    #d72f3a 78.57%,
    #dc323f 85.71%,
    #e13542 92.86%,
    #e63946 100%
  );
}

.sticky-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px clamp(12px, 3vw, 24px) 12px;
}

.sticky-cta__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 100%;
  text-align: center;
}

.sticky-cta__title {
  margin: 0;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.sticky-cta__title--desktop {
  display: none;
  font-size: 15px;
  line-height: 22.5px;
}

.sticky-cta__title--mobile {
  display: block;
  font-size: 13px;
  line-height: 19.5px;
}

.sticky-cta__sub {
  margin: 0;
  font-weight: 400;
  color: #fff;
  opacity: 0.9;
  white-space: nowrap;
}

.sticky-cta__sub--desktop {
  display: none;
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 0.0645px;
}

.sticky-cta__sub--mobile {
  display: block;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.1172px;
}

.sticky-cta__actions {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  max-width: 348px;
}

.sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.15s ease;
}

.sticky-cta__btn:hover {
  filter: brightness(1.06);
}

.sticky-cta__btn--analysis {
  flex: 1;
  min-height: 38px;
  padding: 10px 12px;
  background: #fff;
  color: #e63946;
  font-size: 12px;
  line-height: 18px;
}

.sticky-cta__btn--whatsapp {
  flex: 1;
  min-height: 36px;
  padding: 10px;
  background: #25d366;
  color: #fff;
  font-size: 12px;
  line-height: 18px;
}

.sticky-cta__wa-icon--desktop {
  display: none;
}

.sticky-cta__wa-icon--mobile {
  display: block;
  width: 16px;
  height: 16px;
}

.sticky-cta__wa-label {
  display: none;
}

@media (min-width: 1024px) {
  .sticky-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 77px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .sticky-cta__lead {
    align-items: flex-start;
    flex: 1;
    min-width: 0;
    text-align: left;
  }

  .sticky-cta__title--desktop {
    display: block;
  }

  .sticky-cta__title--mobile {
    display: none;
  }

  .sticky-cta__sub--desktop {
    display: block;
  }

  .sticky-cta__sub--mobile {
    display: none;
  }

  .sticky-cta__actions {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    gap: 12px;
  }

  .sticky-cta__btn--analysis {
    flex: 0 0 auto;
    min-width: 159px;
    min-height: 45px;
    padding: 12px 24px;
    font-size: 14px;
    line-height: 21px;
  }

  .sticky-cta__btn--whatsapp {
    flex: 0 0 auto;
    min-width: 144px;
    min-height: 45px;
    padding: 12px 24px;
    font-size: 14px;
    line-height: 21px;
  }

  .sticky-cta__wa-icon--desktop {
    display: block;
    width: 16px;
    height: 16px;
  }

  .sticky-cta__wa-icon--mobile {
    display: none;
  }

  .sticky-cta__wa-label {
    display: inline;
  }
}

body.has-sticky-cta .floating-contact {
  bottom: calc(var(--sticky-cta-height) + 12px);
  transition: bottom 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Floating contacts */
.floating-contact {
  z-index: 50;
  transition: bottom 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateZ(0);
  will-change: transform, bottom;
}

@media (max-width: 1023px) {
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.floating-pulse {
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Stat divider */
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--gold);
  opacity: 0.3;
}

/* Trust badges section */
.trust-badges-bg {
  border-top: 0.678px solid var(--gold);
  border-bottom: 0.678px solid var(--gold);
  background: linear-gradient(
    90deg,
    #030e1a 0%,
    #04101c 8.33%,
    #04111f 16.67%,
    #041321 25%,
    #051524 33.33%,
    #051626 41.67%,
    #061829 50%,
    #051626 58.33%,
    #051524 66.67%,
    #041321 75%,
    #04111f 83.33%,
    #03101c 91.67%,
    #030e1a 100%
  );
}

/* Section spacing fluid */
.section-pad {
  padding-top: clamp(3rem, 6vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

.container-main {
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 1.5rem);
}

/* Focus */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Thank you page */
.thank-you-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.thank-you-page__main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 8vw, 6rem) 1rem;
}

.thank-you-page__content {
  width: min(100%, 32rem);
  margin-inline: auto;
  text-align: center;
}

.thank-you-page__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-inline: auto;
  border-radius: 50%;
  background: #00bf13;
}

.thank-you-page__icon img {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
}

.thank-you-page__title {
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.thank-you-page__text {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(245, 241, 232, 0.85);
}

.thank-you-page__actions {
  width: 100%;
  max-width: 20.4375rem;
  margin: 1rem auto 0;
  padding: 1rem 0;
}

.thank-you-page__btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: 60px;
  background: #0000bf;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.thank-you-page__btn-whatsapp:hover {
  opacity: 0.92;
}

.thank-you-page__btn-home {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.thank-you-page__btn-home:hover {
  color: #fff;
}
