:root {
  --bg: #0c0c11;
  --bg-deep: #08080c;
  --surface: #14141c;
  --surface-2: #191922;
  --surface-soft: #101017;
  --text: #f3f3f7;
  --text-soft: #c7c7d2;
  --muted: #9292a4;
  --muted-dark: #6e6e80;
  --violet: #8b5cf6;
  --violet-light: #a78bfa;
  --magenta: #d946ef;
  --magenta-light: #e879f9;
  --lime: #c6ff4d;
  --whatsapp: #25d366;
  --whatsapp-ink: #073b22;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --container: 1180px;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

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

img {
  display: block;
  max-width: 100%;
}

svg {
  display: block;
}

[hidden] {
  display: none !important;
}

::selection {
  background: var(--lime);
  color: var(--bg);
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--lime);
  color: var(--bg);
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.container--narrow {
  max-width: 980px;
}

.section {
  position: relative;
  padding-block: 104px;
}

.section--soft {
  background:
    radial-gradient(circle at 10% 10%, rgba(139, 92, 246, 0.08), transparent 27%),
    var(--surface-soft);
  border-block: 1px solid rgba(255, 255, 255, 0.04);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 4.4vw, 3.5rem);
}

h2 em,
h1 em {
  background: linear-gradient(110deg, var(--violet-light) 15%, var(--magenta-light) 78%);
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--violet-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet), var(--magenta));
}

.eyebrow--center {
  justify-content: center;
}

.section-heading {
  margin-bottom: 54px;
}

.section-heading > p,
.section-heading > div > p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading--center {
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: 58px;
  text-align: center;
}

.section-heading--center h2,
.section-heading--center > p {
  margin-inline: auto;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  gap: 64px;
  align-items: end;
}

.section-heading--split h2 {
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

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

.button svg,
.text-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button--small {
  min-height: 44px;
  padding: 10px 19px;
  font-size: 0.87rem;
}

.button--large {
  min-height: 60px;
  padding: 17px 30px;
  font-size: 1rem;
}

.button--primary {
  background: linear-gradient(120deg, var(--violet), var(--magenta));
  box-shadow: 0 18px 40px -18px rgba(217, 70, 239, 0.9);
  color: #fff;
}

.button--primary:hover {
  box-shadow: 0 22px 48px -16px rgba(217, 70, 239, 0.95);
}

.button--ghost {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.button--ghost:hover {
  border-color: rgba(198, 255, 77, 0.5);
  background: rgba(198, 255, 77, 0.07);
}

.button--whatsapp {
  background: var(--whatsapp);
  box-shadow: 0 15px 32px -18px rgba(37, 211, 102, 0.85);
  color: var(--whatsapp-ink);
}

.button--whatsapp:hover {
  box-shadow: 0 18px 38px -16px rgba(37, 211, 102, 0.95);
}

.button--dark {
  background: var(--bg);
  color: var(--lime);
}

.button--full {
  width: 100%;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  border-color: var(--border);
  background: rgba(12, 12, 17, 0.86);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.brand strong {
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  box-shadow: 0 12px 26px -12px rgba(217, 70, 239, 0.9);
  color: var(--bg);
}

.brand-mark svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 34px);
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  border-radius: 999px;
  background: var(--lime);
  content: "";
  transition: transform 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--text);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 4px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  display: flex;
  min-height: 820px;
  align-items: center;
  overflow: hidden;
  padding-top: 142px;
  padding-bottom: 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: clamp(44px, 6vw, 76px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 25px;
  font-size: clamp(3.35rem, 5.6vw, 4.8rem);
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--text-soft);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.trust-list {
  display: flex;
  max-width: 560px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  min-width: 0;
  flex: 1 1 0;
  flex-direction: column;
  gap: 2px;
  padding-inline: 22px;
  border-left: 1px solid var(--border-strong);
}

.trust-list li:first-child {
  padding-left: 0;
  border-left: 0;
}

.trust-list strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.27rem;
  letter-spacing: -0.03em;
}

.trust-list span {
  color: var(--muted);
  font-size: 0.76rem;
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.hero-image-wrap {
  position: absolute;
  inset: 18px 0 18px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-image-wrap::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  box-shadow: inset 0 0 45px rgba(139, 92, 246, 0.16);
  content: "";
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.hero-image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12, 12, 17, 0.52));
  pointer-events: none;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(20, 20, 28, 0.88);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: float 5.5s ease-in-out infinite;
}

