* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #02060d;
  font-family: "Poppins", Arial, sans-serif;
  color: white;
}

.nav {
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  padding: 0 48px;
  z-index: 100;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 13, 0.72),
    rgba(2, 6, 13, 0)
  );
}



.logo {
  display: flex;
  align-items: center;
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  text-decoration: none;
  color: white;
  justify-content: flex-start;
  width: 180px;
  height: 84px;
  overflow: hidden;
  z-index: 2;
  flex-shrink: 0;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
}

.nav-backdrop,
.mobile-panel-head {
  display: none;
}

.menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.menu a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.25s ease;
}

.menu a:hover {
  color: #4b8dff;
}

.menu a span:last-child {
  display: none;
}

.nav-btn {
  position: absolute;
  right: 0;
  padding: 14px 30px;
  border: 1px solid rgba(64, 139, 255, 0.75);
  border-radius: 12px;

  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;

  background: rgba(3, 12, 28, 0.35);
  backdrop-filter: blur(12px);
  transition: 0.25s ease;
}

.nav-btn:hover {
  background: #256df0;
  border-color: #256df0;
  box-shadow: 0 0 28px rgba(37, 109, 240, 0.35);
}

.nav a:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid #4b8dff;
  outline-offset: 4px;
}

.menu-toggle {
  display: none;
}

@media (min-width: 1101px) {
  .nav {
    display: grid;
    grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
    column-gap: 24px;
  }

  .logo {
    grid-column: 1;
    justify-self: start;
  }

  .nav-panel {
    display: contents;
  }

  .menu {
    grid-column: 2;
    justify-self: center;
    gap: clamp(18px, 1.8vw, 32px);
  }

  .menu a {
    white-space: nowrap;
  }

  .nav-btn {
    position: static;
    grid-column: 3;
    justify-self: end;
  }
}

@media (max-width: 1100px) {
  body.menu-open {
    overflow: hidden;
  }

  .nav {
    height: 78px;
    padding: 0 18px;
    justify-content: space-between;
    background: rgba(2, 6, 13, 0.82);
    border-bottom: 1px solid rgba(75, 141, 255, 0.12);
  }

  .logo {
    position: relative;
    top: auto;
    left: auto;
    width: clamp(180px, 52vw, 220px);
    height: 66px;
    transform: none;
    justify-content: flex-start;
  }

  .logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -47%);
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 50px;
    height: 50px;
    padding: 0 13px;
    border: 1px solid rgba(75, 141, 255, 0.4);
    border-radius: 15px;
    background: rgba(14, 25, 47, 0.6);
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform 0.28s ease;
  }

  .nav.is-open .menu-toggle,
  .menu-toggle:hover {
    border-color: #4b8dff;
    background: rgba(37, 109, 240, 0.2);
  }

  .nav.is-open .menu-toggle span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .nav.is-open .menu-toggle span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    display: block;
    z-index: 0;
    background: rgba(0, 2, 8, 0.74);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.34s ease, visibility 0.34s ease;
  }

  .nav.is-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-panel {
    position: fixed;
    z-index: 1;
    inset: auto 0 0;
    width: 100%;
    max-height: calc(100dvh - 22px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 22px 20px calc(18px + env(safe-area-inset-bottom));
    overflow-y: auto;
    border: 1px solid rgba(75, 141, 255, 0.18);
    border-bottom: 0;
    border-radius: 28px 28px 0 0;
    background: #030812;
    box-shadow: 0 -24px 80px rgba(0, 0, 0, 0.56);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(104%);
    transition: opacity 0.32s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.32s ease;
  }

  .nav.is-open .nav-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .mobile-panel-title {
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.56);
  }

  .mobile-talk {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    color: white;
    font-size: 13px;
    text-decoration: none;
  }

  .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 23px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(26px, 7.5vw, 34px);
    font-weight: 500;
    letter-spacing: -0.055em;
  }

  .menu a span:last-child {
    display: none;
  }

  .menu a svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    fill: currentColor;
    opacity: 0.42;
  }

  .menu a:hover {
    color: #fff;
    background: transparent;
  }

  .menu a:hover span:last-child {
    color: #4b8dff;
  }

  .nav-btn {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-toggle,
  .menu-toggle span,
  .nav-backdrop,
  .nav-panel {
    transition: none;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 48px 60px;
  background: #02060d;
  text-align: center;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(34, 104, 255, 0.14), transparent 38%),
    linear-gradient(to bottom, rgba(2, 6, 13, 0.25) 0%, rgba(2, 6, 13, 0.9) 100%),
    rgba(2, 6, 13, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(820px, 100%);
  margin: 0 auto;
  transform: translateY(-3vh);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 500;
  color: #4b8dff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero h1 {
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 32px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: #4b8dff;
}

.hero p {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 auto 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 17px 32px;
  border-radius: 999px;

  background: linear-gradient(135deg, #2f80ff, #1f5edb);
  color: white;
  text-decoration: none;

  font-size: 15px;
  font-weight: 600;

  box-shadow: 0 18px 45px rgba(31, 94, 219, 0.28);
  transition: 0.25s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(31, 94, 219, 0.42);
}

@media (max-width: 768px) {
  .hero {
    padding: 110px 22px 50px;
  }

  .hero-content {
    transform: translateY(-2vh);
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 16px;
  }
}


.sound-waves {
  position: absolute;
  bottom: clamp(26px, 6vh, 58px);
  left: 0;
  right: 0;
  z-index: 2;
  height: clamp(145px, 22vh, 210px);
  pointer-events: none;
  opacity: 0.8;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

.sound-waves::before {
  position: absolute;
  inset: 42% 10% 18%;
  content: "";
  background: radial-gradient(ellipse, rgba(37, 109, 240, 0.1), transparent 68%);
  filter: blur(20px);
}

.sound-canvas {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .sound-waves {
    bottom: 20px;
    height: clamp(112px, 16vh, 150px);
    opacity: 0.64;
  }
}

.services {
  position: relative;
  min-height: 100vh;
  padding: clamp(78px, 8vw, 108px) clamp(20px, 4vw, 64px) 56px;
  overflow: hidden;
  background: #02060d;
  isolation: isolate;
}

.services-backdrops {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.service-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  background-position: center;
  background-size: cover;
  transition: opacity 0.7s ease, transform 4.5s ease;
}

.service-backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 43%, rgba(49, 71, 167, 0.28), transparent 36%),
    linear-gradient(to bottom, rgba(2, 6, 13, 0.84), rgba(2, 6, 13, 0.7) 42%, #02060d 92%),
    rgba(2, 6, 13, 0.56);
}

.service-backdrop.is-active {
  opacity: 0.42;
  transform: scale(1);
}

.services-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

.services-heading {
  max-width: 790px;
  margin: 0 auto clamp(34px, 5vw, 48px);
}

.services-kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 0;
  border-radius: 999px;
  color: #4b8dff;
  font-size: 14px;
  letter-spacing: 0.22em;
  
}

.services-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.services-heading em {
  color: #4b8dff;
  font-style: normal;
}

.services-heading p {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.75;
}

.service-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(350px, 36vw, 440px);
}