.floating-card > span:last-child {
  display: flex;
  flex-direction: column;
}

.floating-card strong {
  font-size: 0.83rem;
  line-height: 1.25;
}

.floating-card small {
  color: var(--muted);
  font-size: 0.68rem;
}

.floating-card--delivery {
  top: 2px;
  right: -14px;
}

.floating-card--result {
  right: auto;
  bottom: 0;
  left: -14px;
  animation-delay: -2.3s;
}

.floating-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: rgba(198, 255, 77, 0.13);
  color: var(--lime);
}

.floating-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.floating-number {
  font-family: "Space Grotesk", sans-serif;
  color: var(--lime);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.hero-glow--one {
  top: -200px;
  left: -220px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.19), transparent 68%);
}

.hero-glow--two {
  right: -170px;
  bottom: -240px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(217, 70, 239, 0.17), transparent 67%);
}

.diagnostic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.diagnostic-card {
  display: grid;
  min-height: 112px;
  grid-template-columns: auto 1fr auto;
  gap: 17px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.diagnostic-card:hover,
.diagnostic-card[aria-pressed="true"] {
  transform: translateY(-3px);
  border-color: rgba(167, 139, 250, 0.62);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(217, 70, 239, 0.08)), var(--surface);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.diagnostic-card[aria-pressed="true"] .diagnostic-arrow {
  transform: translateX(3px);
  color: var(--lime);
}

.diagnostic-icon,
.service-icon,
.benefit-card > span:first-child {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.22), rgba(217, 70, 239, 0.11));
  color: var(--violet-light);
}

.diagnostic-icon svg,
.service-icon svg,
.benefit-card > span:first-child svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.diagnostic-card > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.diagnostic-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
}

.diagnostic-card small {
  color: var(--muted);
  font-size: 0.78rem;
}

.diagnostic-arrow {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--muted-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: color 180ms ease, transform 180ms ease;
}

.recommendation {
  display: flex;
  margin-top: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background: linear-gradient(125deg, var(--violet), var(--magenta));
  box-shadow: 0 26px 55px -28px rgba(217, 70, 239, 0.85);
  animation: resultIn 300ms ease both;
}

.recommendation-copy {
  max-width: 660px;
}

.recommendation-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(12, 12, 17, 0.19);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.recommendation h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.recommendation-copy > strong {
  display: block;
  margin-bottom: 5px;
  color: var(--lime);
  font-size: 0.91rem;
}

.recommendation p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.89rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12);
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(167, 139, 250, 0.32);
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.23);
}

.service-number {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
  background: rgba(12, 12, 17, 0.68);
  color: var(--lime);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.service-body {
  display: flex;
  min-height: 465px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
}

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 13px;
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.22rem, 1.7vw, 1.5rem);
}

.service-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-list {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 11px;
  margin: 0 0 26px;
  padding: 0;
  color: var(--text-soft);
  font-size: 0.87rem;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.feature-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  fill: none;
  stroke: var(--violet-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.feature-list--light {
  color: rgba(255, 255, 255, 0.84);
}

.feature-list--light svg {
  stroke: var(--lime);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--lime);
  font-size: 0.88rem;
  font-weight: 800;
}

.text-link svg {
  transition: transform 160ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.service-number--plain {
  top: 24px;
  right: 24px;
  background: rgba(12, 12, 17, 0.16);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(58px, 8vw, 100px);
  align-items: center;
}

.why-copy {
  position: sticky;
  top: 125px;
}

.why-copy p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 30px;
  color: var(--muted);
}

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

.benefit-card {
  min-height: 235px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 21px;
  background: var(--surface);
  transition: transform 180ms ease, border-color 180ms ease;
}

.benefit-card:nth-child(2) {
  transform: translateY(24px);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 139, 250, 0.36);
}

.benefit-card:nth-child(2):hover {
  transform: translateY(20px);
}

.benefit-card > span:first-child {
  margin-bottom: 24px;
}

.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.benefit-card--quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.17), rgba(217, 70, 239, 0.1)), var(--surface);
}

.benefit-card--quote blockquote {
  margin: 16px 0 15px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.45;
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--lime);
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--border);
}

.stat-card {
  padding: 42px 24px;
  background: var(--surface);
  text-align: center;
}

.stat-card strong {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.7rem, 5vw, 4rem);
  letter-spacing: -0.065em;
  line-height: 1;
}

.stat-card strong span {
  background: linear-gradient(120deg, var(--violet-light), var(--magenta-light));
  background-clip: text;
  color: transparent;
}

.stat-card small {
  margin: 4px 0 0 3px;
  color: var(--lime);
  font-size: 1.2rem;
}

.stat-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.progress-panel {
  margin-top: 22px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 10%, rgba(217, 70, 239, 0.12), transparent 28%),
    var(--surface);
}

.progress-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 46px;
  align-items: end;
  margin-bottom: 36px;
}

.progress-heading span {
  display: block;
  margin-bottom: 7px;
  color: var(--violet-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.progress-heading h3 {
  max-width: 570px;
  margin-bottom: 0;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.progress-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.progress-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 23px 38px;
}

.progress-item > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 9px;
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.progress-item strong {
  color: var(--lime);
  font-size: 0.78rem;
}

.progress-track {
  display: block;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), var(--magenta));
  box-shadow: 0 0 18px rgba(217, 70, 239, 0.45);
  transition: width 1.1s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
}

.testimonial-card--featured {
  transform: translateY(-16px);
  border-color: rgba(167, 139, 250, 0.3);
  background: linear-gradient(160deg, rgba(139, 92, 246, 0.15), rgba(217, 70, 239, 0.08)), var(--surface);
  box-shadow: 0 25px 48px rgba(0, 0, 0, 0.2);
}

.testimonial-card blockquote {
  margin: 26px 0 30px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.avatar {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.testimonial-card footer > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.testimonial-card footer strong {
  font-size: 0.86rem;
}

.testimonial-card footer small {
  color: var(--muted);
  font-size: 0.72rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 32px 29px;
  border: 1px solid var(--border);
  border-radius: 23px;
  background: var(--surface);
}

.price-card--featured {
  border-color: transparent;
  background: linear-gradient(155deg, var(--violet), var(--magenta));
  box-shadow: 0 32px 65px -28px rgba(217, 70, 239, 0.75);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 800;
}

.price-card-heading h3 {
  margin-bottom: 6px;
  padding-right: 66px;
  font-size: 1.3rem;
}

.price-card-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.price-card--featured .price-card-heading p {
  color: rgba(255, 255, 255, 0.75);
}

.price {
  display: flex;
  flex-direction: column;
  margin-block: 28px 26px;
}

.price > span {
  color: var(--muted);
  font-size: 0.72rem;
}

.price strong {
  color: var(--lime);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.25rem);
  letter-spacing: -0.05em;
}

.price small {
  color: var(--muted-dark);
  font-size: 0.68rem;
}

.price-card--featured .price > span,
.price-card--featured .price small {
  color: rgba(255, 255, 255, 0.7);
}

.price-card--featured .price strong {
  color: white;
}

.price-card .feature-list {
  flex: 1;
}

.promo-note {
  display: flex;
  max-width: 860px;
  align-items: center;
  gap: 15px;
  margin: 24px auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(139, 92, 246, 0.32);
  border-radius: 16px;
  background: rgba(139, 92, 246, 0.09);
}

.promo-note > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: rgba(198, 255, 77, 0.12);
  color: var(--lime);
}

.promo-note svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.promo-note p {
  margin-bottom: 0;
  color: #c9bcf5;
  font-size: 0.86rem;
}

.promo-note strong {
  color: var(--lime);
}

.contact {
  padding-top: 56px;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 8vw, 88px) 28px;
  border: 1px solid var(--border-strong);
  border-radius: 32px;
  background: linear-gradient(155deg, #1a1030, #16161f 65%);
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-inline: auto;
}

.contact h2 {
  margin-inline: auto;
  font-size: clamp(2.55rem, 5.2vw, 4.1rem);
}

.contact-content > p:not(.eyebrow) {
  max-width: 590px;
  margin: 0 auto 32px;
  color: var(--text-soft);
  font-size: 1.02rem;
}

.contact-content > small {
  display: block;
  margin-top: 19px;
  color: var(--muted);
  font-size: 0.79rem;
}

.contact-content > small a {
  color: var(--lime);
  font-weight: 700;
}

.contact-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(12px);
}

.contact-glow--one {
  top: -175px;
  right: -80px;
  background: radial-gradient(circle, rgba(217, 70, 239, 0.4), transparent 67%);
}

.contact-glow--two {
  bottom: -200px;
  left: -80px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.4), transparent 67%);
}

.site-footer {
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--bg-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 42px;
  padding-bottom: 48px;
}