.service-track {
  position: relative;
  width: min(100%, 1280px);
  height: clamp(350px, 36vw, 440px);
}

.service-card {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(54vw, 640px);
  height: clamp(350px, 36vw, 440px);
  padding: clamp(28px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(107, 106, 255, 0.35);
  border-radius: 24px;
  color: white;
  font: inherit;
  text-align: center;
  text-decoration: none;
  background-position: center;
  background-size: cover;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  transform: translate(-50%, -50%) scale(0.76);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease,
    filter 0.45s ease,
    border-color 0.45s ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(to bottom, rgba(3, 6, 15, 0.1) 10%, rgba(3, 6, 15, 0.9) 82%),
    radial-gradient(circle at center, transparent 0%, rgba(2, 6, 13, 0.35) 80%);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card[data-position="active"] {
  z-index: 3;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
  border-color: rgba(103, 111, 255, 0.65);
  box-shadow:
    0 34px 92px rgba(0, 0, 0, 0.52),
    0 0 44px rgba(47, 128, 255, 0.12);
}

.service-card[data-position="previous"],
.service-card[data-position="next"] {
  z-index: 2;
  width: min(29vw, 360px);
  height: clamp(300px, 31vw, 386px);
  opacity: 0.56;
  pointer-events: auto;
  filter: saturate(0.74) brightness(0.62);
}

.service-card[data-position="previous"] {
  transform: translate(calc(-50% - min(40vw, 470px)), -50%) rotate(-2.5deg);
}

.service-card[data-position="next"] {
  transform: translate(calc(-50% + min(40vw, 470px)), -50%) rotate(2.5deg);
}

.service-card[data-position="hidden"] {
  transform: translate(-50%, -50%) scale(0.72);
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: center;
  margin-bottom: 16px;
  padding: 9px 17px 9px 13px;
  border: 1px solid rgba(75, 141, 255, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(100deg, rgba(28, 58, 125, 0.38), rgba(10, 17, 42, 0.7));
  color: rgba(227, 237, 255, 0.9);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 10px 26px rgba(0, 0, 0, 0.18);
}

.service-badge::before {
  display: block;
  width: 7px;
  height: 7px;
  flex: none;
  content: "";
  border-radius: 50%;
  background: #4b8dff;
  box-shadow: 0 0 10px rgba(75, 141, 255, 0.9);
}

.service-title {
  margin-bottom: 12px;
  font-size: clamp(25px, 3vw, 39px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.service-description {
  max-width: 410px;
  margin: 0 auto 17px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.65;
}

.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  color: #4b8dff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

.service-card:not([data-position="active"]) .service-badge,
.service-card:not([data-position="active"]) .service-description {
  display: none;
}

.service-card:not([data-position="active"]) .service-title {
  font-size: clamp(20px, 2vw, 25px);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 70px;
  height: 70px;
  border: 1px solid #2f80ff;
  border-radius: 50%;
  background: rgba(2, 8, 20, 0.92);
  color: #fff;
  font: inherit;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  box-shadow: 0 0 24px rgba(47, 128, 255, 0.24);
  transform: translateY(-50%);
  transition: background 0.24s ease, box-shadow 0.24s ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: rgba(37, 109, 240, 0.2);
  box-shadow: 0 0 38px rgba(47, 128, 255, 0.45);
  outline: none;
}

.carousel-prev {
  left: calc(50% - min(32vw, 370px));
}

.carousel-next {
  right: calc(50% - min(32vw, 370px));
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 26px auto clamp(44px, 6vw, 64px);
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(122, 130, 166, 0.46);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.carousel-dot.is-active {
  background: #4b55ff;
  transform: scale(1.18);
}

.carousel-dot:focus-visible {
  background: #4b8dff;
  outline: 2px solid rgba(75, 141, 255, 0.54);
  outline-offset: 5px;
}

@media (max-width: 1024px) {
  .services {
    padding-top: 72px;
  }

  .service-card[data-position="previous"],
  .service-card[data-position="next"] {
    width: 27vw;
  }

  .carousel-prev {
    left: 20px;
  }

  .carousel-next {
    right: 20px;
  }

}

@media (max-width: 768px) {
  .services {
    min-height: auto;
    padding: 68px 16px 46px;
  }

  .services-heading h2 br {
    display: none;
  }

  .services-heading p {
    font-size: 14px;
  }

  .service-carousel,
  .service-track {
    min-height: 440px;
    height: 440px;
  }

  .service-card,
  .service-card[data-position="active"] {
    width: 100%;
    height: 420px;
    padding: 30px 24px 94px;
    border-radius: 22px;
  }

  .service-card[data-position="previous"],
  .service-card[data-position="next"] {
    opacity: 0;
    pointer-events: none;
  }

  .service-title {
    font-size: clamp(28px, 8.5vw, 34px);
  }

  .service-link {
    width: min(100%, 260px);
    margin: 0 auto;
  }

  .carousel-arrow {
    top: auto;
    bottom: 22px;
    width: 52px;
    height: 52px;
    font-size: 25px;
    transform: none;
  }

  .carousel-prev {
    left: 18px;
  }

  .carousel-next {
    right: 18px;
  }

  .carousel-dots {
    margin: 22px auto 40px;
  }

}

.promise {
  position: relative;
  min-height: 100vh;
  padding: clamp(78px, 8vw, 106px) clamp(20px, 5vw, 72px) clamp(50px, 6vw, 70px);
  overflow: hidden;
  background: #02060d;
  isolation: isolate;
  --promise-blue: #4b8dff;
  --promise-blue-bright: #86b6ff;
}

.promise-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.43;
  filter: saturate(0.86) contrast(1.08);
}

.promise-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 56%, rgba(47, 128, 255, 0.2), transparent 22%),
    radial-gradient(circle at 53% 54%, rgba(75, 141, 255, 0.17), transparent 39%),
    linear-gradient(to bottom, #02060d 0%, rgba(2, 6, 13, 0.65) 18%, rgba(2, 6, 13, 0.75) 56%, #02060d 100%),
    rgba(2, 6, 13, 0.27);
}

.promise-inner {
  position: relative;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.promise-heading {
  max-width: 900px;
  margin: 0 auto clamp(44px, 5vw, 58px);
  text-align: center;
}

.promise-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--promise-blue);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.promise-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(35px, 4.2vw, 57px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.promise-heading em {
  color: #4b8dff;
  font-style: normal;
}

.promise-heading p {
  width: min(670px, 100%);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.75;
}

.promise-board {
  position: relative;
  display: grid;
  grid-template-columns: 1fr clamp(188px, 16vw, 230px) 1fr;
  align-items: stretch;
  gap: clamp(14px, 2vw, 26px);
}

.promise-card {
  min-height: 448px;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid rgba(142, 164, 207, 0.17);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(7, 12, 21, 0.82), rgba(3, 7, 15, 0.7));
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.promise-card h3 {
  padding-bottom: 24px;
  margin-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: clamp(19px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.offer-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 17px;
  min-height: 91px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.offer-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(75, 141, 255, 0.32);
  border-radius: 50%;
  color: var(--promise-blue);
  font-size: 24px;
}

.offer-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 500;
}

.offer-item small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.5;
}

.promise-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  color: var(--promise-blue);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.22s ease, gap 0.22s ease;
}

.promise-link:hover {
  gap: 19px;
  color: var(--promise-blue-bright);
}

.promise-signal {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --shift-x: 0px;
  --shift-y: 0px;
  --eye-x: 0px;
  --eye-y: 0px;
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 448px;
  perspective: 640px;
}

.promise-signal::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 350px;
  content: "";
  background:
    radial-gradient(circle at 50% 44%, rgba(75, 141, 255, 0.35), transparent 40%),
    radial-gradient(ellipse, rgba(47, 128, 255, 0.2), transparent 68%);
  filter: blur(25px);
  transform: translate(-50%, -50%);
}

.sonic-stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(194px, 16vw, 226px);
  height: clamp(194px, 16vw, 226px);
  transform: translate3d(var(--shift-x), var(--shift-y), 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 0.16s ease-out;
}

.sonic-groove {
  position: relative;
  display: grid;
  place-items: center;
  animation: sonicGroove 3.9s cubic-bezier(0.45, 0, 0.25, 1) infinite;
}

.sonic-orbit {
  position: absolute;
  border: 1px solid rgba(75, 141, 255, 0.27);
  border-radius: 50%;
}

.orbit-back {
  width: clamp(194px, 16vw, 228px);
  height: clamp(194px, 16vw, 228px);
  border-color: rgba(75, 141, 255, 0.5);
  opacity: 0.9;
  box-shadow: 0 0 30px rgba(47, 128, 255, 0.34);
  transform: translateZ(-34px);
}

.orbit-mid {
  width: clamp(182px, 15vw, 216px);
  height: clamp(182px, 15vw, 216px);
  border: 6px solid rgba(4, 13, 34, 0.72);
  transform: translateZ(-14px);
}

.orbit-front {
  width: clamp(169px, 14vw, 203px);
  height: clamp(169px, 14vw, 203px);
  border-color: rgba(146, 194, 255, 0.28);
  transform: translateZ(3px);
}

.sonic-headphones {
  position: absolute;
  inset: -11px;
  z-index: 1;
  transform: translateZ(28px);
  transform-style: preserve-3d;
}

.headphone-band {
  position: absolute;
  top: -14px;
  left: 15%;
  width: 70%;
  height: 57%;
  border: clamp(5px, 0.46vw, 7px) solid rgba(9, 24, 56, 0.96);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  box-shadow:
    inset 0 2px 1px rgba(108, 169, 255, 0.46),
    0 -2px 14px rgba(47, 128, 255, 0.3);
}

.headphone-cup {
  position: absolute;
  top: 52%;
  display: block;
  width: clamp(18px, 1.65vw, 23px);
  height: clamp(47px, 3.9vw, 57px);
  border: 1px solid rgba(97, 159, 255, 0.5);
  border-radius: 15px;
  background:
    radial-gradient(circle at 50% 28%, rgba(128, 182, 255, 0.24), transparent 38%),
    linear-gradient(135deg, #102857, #040c1c);
  box-shadow:
    inset 2px 0 9px rgba(75, 141, 255, 0.2),
    0 0 18px rgba(47, 128, 255, 0.3);
  transform: translateY(-50%) translateZ(11px);
  animation: headphoneBeat 1.95s ease-in-out infinite;
}

.headphone-left {
  left: -2px;
}

.headphone-right {
  right: -2px;
  animation-delay: -0.12s;
}

.sonic-core {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(168px, 13.8vw, 201px);
  height: clamp(168px, 13.8vw, 201px);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 29% 17%, rgba(166, 202, 255, 0.3), transparent 30%),
    radial-gradient(circle at 50% 53%, rgba(21, 68, 158, 0.35), transparent 55%),
    linear-gradient(145deg, #102653 0%, #050e21 54%, #020713 100%);
  box-shadow:
    inset 13px 15px 31px rgba(137, 184, 255, 0.14),
    inset -12px -18px 30px rgba(0, 0, 0, 0.48),
    0 27px 45px rgba(0, 0, 0, 0.38),
    0 0 48px rgba(47, 128, 255, 0.34);
  transform: translateZ(33px);
  transform-style: preserve-3d;
}

.core-rim {
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(93, 154, 255, 0.56);
  border-radius: 50%;
  box-shadow:
    inset 0 0 12px rgba(72, 139, 255, 0.2),
    0 0 17px rgba(47, 128, 255, 0.18);
}

.core-glass {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(92, 152, 255, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 20, 46, 0.25), rgba(4, 11, 24, 0.55));
  transform: translateZ(5px);
}

.sonic-face {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  transform: translateZ(15px);
}

.sonic-eyes {
  display: flex;
  align-items: center;
  gap: clamp(39px, 3.3vw, 48px);
  margin-top: -8px;
  margin-bottom: clamp(24px, 2vw, 29px);
}

.sonic-eye {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(33px, 2.7vw, 39px);
  height: clamp(38px, 3.2vw, 47px);
  overflow: hidden;
  border: 1px solid rgba(118, 177, 255, 0.28);
  border-radius: 52% 52% 48% 48%;
  background:
    radial-gradient(circle at 45% 34%, rgba(255, 255, 255, 0.28), transparent 34%),
    rgba(10, 27, 56, 0.86);
  box-shadow:
    inset 0 0 14px rgba(47, 128, 255, 0.19),
    0 0 15px rgba(47, 128, 255, 0.18);
}

.sonic-eye i {
  position: relative;
  display: block;
  width: clamp(16px, 1.35vw, 20px);
  height: clamp(22px, 1.8vw, 27px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 29%, #fff 0 18%, transparent 20%),
    radial-gradient(circle, #95c2ff 0 36%, #3987ff 56%, #0c2757 100%);
  box-shadow:
    0 0 14px rgba(84, 152, 255, 0.68),
    inset 2px 2px 2px rgba(255, 255, 255, 0.56);
  transform: translate(var(--eye-x), var(--eye-y));
  transition: transform 0.12s ease-out;
}

.sonic-eye i::before {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 50%;
  background: #fff;
  opacity: 0.7;
}

.sonic-smile {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: start;
  gap: clamp(2px, 0.19vw, 3px);
  width: clamp(115px, 9.7vw, 141px);
  height: clamp(40px, 3.35vw, 48px);
  transform: translateZ(16px);
}

.sonic-smile span {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(3px, 0.25vw, 4px);
  border-radius: 6px;
  background: linear-gradient(to bottom, rgba(215, 231, 255, 0.94), #2f80ff);
  box-shadow: 0 0 7px rgba(47, 128, 255, 0.56);
  transform-origin: center top;
  animation: smileWave 1.85s ease-in-out infinite alternate;
}

.sonic-smile span:nth-child(1),
.sonic-smile span:nth-child(21) {
  height: 6px;
}

.sonic-smile span:nth-child(2),
.sonic-smile span:nth-child(20) {
  height: 10px;
  margin-top: 2px;
  animation-delay: -0.55s;
}

.sonic-smile span:nth-child(3),
.sonic-smile span:nth-child(19) {
  height: 14px;
  margin-top: 4px;
  animation-delay: -0.9s;
}

.sonic-smile span:nth-child(4),
.sonic-smile span:nth-child(18) {
  height: 18px;
  margin-top: 7px;
  animation-delay: -0.32s;
}

.sonic-smile span:nth-child(5),
.sonic-smile span:nth-child(17) {
  height: 22px;
  margin-top: 9px;
  animation-delay: -0.72s;
}

.sonic-smile span:nth-child(6),
.sonic-smile span:nth-child(16) {
  height: 25px;
  margin-top: 11px;
  animation-delay: -0.44s;
}

.sonic-smile span:nth-child(7),
.sonic-smile span:nth-child(15) {
  height: 28px;
  margin-top: 13px;
  animation-delay: -1.02s;
}

.sonic-smile span:nth-child(8),
.sonic-smile span:nth-child(14) {
  height: 30px;
  margin-top: 14px;
  animation-delay: -0.61s;
}

.sonic-smile span:nth-child(9),
.sonic-smile span:nth-child(13) {
  height: 32px;
  margin-top: 15px;
  animation-delay: -0.83s;
}

.sonic-smile span:nth-child(10),
.sonic-smile span:nth-child(12) {
  height: 34px;
  margin-top: 16px;
  animation-delay: -0.38s;
}

.sonic-smile span:nth-child(11) {
  height: 35px;
  margin-top: 17px;
  animation-delay: -1.1s;
}

.core-reflection {
  position: absolute;
  top: 15px;
  left: 27px;
  width: 43%;
  height: 16%;
  border-radius: 50%;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.27), transparent);
  filter: blur(1px);
  transform: translateZ(18px) rotate(-20deg);
}

.sonic-pulse {
  position: absolute;
  width: clamp(191px, 15.8vw, 222px);
  height: clamp(191px, 15.8vw, 222px);
  border: 1px solid rgba(76, 142, 255, 0.33);
  border-radius: 50%;
  opacity: 0;
  transform: translateZ(-5px) scale(0.85);
  animation: sonicRing 3.2s ease-out infinite;
}

.pulse-two {
  animation-delay: 1.6s;
}

.sonic-shadow {
  position: relative;
  z-index: 0;
  width: 98px;
  height: 16px;
  margin-top: 30px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(47, 128, 255, 0.45), rgba(47, 128, 255, 0.04) 63%, transparent 72%);
  filter: blur(4px);
  opacity: 0.82;
  transform: translate3d(calc(var(--shift-x) * 0.2), 0, 0) scaleX(1);
  transition: transform 0.16s ease-out;
  animation: sonicShadowGroove 3.9s ease-in-out infinite;
}

.reason-copy {
  max-width: 410px;
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
  line-height: 1.75;
}

.reason-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.reason-stats p {
  min-height: 100px;
  padding: 17px 13px 14px 0;
}

.reason-stats p + p {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.065);
}

.reason-stats strong {
  display: block;
  margin-bottom: 7px;
  color: var(--promise-blue);
  font-size: clamp(23px, 2.3vw, 30px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.reason-stats span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.45;
}

.promise-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
  padding: 27px 30px;
  border: 1px solid rgba(142, 164, 207, 0.15);
  border-radius: 22px;
  color: rgba(255, 255, 255, 0.48);
  background: rgba(3, 7, 15, 0.64);
  text-align: center;
  text-transform: uppercase;
}

.promise-pillars span {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  letter-spacing: 0.15em;
}

.promise-pillars span:last-child {
  border-right: 0;
}

@keyframes smileWave {
  to {
    transform: scaleY(0.72);
    opacity: 0.72;
  }
}

@keyframes sonicGroove {
  0%,
  100% {
    transform: translate3d(0, 2px, 0) rotate(0deg);
  }

  12% {
    transform: translate3d(-5px, -6px, 0) rotate(-4.8deg);
  }

  22% {
    transform: translate3d(-7px, 0, 0) rotate(-6.2deg);
  }

  32% {
    transform: translate3d(-3px, -8px, 0) rotate(-2.4deg);
  }

  46% {
    transform: translate3d(5px, -6px, 0) rotate(4.8deg);
  }

  56% {
    transform: translate3d(7px, 0, 0) rotate(6.2deg);
  }

  66% {
    transform: translate3d(3px, -8px, 0) rotate(2.4deg);
  }

  82% {
    transform: translate3d(-3px, -4px, 0) rotate(-2.6deg);
  }
}

@keyframes headphoneBeat {
  0%,
  100% {
    filter: brightness(1);
  }

  18% {
    filter: brightness(1.22);
  }

  30% {
    filter: brightness(1.02);
  }
}

@keyframes sonicShadowGroove {
  0%,
  100% {
    opacity: 0.82;
    transform: translate3d(calc(var(--shift-x) * 0.2), 0, 0) scaleX(1);
  }

  12%,
  32%,
  46%,
  66% {
    opacity: 0.54;
    transform: translate3d(calc(var(--shift-x) * 0.2), 0, 0) scaleX(0.78);
  }
}

@keyframes sonicBlink {
  0%,
  100% {
    transform: scaleY(1);
  }

  45%,
  55% {
    transform: scaleY(0.08);
  }
}

@keyframes sonicWink {
  0%,
  100% {
    transform: scaleY(1) rotate(0);
  }

  34%,
  68% {
    transform: scaleY(0.08) rotate(-4deg);
  }
}

.sonic-face.is-blinking .sonic-eye {
  animation: sonicBlink 0.27s ease-in-out;
}

.sonic-face.is-winking .sonic-eye-left {
  animation: sonicWink 0.54s ease-in-out;
}

@keyframes sonicRing {
  0% {
    opacity: 0;
    transform: translateZ(-5px) scale(0.84);
  }

  20% {
    opacity: 0.38;
  }

  100% {
    opacity: 0;
    transform: translateZ(-5px) scale(1.52);
  }
}

@media (max-width: 1050px) {
  .promise-board {
    grid-template-columns: 1fr 1fr;
  }

  .promise-signal {
    position: absolute;
    top: -34px;
    left: 50%;
    z-index: 2;
    min-height: 0;
    padding-top: 0;
    transform: translateX(-50%);
  }

  .promise-signal::before,
  .sonic-orbit {
    display: none;
  }

  .sonic-stage {
    width: 105px;
    height: 86px;
    transform: scale(0.72);
  }

  .sonic-headphones {
    inset: -13px;
  }

  .sonic-core {
    width: 128px;
    height: 128px;
  }

  .sonic-shadow {
    display: none;
  }
}

@media (max-width: 768px) {
  .promise {
    min-height: auto;
    padding: 64px 16px 42px;
  }

  .promise-heading {
    margin-bottom: 56px;
  }

  .promise-heading h2 br {
    display: none;
  }

  .promise-heading p {
    font-size: 14px;
  }

  .promise-board {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .promise-card {
    min-height: 0;
    padding: 26px 22px;
    border-radius: 21px;
  }

  .offer-card {
    padding-top: 75px;
  }

  .offer-item {
    min-height: 82px;
  }

  .reason-stats {
    grid-template-columns: 1fr;
  }

  .reason-stats p {
    display: flex;
    align-items: baseline;
    gap: 18px;
    min-height: 65px;
    padding: 15px 0;
  }

  .reason-stats p + p {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.065);
    border-left: 0;
  }

  .reason-stats strong {
    min-width: 70px;
    margin-bottom: 0;
  }

  .promise-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
    margin-top: 18px;
    padding: 23px 10px;
  }

  .promise-pillars span:nth-child(2) {
    border-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sonic-smile span,
  .sonic-pulse {
    animation: none;
  }

  .sonic-groove,
  .sonic-stage,
  .sonic-shadow,
  .headphone-cup,
  .sonic-eye i {
    animation: none;
    transition: none;
  }
}

.wa-widget {
  position: fixed;
  right: clamp(16px, 2.2vw, 30px);
  bottom: clamp(16px, 2.2vw, 28px);
  z-index: 999;
  font-family: inherit;
}

.wa-float {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 244px;
  height: 68px;
  padding: 8px 13px 8px 9px;
  border: 1px solid rgba(75, 141, 255, 0.42);
  border-radius: 999px;
  cursor: pointer;
  color: white;
  font: inherit;
  text-align: left;
  background:
    linear-gradient(120deg, rgba(8, 19, 42, 0.95), rgba(3, 9, 21, 0.96));
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.42),
    0 0 32px rgba(47, 128, 255, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.wa-float:hover,
.wa-float:focus-visible,
.wa-float[aria-expanded="true"] {
  border-color: rgba(75, 141, 255, 0.78);
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.48),
    0 0 40px rgba(47, 128, 255, 0.27),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

.wa-float:hover {
  transform: translateY(-3px);
}

.wa-float:focus-visible {
  outline: 2px solid rgba(111, 166, 255, 0.74);
  outline-offset: 4px;
}

.wa-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  flex: none;
  border: 1px solid rgba(93, 154, 255, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 23%, rgba(174, 210, 255, 0.26), transparent 30%),
    linear-gradient(145deg, rgba(33, 92, 202, 0.64), rgba(8, 27, 63, 0.8));
  color: #e8f1ff;
  box-shadow: 0 0 22px rgba(47, 128, 255, 0.25);
}

.wa-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wa-label {
  display: grid;
  gap: 2px;
  flex: 1;
}

.wa-label small {
  color: #4b8dff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wa-label strong {
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.wa-status {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: #4b8dff;
  box-shadow: 0 0 12px rgba(75, 141, 255, 0.94);
}

.wa-chat {
  position: absolute;
  right: 0;
  bottom: 82px;
  width: min(382px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(75, 141, 255, 0.22);
  border-radius: 24px;
  background: rgba(3, 8, 18, 0.95);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.58),
    0 0 52px rgba(47, 128, 255, 0.1);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  pointer-events: none;
  transform-origin: right bottom;
  transition: opacity 0.25s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.wa-chat.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 17px;
  border-bottom: 1px solid rgba(75, 141, 255, 0.14);
  background:
    radial-gradient(circle at 10% 15%, rgba(47, 128, 255, 0.18), transparent 36%),
    rgba(5, 12, 27, 0.94);
}

.wa-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(75, 141, 255, 0.34);
  border-radius: 13px;
  color: #76adff;
  background: rgba(35, 90, 190, 0.12);
}

.wa-avatar svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wa-head-copy {
  flex: 1;
}

.wa-head strong {
  display: block;
  color: rgba(255, 255, 255, 0.96);
  font-size: 15px;
  font-weight: 500;
}

.wa-head-copy > span {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.wa-head-copy i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4b8dff;
  box-shadow: 0 0 9px #4b8dff;
}

.wa-head button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.wa-head button:hover {
  border-color: rgba(75, 141, 255, 0.48);
  color: white;
}

.wa-head button svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.wa-body {
  padding: 22px 18px 24px;
  min-height: 146px;
  background:
    radial-gradient(circle at top right, rgba(47, 128, 255, 0.16), transparent 42%),
    linear-gradient(145deg, #050c19, #030812);
}

.wa-kicker {
  display: block;
  margin-bottom: 14px;
  color: #4b8dff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.wa-message {
  width: fit-content;
  max-width: 92%;
  padding: 14px 16px;
  border: 1px solid rgba(75, 141, 255, 0.12);
  border-radius: 4px 17px 17px 17px;
  background: rgba(23, 46, 86, 0.34);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.65;
}

.wa-form {
  display: flex;
  gap: 10px;
  padding: 14px 15px 15px;
  border-top: 1px solid rgba(75, 141, 255, 0.12);
  background: #030812;
}

.wa-form input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 17px;
  border: 1px solid rgba(75, 141, 255, 0.16);
  border-radius: 999px;
  outline: none;
  font: inherit;
  font-size: 13px;
  color: white;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wa-form input::placeholder {
  color: rgba(255, 255, 255, 0.39);
}

.wa-form input:focus {
  border-color: rgba(75, 141, 255, 0.62);
  box-shadow: 0 0 0 3px rgba(75, 141, 255, 0.12);
}

.wa-form button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(75, 141, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  color: white;
  background: linear-gradient(135deg, #2f80ff, #1e5bd4);
  box-shadow: 0 10px 25px rgba(31, 94, 219, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-form button:hover {
  transform: translateX(2px);
  box-shadow: 0 12px 30px rgba(31, 94, 219, 0.42);
}

.wa-form button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

@media (max-width: 540px) {
  .wa-widget {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
  }

  .wa-chat {
    bottom: 76px;
  }

  .wa-float {
    width: 62px;
    height: 62px;
    padding: 6px;
    justify-content: center;
  }

  .wa-icon {
    width: 48px;
    height: 48px;
  }

  .wa-label,
  .wa-status {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float,
  .wa-chat,
  .wa-head button,
  .wa-form input,
  .wa-form button {
    transition: none;
  }
}

/* FIX RESPONSIVE PERSONAJE - PEGAR AL FINAL */
@media (max-width: 1050px) {
  .promise-board {
    grid-template-columns: 1fr !important;
  }

  .promise-signal {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    min-height: 280px !important;
    padding: 12px 0 18px !important;
    order: -1 !important;
  }

  .promise-signal::before,
  .sonic-orbit,
  .sonic-shadow {
    display: block !important;
  }

  .sonic-stage {
    width: 245px !important;
    height: 245px !important;
  }

  .sonic-core {
    width: 205px !important;
    height: 205px !important;
  }

  .orbit-back {
    width: 255px !important;
    height: 255px !important;
  }

  .orbit-mid {
    width: 238px !important;
    height: 238px !important;
  }

  .orbit-front {
    width: 220px !important;
    height: 220px !important;
  }

  .headphone-cup {
    width: 31px !important;
    height: 74px !important;
  }

  .offer-card {
    padding-top: 26px !important;
  }
}

@media (max-width: 520px) {
  .promise-signal {
    min-height: 235px !important;
  }

  .sonic-stage {
    width: 205px !important;
    height: 205px !important;
  }

  .sonic-core {
    width: 172px !important;
    height: 172px !important;
  }

  .orbit-back {
    width: 215px !important;
    height: 215px !important;
  }

  .orbit-mid {
    width: 200px !important;
    height: 200px !important;
  }

  .orbit-front {
    width: 184px !important;
    height: 184px !important;
  }

  .headphone-cup {
    width: 26px !important;
    height: 62px !important;
  }
}
/* Footer */
.sg-footer {
  position: relative;
  overflow: hidden;
  padding: 90px 24px 28px;
  background: linear-gradient(to bottom, #02060d, #030814);
  border-top: 1px solid rgba(75,141,255,.14);
}

.footer-glow {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: min(760px, 90vw);
  height: 260px;
  margin: 0 auto;
  background: radial-gradient(ellipse, rgba(75,141,255,.18), transparent 68%);
  filter: blur(34px);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto 58px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: start;
}

.footer-brand img {
  display: block;
  width: min(330px, 72vw);
  height: 112px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 24px;
}

.footer-brand h2 {
  max-width: 640px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.065em;
  font-weight: 500;
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 520px;
  color: rgba(255,255,255,.62);
  line-height: 1.7;
  margin-bottom: 30px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  color: white;
  text-decoration: none;
  background: linear-gradient(135deg, #2f80ff, #1f5edb);
  box-shadow: 0 18px 45px rgba(31,94,219,.25);
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease, opacity .25s ease;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
  align-self: end;
}

.footer-links span {
  display: block;
  margin-bottom: 18px;
  color: #4b8dff;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-bottom: 13px;
  color: rgba(255,255,255,.68);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: white;
}

.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(31,94,219,.35);
}

.footer-bottom {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,.42);
  font-size: 13px;
}

@media (max-width: 1024px) {
  .footer-inner,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 800px) {
  .footer-brand p {
    font-size: 15px;
  }
}

@media (min-width: 1101px) {
  .menu a span:last-child,
  .menu a svg {
    display: none !important;
  }
}

@media (max-width: 1100px) {
  .menu a span:last-child {
    display: block !important;
    color: #4b8dff !important;
  }

  .menu a svg {
    display: block !important;
    color: #4b8dff !important;
  }
}

.logo::before {
  content: "";
  position: absolute;
  inset: 14px -10px 12px -10px;
  z-index: 0;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(2, 6, 13, 0.72), rgba(2, 6, 13, 0.22) 58%, transparent 74%);
  pointer-events: none;
}

.logo img {
  z-index: 1;
}

/* Fade unificado entre hero y primera seccion */
.hero {
  z-index: 2;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 360px;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(2,6,13,0) 0%, rgba(2,6,13,.62) 44%, #02060d 86%, #02060d 100%);
  pointer-events: none;
}

.hero-content,
.hero-actions {
  position: relative;
  z-index: 4;
}

.services {
  position: relative;
  z-index: 1;
  margin-top: -80px;
  padding-top: max(120px, clamp(78px, 8vw, 108px));
  background:
    linear-gradient(to bottom, rgba(2,6,13,0) 0%, #02060d 76px, #02060d 100%),
    #02060d;
}

.services::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -130px;
  height: 220px;
  z-index: 0;
  background:
    linear-gradient(to bottom, rgba(2,6,13,0) 0%, rgba(2,6,13,.58) 42%, #02060d 100%);
  pointer-events: none;
}

.services-inner {
  position: relative;
  z-index: 1;
}

/* Quality Comparison Section */
.quality-comparison {
  position: relative;
  padding: 70px 48px 80px;
  background: linear-gradient(
    180deg,
    rgba(2, 6, 13, 1) 0%,
    rgba(6, 12, 26, 0.9) 100%
  );
  overflow: hidden;
}

.quality-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.quality-header {
  text-align: center;
  margin-bottom: 80px;
}

.quality-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(75, 141, 255, 0.4);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #4b8dff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease forwards;
}

.quality-badge i {
  font-size: 8px;
}

.quality-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.quality-header h2 em {
  font-style: normal;
  color: #4499ff;
  background: linear-gradient(135deg, #4499ff, #6bb3ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.quality-comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 0;
}

.quality-card {
  padding: 28px 32px 26px;
  border: 1px solid rgba(75, 141, 255, 0.25);
  border-radius: 18px;
  background: rgba(4, 9, 18, 0.75);
  backdrop-filter: blur(14px);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.quality-card:hover {
  border-color: rgba(75, 141, 255, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.quality-card--unoptimized {
  border-color: rgba(255, 68, 68, 0.3);
}

.quality-card--unoptimized:hover {
  border-color: rgba(255, 68, 68, 0.6);
}

.quality-card--optimized {
  border-color: rgba(68, 153, 255, 0.3);
}

.quality-card--optimized:hover {
  border-color: rgba(68, 153, 255, 0.6);
}

.quality-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.quality-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
}

.quality-card--unoptimized .quality-icon {
  color: #ff4444;
  border: 2px solid #ff4444;
}

.quality-card--optimized .quality-icon {
  color: #4499ff;
  border: 2px solid #4499ff;
}

.quality-card h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.quality-card--unoptimized h3 {
  color: #ff4444;
}

.quality-card--optimized h3 {
  color: #4499ff;
}

.quality-visualizer {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 0;
  border-radius: 12px;
  background: transparent;
  overflow: hidden;
}

.quality-line {
  position: relative;
  width: min(420px, 100%);
  height: 60px;
}

.quality-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
  box-shadow: 0 0 10px currentColor;
}

.quality-line span {
  position: absolute;
  top: calc(50% - 10px);
  width: 2px;
  height: 20px;
  border-radius: 2px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  animation: tick-pulse 1.6s ease-in-out infinite;
}

.quality-line span:nth-child(1) {
  left: 14%;
  height: 16px;
  animation-delay: 0s;
}

.quality-line span:nth-child(2) {
  left: 50%;
  height: 22px;
  animation-delay: 0.35s;
}

.quality-line span:nth-child(3) {
  left: 86%;
  height: 18px;
  animation-delay: 0.7s;
}

.quality-line--red {
  color: #ff4b4b;
}

.quality-line--blue {
  color: #4b8dff;
}

@keyframes tick-pulse {
  0%, 100% {
    opacity: 0.65;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.quality-description {
  text-align: center;
  font-size: 14px;
  color: rgba(231, 240, 255, 0.85);
  margin: 0;
}

.quality-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.quality-vs-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(75, 141, 255, 0.6);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  color: #e7f0ff;
  background: radial-gradient(circle, rgba(68, 153, 255, 0.12), transparent 70%);
  box-shadow: 0 0 16px rgba(68, 153, 255, 0.25);
}

.quality-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 24px;
  border: 1px solid rgba(75, 141, 255, 0.2);
  border-radius: 12px;
  background: rgba(68, 153, 255, 0.05);
  text-align: center;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.quality-footer-icon {
  font-size: 24px;
  color: #4b8dff;
}

.quality-footer p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.quality-footer strong {
  color: #4499ff;
  font-weight: 600;
}

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

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

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

/* Responsive */
@media (max-width: 768px) {
  .quality-comparison {
    padding: 60px 24px;
  }

  .quality-header {
    margin-bottom: 48px;
  }

  .quality-comparison-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .quality-vs {
    order: -1;
    margin-bottom: -20px;
    opacity: 0.5;
  }

  .quality-vs-text {
    width: 48px;
    height: 48px;
    font-size: 14px;
  }

  .quality-card {
    padding: 24px;
  }

  .quality-visualizer {
    height: 80px;
  }

  .quality-footer {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .quality-comparison {
    padding: 40px 16px;
  }

  .quality-header h2 {
    font-size: 28px;
  }

  .quality-badge {
    font-size: 10px;
    padding: 8px 16px;
  }

  .quality-card {
    padding: 16px;
  }

  .quality-card-header {
    margin-bottom: 16px;
  }

  .quality-visualizer {
    height: 70px;
  }

  .quality-footer {
    padding: 20px 16px;
  }

  .quality-footer-icon {
    font-size: 18px;
  }

  .quality-footer p {
    font-size: 14px;
  }
}