.footer-brand p {
  max-width: 330px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-grid h3 {
  margin: 9px 0 19px;
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.footer-grid ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.8rem;
  list-style: none;
}

.footer-grid a {
  transition: color 160ms ease;
}

.footer-grid li a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 25px;
  border-top: 1px solid var(--border);
  color: var(--muted-dark);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom a:hover {
  color: var(--lime);
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: var(--whatsapp);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
  color: var(--whatsapp-ink);
  font-size: 0.8rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.34);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.reveal-init {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-init.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

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

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(3rem, 5.4vw, 4.15rem);
  }

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

@media (max-width: 920px) {
  html {
    scroll-padding-top: 78px;
  }

  .header-inner {
    min-height: 72px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    z-index: 99;
    top: 72px;
    right: 0;
    left: 0;
    display: flex;
    max-height: calc(100dvh - 72px);
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    padding: 18px 24px 26px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(12, 12, 17, 0.98);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.32);
  }

  .mobile-menu > a:not(.button) {
    padding: 13px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-soft);
    font-size: 0.94rem;
    font-weight: 700;
  }

  .mobile-menu .button {
    margin-top: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(3.2rem, 8.5vw, 5rem);
  }

  .hero-visual {
    min-height: 580px;
  }

  .hero-image-wrap {
    inset: 10px 5% 10px 5%;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

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

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

  .why-copy {
    position: static;
  }

  .why-copy h2,
  .why-copy p:not(.eyebrow) {
    max-width: 720px;
  }

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

  .progress-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-inline: auto;
  }

  .testimonial-card {
    min-height: 290px;
  }

  .testimonial-card--featured {
    transform: none;
  }

  .price-card {
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding-block: 82px;
  }

  .hero {
    padding-top: 116px;
    padding-bottom: 80px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.1rem);
  }

  .hero-visual {
    min-height: 480px;
  }

  .hero-image-wrap {
    inset-inline: 0;
  }

  .floating-card--delivery {
    right: -5px;
  }

  .floating-card--result {
    left: -5px;
  }

  .diagnostic-grid,
  .services-grid,
  .benefits-grid,
  .progress-grid {
    grid-template-columns: 1fr;
  }

  .recommendation {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-body {
    min-height: 390px;
  }

  .benefit-card,
  .benefit-card:nth-child(2) {
    min-height: 0;
    transform: none;
  }

  .benefit-card:nth-child(2):hover {
    transform: translateY(-4px);
  }

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

@media (max-width: 520px) {
  .header-cta {
    display: none;
  }

  .brand {
    font-size: 1.02rem;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading--center {
    margin-bottom: 44px;
  }

  .hero .eyebrow {
    max-width: 270px;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-list {
    margin-top: 35px;
  }

  .trust-list li {
    padding-inline: 12px;
  }

  .trust-list strong {
    font-size: 1.05rem;
  }

  .trust-list span {
    font-size: 0.63rem;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-image-wrap {
    border-radius: 22px;
  }

  .floating-card {
    gap: 8px;
    padding: 10px 11px;
    border-radius: 13px;
  }

  .floating-card--delivery {
    top: -4px;
  }

  .floating-card--result {
    bottom: -6px;
  }

  .floating-icon {
    width: 32px;
    height: 32px;
  }

  .floating-icon svg {
    width: 17px;
    height: 17px;
  }

  .floating-card strong {
    font-size: 0.69rem;
  }

  .floating-card small {
    font-size: 0.58rem;
  }

  .floating-number {
    font-size: 1.55rem;
  }

  .diagnostic-card {
    min-height: 105px;
    gap: 13px;
    padding: 18px 16px;
  }

  .diagnostic-icon {
    width: 43px;
    height: 43px;
  }

  .recommendation {
    padding: 24px 21px;
  }

  .recommendation .button {
    width: 100%;
  }

  .service-body {
    padding: 24px;
  }

  .service-body {
    min-height: 380px;
  }

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

  .stat-card {
    padding: 34px 20px;
  }

  .progress-panel,
  .testimonial-card,
  .price-card {
    padding: 25px 22px;
  }

  .promo-note {
    align-items: flex-start;
    padding: 17px;
  }

  .contact {
    padding-top: 40px;
  }

  .contact-panel {
    padding-inline: 20px;
    border-radius: 24px;
  }

  .contact .button {
    width: 100%;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-init {
    opacity: 1;
    transform: none;
  }
}
