:root {
  --bg: #ffffff;
  --bg-soft: #FAEAF8;
  --bg-strong: #F6D6F1;
  --surface: #ffffff;
  --text: #1d1a1f;
  --text-muted: #6f6671;
  --accent: #D433BB;
  --accent-strong: #D433BB;
  --accent-soft: #F2C1EA;
  --accent-light: #E584D6;
  --logo-ink: #1b1832;
  --logo-dot: #e43bbf;
  --border: #f1e4ee;
  --shadow: 0 30px 70px rgba(212, 51, 187, 0.15);
  --header-bg: rgba(255, 255, 255, 0.9);
  --hero-glow-1: #FAEAF8;
  --hero-glow-2: #F8E0F4;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

body[data-theme="dark"] {
  --bg: #0f0c12;
  --bg-soft: #17121b;
  --bg-strong: #211526;
  --surface: #17111f;
  --text: #f6edf7;
  --text-muted: #b9a9c4;
  --accent: #D433BB;
  --accent-strong: #D433BB;
  --accent-soft: #3b162a;
  --accent-light: #E999DD;
  --logo-ink: #f6edf7;
  --logo-dot: #D433BB;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 30px 70px rgba(212, 51, 187, 0.35);
  --header-bg: rgba(15, 12, 18, 0.9);
  --hero-glow-1: rgba(212, 51, 187, 0.25);
  --hero-glow-2: rgba(212, 51, 187, 0.18);
  color-scheme: dark;
}

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

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  isolation: isolate;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  mix-blend-mode: normal;
  background-repeat: repeat;
}

body::before {
  background-image:
    repeating-linear-gradient(rgba(212, 51, 187, 0.16) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(90deg, rgba(212, 51, 187, 0.1) 0 1px, transparent 1px 64px);
  background-size: 148px 148px;
  opacity: 0.4;
  animation: driftGrid 48s linear infinite;
}

body::after {
  background-image:
    repeating-linear-gradient(rgba(255, 255, 255, 0.2) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 40px);
  background-size: 96px 96px;
  opacity: 0.35;
  filter: blur(0.3px);
  animation: driftGridReverse 32s linear infinite;
}

@keyframes driftGrid {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 220px 220px, -220px -220px;
  }
}

@keyframes driftGridReverse {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: -180px -180px, 180px 180px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

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

.page {
  overflow-x: hidden;
}

main {
  margin-top: 120px;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  padding: 14px 0;
  z-index: 50;
}

.header-shell {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 28px;
  border-radius: 10px;
  background: var(--surface);
  background-color: #1a1836;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.nav-actions .btn {
  min-width: 170px;
  height: 44px;
  padding: 10px 18px;
  font-size: 0.9rem;
  border-radius: 12px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-img {
  height: 25px;
  width: auto;
  display: block;
}


body[data-theme="dark"] .logo-img {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 22px;
  justify-content: center;
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
  flex-wrap: wrap;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  padding: 8px 12px;
  border-radius: 12px;
  transition: color 0.2s ease, transform 0.2s ease;
  color: #fff;
}

.nav-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(212, 51, 187, 0.14), rgba(212, 51, 187, 0));
  opacity: 1;
  transform: scaleX(0.7);
  transform-origin: left;
  transition: opacity 0.2s ease, transform 0.25s ease;
  z-index: -1;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 3px;
  height: 2.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover {
  color: #f262c8;
  transform: translateY(-1px);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.nav-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.btn {
  border-radius: 12px;
  padding: 12px 26px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  min-width: 190px;
  height: 44px;
  background: var(--accent);
  color: #fff;
}

.btn:hover {
  background: #be30b0;
  border-color: #be30b0;
  transform: translateY(-1px);
}

.btn-primary,
.btn-ghost,
.btn-outline,
.btn-whatsapp-border {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.hero {
  position: relative;
  padding: 90px 0 120px;
  background: transparent;
}

.hero-ref {
  position: relative;
  padding: 65px 0 70px;
  background: transparent;
  overflow: hidden;
}

.hero-ref::before {
  content: "";
  position: absolute;
  inset: -20% 0 0 0;
  background-image: none;
  background-size: 0;
  opacity: 1;
  animation: none;
  pointer-events: none;
  z-index: 0;
}

.hero-ref .container {
  position: relative;
  z-index: 1;
}

.hero-ref .hero-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.hero-ref .hero-visual {
  margin-bottom: 55px;
  display: grid;
  place-items: center;
}

.hero-ref .hero-copy {
  max-width: 820px;
}

.hero-ref .hero-copy > * + * {
  margin-top: 18px;
}

.hero-ref .hero-actions {
  margin-top: 10px;
}

.hero-ref .hero-stats {
  margin-top: 2px;
}

.hero-ref .hero-copy h1 {
  font-size: clamp(2.4rem, 3.0vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-ref .hero-copy p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.hero-ref .hero-stats {
  margin-top: 6px;
}

.hero-ref .hero-stats strong {
  font-size: 1.25rem;
  color: var(--accent-strong);
}

.hero-ref .hero-stats span {
  font-size: 0.88rem;
}

.hero-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 28px 0 0 auto;
  align-self: flex-end;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  text-align: center;
}

.hero-scroll-icon {
  width: 26px;
  height: 26px;
  color: var(--accent-strong);
  animation: bounceArrow 1.8s ease-in-out infinite;
}

@keyframes bounceArrow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 60px;
}

.hero-copy h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 3vw + 1rem, 3.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-copy p {
  color: var(--text-muted);
  margin-bottom: 26px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--bg-strong);
  color: var(--accent-strong);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    align-items: flex-end;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.hero-stats strong {
  display: block;
  font-size: 1.4rem;
  color: var(--accent-strong);
}

.hero-stats span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 51, 187, 0.25);
  background: #F9E6F6;
  color: var(--accent-strong);
  font-weight: 600;
  margin: 0 auto 26px;
  justify-content: center;
}

body[data-theme="dark"] .hero-pill {
  background: #221828;
  border-color: rgba(212, 51, 187, 0.45);
  color: #f0bfe6;
}

.pill-avatars {
  display: inline-flex;
  align-items: center;
}

.avatar-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  background: var(--accent-soft);
}

.avatar-dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.avatar-dot.one {
  margin-left: 0;
  background: linear-gradient(130deg, #F4CCEE, #F8E0F4);
}

.avatar-dot.two {
  background: linear-gradient(130deg, #E999DD, #F2C1EA);
}

.avatar-dot.three {
  background: linear-gradient(130deg, #F4CCEE, #F9E6F6);
}

.avatar-dot.four {
  background: linear-gradient(130deg, #E999DD, #F4CCEE);
}

@keyframes gridMove {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 80px 80px, 80px 80px;
  }
}

@keyframes trackMove {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(calc(100% - 10px));
  }
}

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

@keyframes floatTag {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@keyframes scanLine {
  0% {
    top: 40px;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: calc(100% - 24px);
    opacity: 0;
  }
}

@keyframes pulseBar {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes floatGrid {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 120px 120px, 120px 120px;
  }
}

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

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes pulseRing {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(212, 51, 187, 0.08);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(212, 51, 187, 0.16);
  }
}

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

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

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

@keyframes orbFloat {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-8px);
    opacity: 0.7;
  }
}

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

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

.hero-art {
  position: relative;
  width: 100%;
  max-width: 700px;
  overflow: visible;
}

.hero-art img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 24px 50px rgba(23, 20, 51, 0.18));
  animation: floatHero 8s ease-in-out infinite;
}

.hero-art-side {
  width: min(460px, 70vw);
  align-self: center;
  justify-self: center;
}


.hero-art-side .art-overlay::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  bottom: -5px;
  left: 10px;
  filter: blur(3px);
  animation: heroFloat 12s ease-in-out infinite;
}



.hero-art-side .art-overlay img {
  width: 100%;
  border-radius: 32px;
  filter: drop-shadow(0 20px 50px rgba(212, 51, 187, 0.2));
  animation: floatHero 8s ease-in-out infinite;
}

.hero-badge {
  position: absolute;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  color: #2c1032;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  border: 1px solid rgba(44, 16, 50, 0.1);
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.08);
}

.badge-top {
  top: 18px;
  right: 18px;
}

.badge-left {
  bottom: 22px;
  left: 22px;
}

.badge-bottom {
  bottom: 18px;
  right: 22px;
}

.hero-bling {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(212, 51, 187, 0) 70%);
  top: 40%;
  right: -10%;
  animation: floatGlow 6s ease-in-out infinite;
}

.hero-floating {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 5px 20px rgba(212, 51, 187, 0.15);
  animation: heroFloat 8s ease-in-out infinite;
}

.hero-floating-one {
  width: 120px;
  height: 32px;
  top: 12%;
  left: -12px;
}

.hero-floating-two {
  width: 60px;
  height: 60px;
  top: 18%;
  right: -18px;
  animation-duration: 10s;
}

.hero-floating-three {
  width: 54px;
  height: 54px;
  bottom: 10%;
  right: 40%;
  animation-duration: 6s;
}

.hero-float {
  position: absolute;
  padding: 10px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(212, 51, 187, 0.35);
  color: #D433BB;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(212, 51, 187, 0.16);
  animation: floatChip 6.5s ease-in-out infinite;
}

body[data-theme="dark"] .hero-float {
  background: #17111f;
  border-color: rgba(212, 51, 187, 0.5);
  color: #f2c1ea;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.hero-float.f1 {
  top: 10%;
  left: -8%;
}

.hero-float.f2 {
  right: -6%;
  bottom: 12%;
  animation-delay: 0.6s;
}

.hero-float.f3 {
  top: 55%;
  right: 6%;
  animation-delay: 1.2s;
}

.hero-orb {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #D433BB;
  opacity: 0.45;
  animation: orbFloat 5s ease-in-out infinite;
}

.hero-orb.o1 {
  top: 6%;
  right: 28%;
}

.hero-orb.o2 {
  bottom: 8%;
  left: 18%;
  animation-delay: 0.8s;
}

.hero-orb.o3 {
  top: 40%;
  left: -4%;
  animation-delay: 1.6s;
}

.hero-illustration {
  width: min(380px, 82vw);
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(212, 51, 187, 0.25));
}

.hero-illustration svg {
  width: 100%;
  height: auto;
}

.hero-orbit {
  position: absolute;
  inset: -20px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  justify-content: center;
  padding-left: 12px;
}

.orbit-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
}

.orbit-card .icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 700;
}

.floating-tag {
  position: absolute;
  right: 5%;
  bottom: 0;
  background: var(--surface);
  border-radius: 14px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  font-weight: 700;
  color: var(--accent-strong);
}

.section {
  padding: 90px 0;
  background: transparent;
}

.section + svg {
  display: block;
  margin-top: -6px;
  transform: translateY(6px);
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: var(--accent-strong);
  color: #fff;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 999;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: #be30b0;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(212, 51, 187, 0.5);
}

.scroll-to-top:active {
  transform: translateY(-2px);
}

.section h1,
.section h2,
.section h3,
.section h4,
.hero-copy h1,
.hero-copy h2,
.proposal-header h2,
.difer-section h2,
.how-content h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #1c152a;
}

.section h1,
.hero-copy h1,
.proposal-header h2 {
  font-size: clamp(2.5rem, 3vw + 1rem, 3.8rem);
}

.section h2,
.how-content h2,
.difer-section h2 {
  font-size: clamp(2rem, 2.5vw + 1rem, 3.3rem);
}

.section h3,
.how-step h3,
.difer-section .feature-grid h3 {
  font-size: clamp(1.35rem, 2vw + 1rem, 1.7rem);
}

.hero-copy h1 span,
.proposal-header h2 span,
.section-title-highlight {
  color: var(--accent);
}

.section-title-highlight {
  display: inline-block;
  line-height: inherit;
  font-weight: inherit;
}

body[data-theme="dark"] .hero-copy h1 {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 12px 40px rgba(6, 3, 12, 0.6);
}

.section-lead,
.hero-copy p,
.proposal-copy p,
.how-content p,
.trust .section-lead,
.how-steps p,
.difer-section .section-lead,
.yield-header p {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #6f6671;
  line-height: 1.6;
}

.trust {
  padding: 60px 0 65px;
  text-align: center;
}

.trust h2 {
  font-size: clamp(1.75rem, 2.6vw, 2.2rem);
  letter-spacing: -0.015em;
  color: #1f1e3a;
}

.trust .section-lead {
  font-size: 1rem;
  margin-top: 12px;
  color: #7b879c;
  max-width: 860px;
}

.trust-carousel {
  overflow: hidden;
  margin: 26px auto 0;
  width: min(1110px, 92vw);
}

.trust-track {
  display: flex;
  align-items: center;
  gap: clamp(32px, 4vw, 48px);
  min-width: max-content;
  animation: trust-scroll 22s linear infinite;
  justify-content: center;
}

.trust-track img {
  height: 42px;
  width: 130px;
  filter: grayscale(1);
  opacity: 0.6;
  transition: opacity 0.2s ease, filter 0.2s ease;
  object-fit: contain;
}

.trust-track img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-4px);
}

.trust-track img.logo-muzy {
  filter: grayscale(1) brightness(0.55);
  opacity: 0.9;
}

.trust-track img.logo-muzy:hover {
  filter: grayscale(0) brightness(0.8);
  opacity: 1;
}

.trust .section-lead {
  margin-left: auto;
  margin-right: auto;
}

body[data-theme="dark"] .trust {
  background: var(--bg);
}

body[data-theme="dark"] .trust h2 {
  color: #f6edf7;
}

body[data-theme="dark"] .trust .section-lead {
  color: rgba(246, 237, 247, 0.7);
}

body[data-theme="dark"] .trust-track img {
  filter: grayscale(1) invert(1);
  opacity: 0.7;
}

body[data-theme="dark"] .trust-track img:hover {
  filter: grayscale(0) invert(1);
  opacity: 0.9;
}

@keyframes trust-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.duo-section {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

.duo-section::before {
  content: "";
  position: absolute;
  inset: -20% 0 0 0;
  background-image:
    linear-gradient(to right, rgba(212, 51, 187, 0.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(212, 51, 187, 0.12) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.35;
  animation: gridMove 18s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.duo-section::after {
  content: none;
}

.duo-section .difer-section {
  padding-top: 90px;
  padding-bottom: 60px;
}

.duo-section .how {
  padding-top: 60px;
  padding-bottom: 110px;
}

.duo-section .container {
  position: relative;
  z-index: 1;
}

.difer-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.difer-section::before {
  content: "";
  position: absolute;
  inset: -15% 0 0 0;
  opacity: 0.2;
  animation: floatGrid 24s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.difer-section::after {
  content: "";
  position: absolute;
  inset: 0;
  animation: floatGlow 18s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}


.difer-section .container {
  position: relative;
  z-index: 1;
}

.difer-section .pill {
  background: #F9E6F6;
  border: 1px solid rgba(212, 51, 187, 0.35);
  color: var(--accent-strong);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 10px 28px;
  margin: 0 auto 18px;
  box-shadow: 0 10px 20px rgba(212, 51, 187, 0.08);
}

.difer-section h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  color: #1f1e3a;
}

.difer-section .section-lead {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.difer-section .feature-grid {
  margin-top: 24px;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: center;
}

.difer-section .feature-grid article {
  background: #fff;
  border: 1px solid rgba(212, 51, 187, 0.2);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(212, 51, 187, 0.08);
  padding: 28px;
  min-height: 220px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
  width: 100%;
}

.difer-section .feature-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 51, 187, 0.45);
  box-shadow: 0 26px 50px rgba(212, 51, 187, 0.14);
}

.difer-section .feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(212, 51, 187, 0.55);
  background: #fff;
  color: var(--accent-strong);
  font-size: 1.1rem;
  display: grid;
  place-items: center;
}

.difer-section .feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.difer-section .feature-tag {
  display: none;
}

.difer-section .feature-grid h3 {
  font-size: 1.1rem;
  color: #1f1e3a;
}

.difer-section .feature-grid p {
  color: var(--text-muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.feature-grid article {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(212, 51, 187, 0.08);
  display: grid;
  gap: 10px;
  color: #fff;
}

.feature-grid article h3,
.feature-grid article p {
  color: inherit;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 1.1rem;
}

.feature-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-strong);
}

.section-header {
  display: grid;
  gap: 10px;
  margin-bottom: 40px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(212, 51, 187, 0.08);
  display: grid;
  gap: 16px;
}

.product-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--text-muted);
}

.product-card li::before {
  content: "•";
  color: var(--accent-strong);
  margin-right: 8px;
}

.solutions-section {
  background: #1a1836;
  text-align: center;
  padding: 110px 0 120px;
  position: relative;
  overflow: visible;
  color: #f5f3ff;
}

.solutions-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 140px 140px;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.solutions-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(140px);
  top: -160px;
  right: -120px;
  pointer-events: none;
  z-index: 0;
}

.solutions-section .container {
  position: relative;
  z-index: 1;
}

.solutions-wave-wrapper {
  position: sticky;
  top: 0;
  height: 240px;
  width: 100%;
  pointer-events: none;
  margin-bottom: -120px;
  z-index: -1;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.solutions-wave-wrapper svg {
  width: 100%;
  height: 260px;
  display: block;
}

.solutions-wave-wrapper.active {
  opacity: 1;
  transform: translateY(0);
}

.solutions-section .section-header {
  margin-bottom: 40px;
}

.solutions-section .section-header h2 {
  color: #f7f4ff;
  font-size: clamp(2rem, 3.1vw, 2.8rem);
  letter-spacing: -0.015em;
}

.solutions-section .section-lead {
  max-width: 720px;
  margin: 10px auto 0;
  color: #b8b2d3;
}

.solutions-section .card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.solutions-section .product-card {
  background: #221f45;
  border: 1px solid rgba(212, 51, 187, 0.35);
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  padding: 26px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 14px;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.solutions-section .product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 51, 187, 0.7);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.4);
}

.solutions-section .product-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  color: #d433bb;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
  position: relative;
}

.solutions-section .product-icon svg {
  width: 22px;
  height: 22px;
}

.solutions-section .product-card h3 {
  color: #f7f4ff;
  font-size: 1.1rem;
}

.solutions-section .product-card p {
  color: #b8b2d3;
}

.solutions-section .product-card ul {
  margin: 0;
  padding: 0;
  color: #c7c1df;
}

.solutions-section .product-card li {
  display: grid;
  grid-template-columns: 10px 1fr;
  align-items: center;
  column-gap: 10px;
  color: #c7c1df;
}

.solutions-section .product-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D433BB;
  justify-self: center;
}

.solutions-section .product-card--light {
  background: #fff;
  border: 1px solid #f3d2eb;
  box-shadow: 0 25px 45px rgba(14, 6, 33, 0.15);
  color: #1a1836;
}

.solutions-section .product-card--light h3 {
  color: #1a1836;
}

.solutions-section .product-card--light p,
.solutions-section .product-card--light li,
.solutions-section .product-card--light ul {
  color: #4d4763;
}

.solutions-section .product-card--light .product-icon {
  border-color: rgba(212, 51, 187, 0.7);
  color: #d433bb;
  background: rgba(212, 51, 187, 0.12);
}

.solutions-section .product-card--light .product-card-top .product-icon {
  border-color: rgba(212, 51, 187, 0.7);
}

.solutions-section .product-card--light li::before {
  background: #d433bb;
}

.solutions-section .btn-outline {
  width: 100%;
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
  font-weight: 600;
}

.solutions-section .btn-outline:hover {
  background: #be30b0;
}

.scale-copy {
  max-width: 560px;
}

.scale-section {
  padding: 80px 0 120px;
  background: #fff;
}

.scale-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 4vw, 42px);
  align-items: center;
}

.scale-copy h2 {
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  line-height: 1.15;
  margin: 0.35rem 0 0.75rem;
}

.scale-copy-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.65rem;
  color: #8d7faa;
}

.scale-copy-lead {
  margin-top: 0.5rem;
  max-width: 520px;
  color: #4d4d5e;
  font-size: 1.05rem;
}

.scale-pill-group {
  margin-top: 2rem;
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
  box-shadow: 0 20px 40px rgba(10, 5, 20, 0.08);
}

.scale-pill {
  border: none;
  background: transparent;
  padding: 10px 34px;
  border-radius: 999px;
  font-weight: 600;
  color: #4d4d5e;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.scale-pill.active {
  background: linear-gradient(135deg, #d433bb, #f473d1);
  color: #fff;
  box-shadow: 0 20px 40px rgba(212, 51, 187, 0.35);
  transform: translateY(-2px);
}

.scale-visual {
  position: relative;
  min-height: 360px;
  border-radius: 50px;
  overflow: hidden;
  background: #f6f0fb;
  box-shadow: 0 40px 80px rgba(23, 20, 51, 0.25);
}

.scale-visual::after {
  content: "";
  position: absolute;
  inset: 40px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.8);
  filter: blur(0.5px);
  pointer-events: none;
  z-index: 1;
}

.scale-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

.scale-visual-card {
  position: absolute;
  top: 38%;
  right: 10%;
  width: min(380px, 80%);
  background: #fff;
  border-radius: 30px;
  padding: 34px 36px;
  box-shadow: 0 30px 60px rgba(16, 8, 32, 0.35);
  z-index: 2;
}

.scale-visual-card h3 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #1f1338;
}

.scale-visual-card p {
  color: #5a5a6b;
  margin-bottom: 22px;
  font-size: 1rem;
}

.scale-visual-cta {
  background: #1eb152;
  border-color: #1eb152;
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 20px rgba(30, 177, 82, 0.35);
}

.yield {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.yield::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(212, 51, 187, 0.12);
  top: -180px;
  right: -140px;
  filter: blur(18px);
  pointer-events: none;
}

.yield::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(212, 51, 187, 0.1);
  bottom: -160px;
  left: -120px;
  filter: blur(16px);
  pointer-events: none;
}

.yield .container {
  position: relative;
  z-index: 1;
}

.yield-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 36px;
}

.yield-header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 2.6vw + 1rem, 3rem);
  color: #1f1e3a;
}

.yield-header p {
  max-width: 360px;
  color: var(--text-muted);
  margin-top: 10px;
}

.yield-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: #f9e6f6;
  border: 1px solid rgba(212, 51, 187, 0.35);
  color: var(--accent-strong);
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

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

.yield-card {
  background: #f7f2fb;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(212, 51, 187, 0.18);
  min-height: 210px;
  display: grid;
  gap: 12px;
  align-content: start;
  box-shadow: 0 18px 40px rgba(212, 51, 187, 0.08);
}

.yield-card h3 {
  font-size: 1.05rem;
  color: #1f1e3a;
}

.yield-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.yield-card.primary {
  background: linear-gradient(135deg, #efe8ff, #fdf7ff);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: end;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.yield-illustration {
  position: relative;
  width: 150px;
  height: 160px;
  justify-self: end;
}

.yield-illustration .orb {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #d7c9ff 45%, #b49df2 100%);
  box-shadow: inset 0 10px 18px rgba(255, 255, 255, 0.6), 0 14px 26px rgba(164, 128, 222, 0.35);
}

.yield-illustration .stem {
  position: absolute;
  bottom: 82px;
  left: 86px;
  width: 6px;
  height: 64px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f6c9eb 0%, #e162c4 100%);
  transform: rotate(-8deg);
}

.yield-illustration .bloom {
  position: absolute;
  bottom: 134px;
  left: 66px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #ffe6f7 0%, #f27acb 55%, #c948a9 100%);
  box-shadow: 0 10px 18px rgba(212, 51, 187, 0.3);
}

body[data-theme="dark"] .yield {
  background: #0f0c12;
}

body[data-theme="dark"] .yield-card {
  background: #17111f;
  border-color: rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .yield-card.primary {
  background: linear-gradient(135deg, #2b1a31, #1b1422);
}

body[data-theme="dark"] .yield-header h2,
body[data-theme="dark"] .yield-card h3 {
  color: #f6edf7;
}

body[data-theme="dark"] .yield-pill {
  background: #2b1531;
  border-color: rgba(212, 51, 187, 0.4);
  color: #f0bfe6;
}

.global-white {
  background: #fff;
  padding: 100px 0 110px;
}

.global-white-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 60px;
}

.global-white-copy h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  color: #1f1e3a;
  margin-bottom: 14px;
}

.global-white-copy p {
  color: var(--text-muted);
  max-width: 560px;
}

.pill-pink {
  background: #F9E6F6;
  border: 1px solid rgba(212, 51, 187, 0.35);
  color: var(--accent-strong);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  gap: 8px;
}

.pill-icon {
  font-size: 0.9rem;
}

.global-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 24px 0 32px;
  color: var(--text-muted);
}

.global-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.global-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-strong);
  margin-top: 7px;
  flex: 0 0 8px;
}

.global-white-visual {
  position: relative;
  display: grid;
  place-items: center;
  background: #fff;
  isolation: isolate;
}

.global-white-visual::before {
  content: "";
  position: absolute;
  width: min(360px, 70vw);
  height: min(360px, 70vw);
  border-radius: 50%;
  border: 1px solid rgba(212, 51, 187, 0.18);
  box-shadow: 0 30px 70px rgba(212, 51, 187, 0.08);
}

.global-white-visual img {
  width: min(320px, 65vw);
  height: auto;
  border-radius: 50%;
  background: transparent;
  -webkit-mask-image: radial-gradient(circle, #fff 60%, transparent 62%);
  mask-image: radial-gradient(circle, #fff 60%, transparent 62%);
  filter: drop-shadow(0 20px 40px rgba(31, 30, 58, 0.12));
  animation: floatGlobal 7s ease-in-out infinite;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 60px;
}

.global {
  background: linear-gradient(120deg, var(--bg) 0%, var(--bg-soft) 60%, var(--bg) 100%);
}

.how {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  align-items: center;
}

.how-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.how-content h2 {
  font-size: clamp(2.3rem, 3vw, 3.6rem);
  color: #1b1530;
}

.how-content p {
  max-width: 520px;
  color: #5f5b72;
}

.how-steps.modern {
  display: grid;
  gap: 22px;
  margin-top: 12px;
}

.how-step.modern {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(212, 51, 187, 0.25);
  background: #fff;
  box-shadow: 0 18px 45px rgba(31, 30, 58, 0.09);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.how-step.modern:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 51, 187, 0.45);
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #f4e7ff;
  display: grid;
  place-items: center;
  color: #d433bb;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(212, 51, 187, 0.2);
}

.how-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 8px;
  align-items: stretch;
  justify-content: stretch;
  width: 100%;
}

.how-actions .btn {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.how-visual {
  position: relative;
  min-height: 360px;
}

.security-section {
  padding: 80px 0;
}

.security-section .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.security-section .section-heading {
  max-width: 720px;
}

.security-section .section-heading h2 {
  font-size: clamp(2.6rem, 4vw + 0.5rem, 3.8rem);
  margin-bottom: 12px;
}

.security-section .section-heading p {
  font-size: 1rem;
  color: #5b5966;
}

.security-main-card {
    border-radius: 32px;
    padding: 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    position: relative;
    color: #fff;
    overflow: hidden;
    background-image: linear-gradient(135deg, rgb(7 3 18 / 28%), rgba(26, 24, 54, 0.85)), url(img/bg-section.png);
    background-blend-mode: multiply, normal;
    background-repeat: no-repeat;
    background-position: center;
}

.security-main-card::before {
  content: "";
  position: absolute;
  width: 72px;
  height: 4px;
  top: 26px;
  left: 30px;
  border-radius: 999px;
  background: #d433bb;
}

.security-main-text {
  flex: 1;
  min-width: 280px;
}

.security-main-text h3 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 2.5vw, 2.4rem);
  color: #fff;
}

.security-main-text p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
}

.security-main-illustration {
  display: flex;
  gap: 18px;
  align-items: center;
}

.security-key-bubble {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  background: #f4e6ff;
  border: 1.5px solid #d433bb;
  display: grid;
  place-items: center;
  color: #5f2c71;
  font-size: 2.1rem;
}

.security-key-bubble i {
  color: #a60fb1;
}


.security-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  width: 100%;
}

.security-feature {
  background: #0f041a;
  border-radius: 30px;
  padding: 24px 28px;
  display: flex;
  gap: 18px;
  align-items: center;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  border: 1px solid #2a1340;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.security-feature::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 58%;
  left: 0;
  top: 21%;
  border-radius: 999px;
  background: #d433bb;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.security-feature:hover {
  transform: translateY(-6px);
  border-color: #7430a4;
}

.security-feature:hover::after {
  opacity: 1;
}

.security-feature .feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: transparent;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  color: #d433bb;
}

.feature-text h4 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.feature-text p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.how-visual.modern {
  margin-left: 155px;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
}

.how-visual-card {
  position: relative;
  width: min(520px, 85vw);
  height: auto;
  display: grid;
  place-items: center;
}

.visual-main {
  position: relative;
  width: 100%;
  animation: floatMain 6s ease-in-out infinite;
}

.visual-main img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 26px;
}

.m-top-10 {
  margin-top: 0px !important;
}

.float-metric {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 51, 187, 0.25);
  box-shadow: 0 12px 35px rgba(212, 51, 187, 0.2);
  animation: floatMetric 4s ease-in-out infinite;
  max-width: 230px;
}

.metric-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #F9E6F6 0%, #F2C1EA 100%);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  box-shadow: inset 0 0 0 1px rgba(212, 51, 187, 0.2);
}

.metric-icon i {
  font-size: 1.45rem;
  color: #821a9b;
}

.metric-icon svg {
  width: 24px;
  height: 24px;
  stroke: #821a9b;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.metric-label {
  font-size: 0.7rem;
  color: #6f6671;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metric-value {
  font-size: 1.15rem;
  color: #1d1a1f;
  font-weight: 800;
  font-family: "Space Grotesk", sans-serif;
}

.metric-1 {
  top: 8%;
  left: -8%;
  animation-delay: 0s;
}

.metric-2 {
  top: 35%;
  right: -8%;
  animation-delay: 0.7s;
}

.metric-3 {
  bottom: 45%;
  left: 4%;
  animation-delay: 1.3s;
}

.float-badge {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f6e3ff, #f9c8f5);
  border: 1px solid rgba(212, 51, 187, 0.35);
  box-shadow: 0 16px 35px rgba(23, 20, 51, 0.2);
  display: grid;
  place-items: center;
  animation: floatBadge 5.5s ease-in-out infinite;
}

.float-badge i {
  font-size: 1.35rem;
  color: #821a9b;
}

.badge-call {
  top: -6%;
  right: 18%;
}

.badge-chat {
  top: 18%;
  right: -6%;
  animation-delay: 0.8s;
}

.badge-star {
  bottom: 6%;
  right: 12%;
  animation-delay: 1.2s;
}

.pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(212, 51, 187, 0.3);
  animation: pulseExpand 3s ease-out infinite;
}

.ring-1 {
  width: 140px;
  height: 140px;
  top: -5%;
  right: 8%;
  animation-delay: 0s;
}

.ring-2 {
  width: 100px;
  height: 100px;
  bottom: 5%;
  right: 15%;
  animation-delay: 1.5s;
}


.orb-1 {
  width: 180px;
  height: 180px;
  top: -10%;
  left: -8%;
  animation-delay: 0s;
}

.orb-2 {
  width: 150px;
  height: 150px;
  bottom: -8%;
  right: -5%;
  animation-delay: 2.5s;
}

@keyframes floatMain {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.01);
  }
}

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

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

@keyframes pulseExpand {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes orbGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

body[data-theme="dark"] .float-metric {
  background: rgba(23, 17, 31, 0.95);
  border-color: rgba(212, 51, 187, 0.4);
}

body[data-theme="dark"] .metric-icon {
  background: linear-gradient(135deg, #2b1531 0%, #3b162a 100%);
}

body[data-theme="dark"] .metric-label {
  color: #b9a9c4;
}

body[data-theme="dark"] .metric-value {
  color: #f6edf7;
}

.visual-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #fdf6ff 75%);
  border-radius: 28px;
  padding: 28px;
  max-width: 360px;
  width: 100%;
  box-shadow: 0 40px 90px rgba(23, 20, 51, 0.12);
  border: 1px solid rgba(212, 51, 187, 0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.visual-card::before,
.visual-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.55;
  animation: flowGlow 10s infinite alternate;
  pointer-events: none;
}

.visual-card::before {
  width: 260px;
  height: 260px;
  top: -90px;
  right: -70px;
  background: rgba(212, 51, 187, 0.35);
}

.visual-card::after {
  width: 180px;
  height: 180px;
  bottom: -70px;
  left: -40px;
  background: rgba(255, 255, 255, 0.8);
}

.visual-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #1c1530;
}

.visual-card header span {
  font-size: 0.9rem;
  color: #6f6671;
}

.visual-metrics {
  display: grid;
  gap: 14px;
}

.flow-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.flow-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(212, 51, 187, 0.25);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.flow-detail span {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: #6f6671;
  text-transform: uppercase;
}

.flow-detail strong {
  font-size: 1rem;
  color: #1c1530;
}

.flow-detail-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(212, 51, 187, 0.12);
  overflow: hidden;
}

.flow-detail-track span {
  display: block;
  height: 100%;
  width: var(--flow-progress, 60%);
  border-radius: inherit;
  background: linear-gradient(90deg, #f197ff, #ff66b6);
  animation: flowPulse 3s ease-in-out infinite;
}

.flow-detail-track.low span {
  background: linear-gradient(90deg, rgba(212, 51, 187, 0.25), rgba(212, 51, 187, 0.7));
}

.visual-metrics p {
  font-size: 0.85rem;
  color: #6f6671;
}

.visual-metrics strong {
  font-size: 1.4rem;
  color: #1d1a1f;
}

.progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(212, 51, 187, 0.18);
  position: relative;
  overflow: hidden;
}

.progress::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 60%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f197ff, #ff66b6);
  animation: slideBar 3s linear infinite;
}

.progress.high::after {
  width: 75%;
}

.visual-stream {
  display: flex;
  gap: 12px;
}

.visual-stream span {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(212, 51, 187, 0.2), rgba(212, 51, 187, 0.8));
  animation: pulse 2.5s ease-in-out infinite;
}

.visual-stream span:nth-child(2) {
  animation-delay: 0.4s;
}

.visual-stream span:nth-child(3) {
  animation-delay: 0.8s;
}

.flow-meter {
  position: relative;
  border-radius: 20px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(212, 51, 187, 0.15);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.8);
  display: grid;
  gap: 6px;
}

.flow-meter-wave {
  position: absolute;
  inset: 8px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(212, 51, 187, 0.12), rgba(255, 255, 255, 0));
  animation: flowWave 5s linear infinite;
  opacity: 0.6;
  pointer-events: none;
}

.flow-meter span {
  font-size: 0.75rem;
  color: #6f6671;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.flow-meter strong {
  font-size: 1.3rem;
}

.flow-meter p {
  font-size: 0.8rem;
  color: #6f6671;
  margin: 0;
  line-height: 1.4;
}

.btn-ghost.outline {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
}

.btn-ghost.outline:hover {
  background: #be30b0;
}

.btn-primary {
  margin-top: 10px;
}

body[data-theme="dark"] .how {
  background: #07050c;
}

body[data-theme="dark"] .how-content h2,
body[data-theme="dark"] .how-content p {
  color: #f6edf7;
}

body[data-theme="dark"] .how-step.modern {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

body[data-theme="dark"] .step-number {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(212, 51, 187, 0.35);
}

body[data-theme="dark"] .visual-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

body[data-theme="dark"] .visual-card::before {
  background: rgba(212, 51, 187, 0.5);
}

body[data-theme="dark"] .visual-card::after {
  background: rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .flow-detail {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

body[data-theme="dark"] .flow-detail strong,
body[data-theme="dark"] .flow-detail span {
  color: #f6edf7;
}

body[data-theme="dark"] .flow-meter {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

body[data-theme="dark"] .visual-stream span {
  background: linear-gradient(90deg, rgba(212, 51, 187, 0.3), rgba(212, 51, 187, 0.85));
}

body[data-theme="dark"] .difer-section {
  background: #060412;
}

body[data-theme="dark"] .difer-section::before {
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  opacity: 0.25;
}

body[data-theme="dark"] .difer-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(212, 51, 187, 0.3), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(212, 51, 187, 0.2), transparent 45%);
  pointer-events: none;
  animation: floatGlow 22s ease-in-out infinite;
}

body[data-theme="dark"] .difer-section h2 {
  color: #f8f6ff;
}

body[data-theme="dark"] .difer-section .section-lead {
  color: rgba(255, 255, 255, 0.65);
}

body[data-theme="dark"] .difer-section .pill {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.25);
  color: #f0bfe6;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
}

body[data-theme="dark"] .difer-section .feature-grid article {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.65);
  color: #f8f6ff;
}

body[data-theme="dark"] .difer-section .feature-grid article:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

body[data-theme="dark"] .difer-section .feature-icon {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  color: #f2c1ea;
}

body[data-theme="dark"] .difer-section .feature-grid p {
  color: rgba(255, 255, 255, 0.65);
}

body[data-theme="dark"] .difer-section .feature-grid h3 {
  color: #fff;
}

@keyframes slideBar {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(170%);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.4;
    transform: scaleX(0.9);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0.4;
    transform: scaleX(0.9);
  }
}

@keyframes floatOrb {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes orbitGlow {
  0% {
    transform: rotate(0);
    opacity: 0.7;
  }
  50% {
    transform: rotate(3deg);
    opacity: 0.4;
  }
  100% {
    transform: rotate(0);
    opacity: 0.7;
  }
}

@keyframes flowGlow {
  0% {
    transform: scale(0.95);
    opacity: 0.45;
  }
  100% {
    transform: scale(1.02);
    opacity: 0.7;
  }
}

@keyframes flowPulse {
  0% {
    transform: scaleX(0.85);
    opacity: 0.6;
  }
  50% {
    transform: scaleX(1);
    opacity: 0.9;
  }
  100% {
    transform: scaleX(0.85);
    opacity: 0.6;
  }
}

@keyframes flowWave {
  0% {
    transform: translateX(-20%);
  }
  100% {
    transform: translateX(40%);
  }
}

.how-step h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: #1f1e3a;
}

.how-step p {
  color: #6a637c;
  font-size: 0.95rem;
}

body[data-theme="dark"] .how-step h3 {
  color: #fff;
}

body[data-theme="dark"] .how-step p {
  color: rgba(255, 255, 255, 0.75);
}

.globe {
  display: grid;
  place-items: center;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.checklist {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 24px 0 32px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
}

.checklist li::before {
  content: "✓";
  color: var(--accent-strong);
  font-weight: 700;
}

.support {
  background: var(--bg-soft);
}

.support-subtitle {
  margin-top: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.support-visual {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  min-height: 320px;
}

.support-illustration {
  width: min(360px, 80vw);
}

.support-pill {
  position: absolute;
  background: var(--bg-strong);
  color: var(--accent-strong);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--border);
}

.support-pill.one {
  top: 22px;
  left: 22px;
}

.support-pill.two {
  top: 64px;
  left: 34px;
}

.support-pill.three {
  bottom: 72px;
  left: 22px;
}

.support-rating {
  position: absolute;
  right: 22px;
  bottom: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-strong);
  box-shadow: var(--shadow);
}

.proposal {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: #1d1a1f;
}

.proposal-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.proposal-copy h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 3vw + 1rem, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: #1d1a1f;
}

.proposal-copy h2 span {
  color: var(--accent-strong);
}

.proposal-copy p {
  color: #6f6671;
  max-width: 520px;
}

.proposal-benefits {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 26px 0 34px;
}

.proposal-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #6f6671;
  font-weight: 500;
}

.proposal-benefits li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-strong);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  flex: 0 0 22px;
  margin-top: 2px;
}

.proposal-cta {
  background: var(--accent-strong);
  color: #fff;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: none;
}

.proposal-cta:hover {
  background: var(--accent);
}

.proposal-whatsapp {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
  color: #6f6671;
}

.proposal-whatsapp label {
  font-weight: 600;
  color: rgba(29, 26, 31, 0.8);
}

.whatsapp-input-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.whatsapp-input {
  flex: 1;
  min-width: 260px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(212, 51, 187, 0.35);
  background: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  color: #1b1832;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-input:focus {
  border-color: #d433bb;
  box-shadow: 0 0 0 3px rgba(212, 51, 187, 0.15);
}

.whatsapp-submit {
  background: var(--accent-strong);
  color: #fff;
  border-color: var(--accent-strong);
  border-radius: 14px;
  padding: 12px 24px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(212, 51, 187, 0.25);
}

.whatsapp-submit:hover {
  background: #be30b0;
  border-color: #be30b0;
}

.whatsapp-submit:disabled {
  background: #e8ddeb;
  border-color: #e8ddeb;
  color: #7c6596;
  cursor: not-allowed;
  box-shadow: none;
}

.proposal-whatsapp small {
  color: #8a8191;
}

.proposal-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  animation: floatPanel 9s ease-in-out infinite;
}

.proposal-image-card {
  background: #fdf4fb;
  border-radius: 24px;
  padding: 18px;
  border: 1px solid rgba(212, 51, 187, 0.2);
  box-shadow: 0 24px 60px rgba(31, 30, 58, 0.15);
  animation: floatProposal 8s ease-in-out infinite alternate;
}

.proposal-image-card img {
  width: min(380px, 80vw);
  border-radius: 20px;
  animation: floatImage 6s ease-in-out infinite;
}

.voice-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #fde9f7;
  border: 1px solid rgba(212, 51, 187, 0.2);
  box-shadow: 0 10px 24px rgba(212, 51, 187, 0.15);
  animation: floatVoice 7s ease-in-out infinite;
}

.voice-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--accent-strong);
}

.voice-icon svg {
  width: 18px;
  height: 18px;
}

.voice-bars {
  width: 66px;
  height: 8px;
  border-radius: 999px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent-strong) 0 6px,
    rgba(212, 51, 187, 0.25) 6px 12px
  );
}

.badge-one {
  top: 40px;
  left: -10px;
}

.badge-two {
  top: 120px;
  left: -40px;
}

.badge-three {
  top: 200px;
  left: -10px;
}

.float-icon {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #ffeaf6;
  border: 1px solid rgba(212, 51, 187, 0.25);
  display: grid;
  place-items: center;
  color: var(--accent-strong);
  box-shadow: 0 10px 20px rgba(212, 51, 187, 0.18);
  font-weight: 700;
  animation: floatIcon 6s ease-in-out infinite;
}

.float-icon svg {
  width: 20px;
  height: 20px;
}

.icon-chat {
  top: 30px;
  right: -10px;
}

.icon-phone {
  bottom: 90px;
  right: 0;
}

.icon-at {
  bottom: 50px;
  right: 52px;
  font-size: 1rem;
}

.rating-badge {
  position: absolute;
  bottom: 20px;
  right: 80px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid rgba(212, 51, 187, 0.2);
  padding: 6px 14px;
  box-shadow: 0 10px 22px rgba(212, 51, 187, 0.18);
  color: var(--accent-strong);
  letter-spacing: 2px;
  font-size: 0.9rem;
}

@keyframes floatProposal {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-6px);
  }
}

@keyframes floatVoice {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(-2px);
  }
}

@keyframes floatImage {
  0% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.01) translateY(-8px);
  }
  100% {
    transform: scale(1) translateY(-4px);
  }
}

@keyframes floatPanel {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.005);
  }
  100% {
    transform: translateY(-6px) scale(1);
  }
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.02);
  }
}

.support-rating span {
  font-weight: 700;
}

.faq {
  padding-bottom: 110px;
  position: relative;
  background: #f3bbe8;
  overflow: hidden;
}

body[data-theme="dark"] .faq h2 {
  color: #fff;
}


.faq-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
}

.faq-intro .section-lead {
  margin-bottom: 24px;
}

.faq-intro .checklist {
  margin: 0 0 26px;
}

.faq-cta {
  background: #d433bb;
  color: #fff;
  border-radius: 14px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  min-width: 220px;
  text-align: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.faq-cta:hover {
  background: #be30b0;
}

.accordion {
  display: grid;
  gap: 16px;
}

.accordion-block {
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 51, 187, 0.35);
  background: linear-gradient(155deg, #fff5fc 0%, #ffe0f5 55%, #f7c7ea 100%);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 18px 36px rgba(212, 51, 187, 0.12);
}

.accordion-block:hover {
  border-color: rgba(212, 51, 187, 0.55);
  box-shadow: 0 22px 48px rgba(212, 51, 187, 0.18);
  transform: translateY(-2px);
}

.accordion-block.active {
  border-color: rgba(212, 51, 187, 0.7);
  box-shadow: 0 26px 52px rgba(212, 51, 187, 0.24);
  background: linear-gradient(145deg, #f9dced 0%, #f7c8ee 45%, #f1b6e7 100%);
}

.accordion-item {
  width: 100%;
  text-align: left;
  padding: 20px 22px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  gap: 16px;
  cursor: pointer;
  color: #1c1035;
}

.accordion-item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.accordion-block.active .accordion-item {
  color: var(--text);
}

.accordion-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 51, 187, 0.45);
  background: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  color: #d433bb;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.accordion-block.active .accordion-icon {
  background: #d433bb;
  color: #fff;
  border-color: #d433bb;
}

.accordion-panel {
  display: none;
  padding: 0 22px 22px;
  color: #4c3c5f;
  font-size: 0.95rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.accordion-panel.open {
  display: block;
}

.site-footer {
  padding: clamp(60px, 6vw, 110px) 0 clamp(40px, 4vw, 80px);
  color: #f6edf7;
}

body[data-theme="dark"] .site-footer {
  background: #1a1836;
}

.pink-footer {
  display: flex;
  justify-content: center;
}

.footer-pink-shell {
    width: min(2150px, 96vw);
    border-radius: 40px;
    background: #1a1836;
    padding: clamp(32px, 4vw, 56px);
    position: relative;
    overflow: hidden;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top-row {
  display: grid;
  grid-template-columns: minmax(260px, 2fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(24px, 3vw, 36px);
  align-items: start;
}

.footer-headline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-logo-white {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.headline-copy {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  max-width: 280px;
  line-height: 1.5;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: flex-start;
}

.column-title,
.column-title-alt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.75);
}

.column-title-alt {
  margin-top: 12px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-column ul li a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.social-pill i {
  font-size: 1rem;
  color: #fff;
}

.social-pill:hover {
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.footer-callout {
  justify-self: end;
}

.call-link {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  gap: 12px;
  transition: background 0.25s ease, border-color 0.25s ease,
    transform 0.25s ease;
}

.call-link i {
  font-size: 1.2rem;
  color: #fff;
}

.call-link:hover,
.call-link:focus-visible {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.footer-pill {
  margin-top: 32px;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .footer-top-row {
    grid-template-columns: 1fr;
  }

  .footer-headline {
    grid-column: span 1;
  }

  .footer-callout {
    justify-self: stretch;
  }
}

.svg-stop-1 {
  stop-color: var(--accent-soft);
}

.svg-stop-2 {
  stop-color: var(--accent);
}

.svg-stop-3 {
  stop-color: var(--accent);
}

.svg-stop-4 {
  stop-color: var(--accent-light);
}

.svg-surface {
  fill: var(--surface);
  stroke: var(--border);
  stroke-width: 2;
}

.svg-soft {
  fill: var(--accent-soft);
}

.svg-accent {
  fill: var(--accent);
}

.svg-stroke {
  stroke: var(--accent-strong);
  stroke-width: 4;
  stroke-linecap: round;
}

.svg-text {
  fill: var(--accent-strong);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.svg-pointer {
  fill: var(--surface);
  stroke: var(--accent-strong);
  stroke-width: 2;
}

.svg-bar {
  fill: var(--accent-soft);
}

.svg-dot {
  fill: var(--accent);
  opacity: 0.6;
}

.svg-chat-tail {
  fill: var(--surface);
  stroke: var(--border);
  stroke-width: 2;
}

.globe-stop-1 {
  stop-color: var(--accent);
  stop-opacity: 0.3;
}

.globe-stop-2 {
  stop-color: transparent;
}

.globe-core {
  fill: var(--surface);
}

.globe-ring {
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
}

.globe-line {
  stroke: var(--accent-soft);
  stroke-width: 2;
  fill: none;
}

.globe-accent {
  stroke: var(--accent-strong);
  stroke-width: 3;
  fill: none;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .site-header {
    padding: 8px 0;
  }

  .header-shell {
    padding: 0 1rem;
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 18px;
    border-radius: 10px;
  }

  .logo {
    justify-content: flex-start;
  }

  .nav-actions {
    width: auto;
    justify-content: flex-end;
  }

  .nav-actions .btn {
    min-width: 0;
    width: auto;
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: 10px;
  }

  .hero-orbit {
    position: static;
    align-items: center;
    padding: 0;
    margin-bottom: 18px;
  }

  .hero-visual {
    display: none;
  }

  .floating-tag {
    position: static;
    margin-top: 20px;
  }

  .how-visual {
    order: 2;
  }

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

  .yield-header {
    flex-direction: column;
  }

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

  .yield-card.primary {
    grid-template-columns: 1fr;
  }

  .yield-illustration {
    justify-self: start;
    margin-top: 10px;
  }

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

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-app h4 {
    justify-self: center;
    text-align: center;
  }

  .footer-links {
    justify-items: center;
  }

  .proposal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .proposal-visual {
    order: 2;
  }

  .voice-badge {
    left: 10px;
  }

  .icon-chat {
    right: 10px;
  }

  .icon-phone {
    right: 10px;
  }

  .icon-at {
    right: 60px;
  }

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

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

@media (max-width: 720px) {
  .nav-actions {
    width: 65%;
    justify-content: flex-end;
  }

  .hero-ref .hero-visual {
    display: none;
  }

  .site-header {
    padding: 6px 0;
  }

  .nav {
    padding: 10px 20px;
  }

  .section {
    padding: 45px 0;
  }

  .hero-ref {
    padding: 30px 0 40px;
  }

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

  .hero-visual {
    order: -1;
    width: 100%;
  }

  .hero-art img {
    width: 100%;
    height: auto;
  }

  .hero-pill {
    margin-inline: auto;
  }
  .hero-pill {
    display: flex;
    margin-left: 70px;
    margin-right: 70px;
  }

  .solutions-section .card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .solutions-section {
    padding: 55px 0 65px;
  }

  .proposal-layout {
    gap: 30px;
  }

  .proposal {
    padding: 50px 0;
  }

  .trust {
    padding: 45px 0;
  }

  .trust-track {
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
    border-radius: 14px;
  }

  .hero {
    padding: 70px 0 90px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .logo-img {
    height: 22px;
  }

  .hero-art-side,
  .hero-art {
    display: block;
    width: 100%;
  }

  .hero-visual {
    grid-column: 1 / -1;
  }

  .hero-art {
    width: 100%;
    height: auto;
  }

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

  .hero-stats {
    display: none;
  }

  .how-visual.modern {
    display: none;
  }

  .support-visual {
    padding: 24px;
    gap: 12px;
  }

  .support-pill,
  .support-rating {
    position: static;
    margin-top: 10px;
  }

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

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

  .footer-form {
    width: 100%;
  }

  .footer-watermark {
    font-size: clamp(52px, 22vw, 140px);
  }

  .solutions-section .card-grid {
    grid-template-columns: 1fr;
  }

  .proposal-cta {
    width: 100%;
    justify-content: center;
  }

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

  .voice-badge,
  .float-icon {
    display: none;
  }

  .rating-badge {
    position: static;
    margin-top: 16px;
  }

  .security-main-card {
    padding: 32px 22px 36px;
    min-height: auto;
    background-position: center 30%;
  }

  .security-main-card::before {
    left: 18px;
    top: 18px;
  }

  .security-main-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(15, 4, 20, 0.9) 0%, rgba(11, 6, 26, 0.95) 100%);
    z-index: 0;
    pointer-events: none;
  }

  .security-main-text,
  .security-main-illustration {
    position: relative;
    z-index: 1;
  }

  .security-main-text {
    text-align: center;
  }

  .security-main-text h3 {
    font-size: clamp(1.8rem, 3vw, 2.1rem);
  }

  .security-main-text p {
    font-size: 0.98rem;
  }

  .security-main-illustration {
    justify-content: center;
  }

  .security-key-bubble {
    width: 70px;
    height: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .how-track::after,
  .how-panel,
  .how-panel::after,
  .how-panel-bars span,
  .how-float-card,
  .how-step::before,
  .how-step,
  .how::before,
  .how::after,
  .duo-section::before,
  .duo-section::after,
  .global-white-visual img,
  .hero-art img,
  .hero-float,
  .hero-orb,
  .proposal::before,
  .proposal::after,
  .proposal-image-card,
  .difer-section::before,
  .difer-section::after {
    animation: none;
  }
}

@media (max-width: 1024px) {
  .container {
    width: min(1140px, 94vw);
  }
  
  .section {
    padding: 70px 0;
  }
  
  .hero-ref {
    padding: 50px 0 60px;
  }
  
  .how {
    padding: 80px 0;
  }
  
  .how-visual.modern {
    margin-left: 0;
    min-height: 400px;
  }
  
  .float-metric {
    padding: 10px 14px;
    gap: 8px;
  }
  
  .metric-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  
  .metric-label {
    font-size: 0.65rem;
  }
  
  .metric-value {
    font-size: 1rem;
  }
  
  .difer-section .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .trust-track {
    gap: clamp(28px, 3vw, 38px);
  }
  
  .proposal {
    padding: 80px 0;
  }
}

@media (max-width: 900px) {
  .section {
    padding: clamp(60px, 9vw, 80px) 0;
  }

  .section h2,
  .section h3,
  .section h4,
  .hero-copy h1,
  .proposal-copy h2,
  .faq-intro h2 {
    text-align: center;
  }

  .section-lead,
  .trust .section-lead,
  .solutions-section .section-lead,
  .difer-section .section-lead,
  .proposal-copy p,
  .faq-intro .section-lead {
    margin-inline: auto;
    text-align: center;
    max-width: 640px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-pill {
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }

  .hero-stats strong,
  .hero-stats span {
    text-align: center;
  }

  .trust-carousel {
    padding-inline: 1rem;
  }

  .trust-track {
    justify-content: center;
    gap: 20px;
  }

  .solutions-section .section-header,
  .difer-section .section-header,
  .how-content {
    width: 100%;
  }

  .solutions-section .card-grid,
  .difer-section .feature-grid,
  .security-feature-grid,
  .proposal-benefits,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .security-main-card {
    flex-direction: column;
    align-items: stretch;
    padding: 32px;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    border-radius: 24px;
    background-position: center center;
  }

  .security-main-text,
  .security-main-illustration {
    width: 100%;
  }

  .proposal-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .proposal-visual {
    order: 2;
  }

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

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
    width: 100%;
  }

  .proposal-whatsapp .whatsapp-input-row {
    flex-direction: column;
  }

  .faq-grid {
    gap: 28px;
  }

  .site-footer .footer-top-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-pill {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(1140px, 90vw);
  }
  
  .nav {
    padding: 14px 20px;
    gap: 16px;
    border-radius: 10px;
  }
  
  .nav-actions .btn {
    min-width: 140px;
    font-size: 0.85rem;
    padding: 8px 14px;
    border-radius: 5px;
  }
  
  .logo-img {
    height: 28px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero-ref {
    padding: 40px 0 50px;
  }
  
  .hero-grid {
    gap: 40px;
  }
  
  .hero-ref .hero-visual {
    margin-bottom: 0;
    order: -1;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .hero-stats strong {
    font-size: 1.15rem;
  }
  
  .hero-stats span {
    font-size: 0.8rem;
  }
  
  .hero-float {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  
  .hero-float.f1,
  .hero-float.f2,
  .hero-float.f3 {
    display: none;
  }
  
  .trust {
    padding: 50px 0;
  }
  
  .trust-track {
    gap: clamp(24px, 4vw, 32px);
  }

  .trust-track img {
    height: 30px;
  }
  
  .solutions-section {
    padding: 70px 0 80px;
  }
  
  .solutions-section .card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .difer-section {
    padding: 70px 0;
  }
  
  .difer-section .feature-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .difer-section .feature-grid article {
    padding: 24px;
    min-height: auto;
  }
  
  .how {
    padding: 60px 0;
  }
  
  .how-grid {
    gap: 40px;
  }
  
  .how-visual.modern {
    margin-left: 0;
    min-height: 320px;
  }
  
  .how-actions .btn {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 100%;
  }
  
  .float-metric {
    position: static;
    margin-bottom: 12px;
    animation: none;
    display: none;
  }
  
  .pulse-ring,
  .glow-orb {
    display: none;
  }
  
  .proposal {
    padding: 60px 0;
  }
  
  .proposal-layout {
    gap: 36px;
  }
  
  .proposal-visual {
    min-height: 300px;
  }
  
  .badge-one,
  .badge-two,
  .badge-three {
    display: none;
  }
  
  .icon-chat,
  .icon-phone,
  .icon-at {
    display: none;
  }
  
  .rating-badge {
    position: static;
    margin-top: 16px;
    display: inline-block;
  }
  
  .faq {
    padding-bottom: 80px;
  }
  
  .faq-grid {
    gap: 32px;
  }
  
  .footer-pink-shell {
    border-radius: 28px;
    padding: clamp(28px, 3.5vw, 48px);
  }
  
  .footer-top-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .footer-callout {
    justify-self: start;
  }
  
  .footer-social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  
  .nav {
    padding: 14px 20px;
    gap: 12px;
  }
  
  .nav-actions {
    gap: 8px;
  }
  
  .nav-actions .btn {
    min-width: 120px;
    height: 38px;
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  
  .logo-img {
    height: 26px;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .hero-ref {
    padding: 32px 0 40px;
  }
  
  .hero-grid {
    gap: 32px;
  }
  
  .hero-pill {
    padding: 6px 12px;
    font-size: 0.75rem;
    gap: 8px;
  }
  
  .pill-avatars {
    display: none;
  }
  
  .hero-actions {
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .btn {
    min-width: 100%;
    height: 48px;
    font-size: 0.9rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }
  
  .hero-stats div {
    padding: 12px;
    background: rgba(212, 51, 187, 0.05);
    border-radius: 12px;
  }
  
  .hero-art {
    width: min(620px, 95vw);
  }
  
  .hero-orb {
    display: none;
  }
  
  .trust {
    padding: 40px 0;
  }
  
  .trust-track {
    gap: 20px;
  }

  .trust-track img {
    height: 26px;
    flex: 0 0 auto;
  }
  
  .solutions-section {
    padding: 60px 0;
  }
  
  .solutions-section .product-card {
    padding: 22px;
  }
  
  .product-card-badge {
    font-size: 0.7rem;
  }
  
  .difer-section {
    padding: 60px 0;
  }
  
  .difer-section .feature-grid article {
    padding: 20px;
  }
  
  .difer-section .feature-icon {
    width: 42px;
    height: 42px;
  }
  
  .how {
    padding: 50px 0;
  }
  
  .how-grid {
    gap: 32px;
  }
  
  .how-step.modern {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }
  
  .step-number {
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }
  
  .how-visual.modern {
    min-height: 280px;
  }
  
  .how-visual-card {
    width: min(520px, 92vw);
  }
  
  .proposal {
    padding: 50px 0;
  }
  
  .proposal-layout {
    gap: 28px;
  }
  
  .proposal-benefits {
    gap: 12px;
    margin: 20px 0 28px;
  }
  
  .proposal-cta {
    width: 100%;
    justify-content: center;
    min-width: 100%;
  }
  
  .proposal-image-card {
    padding: 14px;
  }
  
  .proposal-image-card img {
    width: min(380px, 88vw);
  }
  
  .faq {
    padding-bottom: 60px;
  }
  
  .faq-grid {
    gap: 28px;
  }
  
  .accordion-item {
    padding: 16px 18px;
    font-size: 0.9rem;
  }
  
  .accordion-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  
  .accordion-panel {
    padding: 0 18px 18px;
    font-size: 0.9rem;
  }
  
  .footer-pink-shell {
    border-radius: 20px;
    padding: 24px;
  }
  
  .footer-logo-white {
    height: 32px;
  }
  
  .headline-copy {
    font-size: 0.9rem;
  }
  
  .footer-social-grid {
    grid-template-columns: 1fr;
  }
  
  .social-pill {
    justify-content: center;
  }
  
  .call-link {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .footer-pill {
    margin-top: 24px;
    font-size: 0.75rem;
    text-align: center;
  }
  
  .yield-header {
    gap: 24px;
  }
  
  .yield-grid {
    gap: 14px;
  }
  
  .yield-card {
    padding: 20px;
    min-height: auto;
  }
  
  .global-white {
    padding: 60px 0;
  }
  
  .global-white-grid {
    gap: 40px;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(1140px, 86vw);
  }
  
  .nav-actions .btn {
    min-width: 100px;
    font-size: 0.75rem;
  }
  
  .hero-ref {
    padding: 28px 0 36px;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .btn {
    height: 44px;
    font-size: 0.85rem;
  }
  
  .footer-pink-shell {
    padding: 20px;
    border-radius: 16px;
  }
}

.cta-modal-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 3, 20, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1.5rem;
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.cta-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cta-modal-card {
  width: min(520px, 100%);
  background: #fff;
  border: 1px solid #dcd2e2;
  border-radius: 38px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  transition: transform 0.38s ease, opacity 0.3s ease;
}

.cta-modal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid transparent;
  border-top-color: #d433bb;
  border-left-color: #1a1836;
  pointer-events: none;
  z-index: -1;
}

.cta-modal-overlay.active .cta-modal-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.cta-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #fff;
  border: 1.5px solid #1a1836;
  color: #1a1836;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cta-modal-close:hover {
  border-color: #d433bb;
}

.cta-modal-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #d433bb;
  margin-bottom: 0;
}

.cta-modal-card h3 {
  font-size: 2rem;
  margin: 0;
  color: #1a1836;
  line-height: 1.2;
}

.cta-modal-copy {
  color: #4d4763;
  font-size: 1rem;
  margin: 0;
}

.cta-modal-label {
  font-size: 0.95rem;
  color: #1a1836;
  font-weight: 600;
}

.cta-modal-input-row {
  display: flex;
  gap: 0.7rem;
  align-items: stretch;
}

.cta-modal-input-row input {
  flex: 1;
  border: 2px solid #d433bb;
  padding: 0 1rem;
  border-radius: 12px;
  font-size: 1rem;
  background: #fff;
  outline: none;
  min-height: 52px;
}

.cta-modal-input-row input:focus {
  border-color: #c325a7;
}

.modal-cta {
  flex: 1;
  min-height: 52px;
  min-width: 170px;
  background: #1a1836;
  border-color: #1a1836;
  color: #fff;
  border-radius: 12px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.modal-cta:disabled {
  background: #e5d7eb;
  border-color: #e5d7eb;
  color: #7c6596;
  cursor: not-allowed;
}

.cta-modal-note {
  font-size: 0.8rem;
  color: #6c6370;
  margin-top: 0.4rem;
}

@media (max-width: 520px) {
  .cta-modal-card {
    padding: 1.5rem;
  }

  .cta-modal-input-row {
    flex-direction: column;
  }

  .cta-modal-input-row input {
    width: 100%;
  }

  .modal-cta {
    width: 100%;
    min-width: auto;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

main {
  margin-top: clamp(92px, 10vw, 120px);
}

section[id] {
  scroll-margin-top: clamp(104px, 12vw, 140px);
}

.page {
  overflow-x: clip;
}

.container,
.nav,
.hero-copy,
.hero-visual,
.product-card,
.feature-grid article,
.how-content,
.how-visual,
.security-main-text,
.security-main-illustration,
.security-feature,
.feature-text,
.proposal-copy,
.proposal-visual,
.faq-intro,
.faq-accordion,
.footer-headline,
.footer-column {
  min-width: 0;
}

.site-header {
  z-index: 60;
}

.nav {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(212, 51, 187, 0.55);
  outline: none;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav-shell {
  position: fixed;
  inset: 0;
  padding: 92px 1rem 1rem;
  background: rgba(10, 6, 24, 0.48);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
  z-index: 55;
}

.mobile-nav-shell.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-panel {
  width: min(420px, 100%);
  margin-left: auto;
  background: #1a1836;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 1rem;
  box-shadow: 0 24px 60px rgba(8, 6, 20, 0.35);
  transform: translateY(-12px);
  transition: transform 0.28s ease;
}

.mobile-nav-shell.active .mobile-nav-panel {
  transform: translateY(0);
}

.mobile-nav-links {
  display: grid;
  gap: 0.55rem;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus-visible {
  background: rgba(212, 51, 187, 0.18);
  transform: translateX(2px);
  outline: none;
}

.mobile-nav-cta {
  width: 100%;
  margin-top: 0.8rem;
}

.btn {
  min-width: 0;
  max-width: 100%;
}

.section + svg {
  width: 100%;
  height: auto;
}

.hero-copy {
  max-width: 100%;
}

.hero-copy p {
  max-width: 38rem;
}

.hero-pill {
  margin: 0 0 26px;
}

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

.hero-stats div {
  min-width: 0;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(212, 51, 187, 0.14);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 34px rgba(212, 51, 187, 0.08);
}

.hero-stats span {
  display: block;
}

.trust-carousel {
  width: 100%;
}

.how-actions .btn,
.proposal-cta,
.faq-cta,
.whatsapp-submit,
.modal-cta {
  min-width: 0;
}

.proposal-image-card,
.how-visual-card {
  width: min(520px, 100%);
}

.proposal-image-card img,
.whatsapp-input,
.cta-modal-input-row input {
  max-width: 100%;
}

.faq-cta {
  max-width: 100%;
}

@media (min-width: 961px) {
  .mobile-nav-shell {
    display: none !important;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .how-grid,
  .proposal-layout {
    gap: clamp(28px, 4vw, 44px);
  }

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

  .how-visual.modern {
    margin-left: 0;
  }

  .hero-visual,
  .hero-ref .hero-visual {
    display: none !important;
  }

  .hero-grid,
  .hero-ref .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .header-shell {
    padding: 0 0.9rem;
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 18px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .section {
    padding: clamp(56px, 8vw, 76px) 0;
  }

  .hero-ref {
    padding: clamp(24px, 5vw, 42px) 0 clamp(48px, 8vw, 64px);
  }

  .hero-grid,
  .how-grid,
  .proposal-layout,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .how-content,
  .proposal-copy,
  .faq-intro,
  .section-header,
  .security-section .section-heading {
    text-align: center;
  }

  .hero-copy p,
  .how-content p,
  .proposal-copy p,
  .faq-intro .section-lead,
  .security-section .section-heading p {
    margin-inline: auto;
  }

  .hero-pill {
    margin: 0 auto 22px;
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }

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

  .hero-stats strong,
  .hero-stats span {
    text-align: center;
  }

  .how-visual.modern {
    order: 2;
    min-height: 0;
  }

  .float-metric,
  .pulse-ring,
  .glow-orb {
    display: none;
  }

  .security-main-card {
    padding: 32px;
  }

  .proposal-layout {
    gap: 36px;
  }

  .proposal-copy p {
    max-width: 40rem;
  }

  .whatsapp-input-row {
    flex-direction: column;
  }

  .whatsapp-input,
  .proposal-cta,
  .faq-cta {
    width: 100%;
  }

  .faq-grid {
    gap: 28px;
  }

  .faq-intro .checklist {
    justify-items: center;
  }

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

@media (max-width: 768px) {
  .container {
    width: min(1140px, 90vw);
  }

  .hero-copy h1 {
    font-size: clamp(2.15rem, 8vw, 3rem);
  }

  .proposal-copy h2,
  .security-section .section-heading h2,
  .how-content h2 {
    font-size: clamp(2rem, 7vw, 2.9rem);
  }

  .hero-ref .hero-visual {
    display: none;
  }

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

  .solutions-section,
  .difer-section,
  .proposal {
    padding-block: 64px;
  }

  .solutions-section .card-grid,
  .difer-section .feature-grid,
  .security-feature-grid {
    grid-template-columns: 1fr;
  }

  .trust-track {
    gap: 24px;
    animation-duration: 28s;
  }

  .trust-track img {
    width: 96px;
    height: 28px;
  }

  .how-actions {
    grid-template-columns: 1fr;
  }

  .how-actions .btn {
    width: 100%;
    max-width: 100%;
  }

  .proposal-visual {
    min-height: 0;
  }

  .proposal-image-card {
    width: min(420px, 100%);
  }

  .proposal-image-card img {
    width: min(380px, 100%);
  }

  .voice-badge,
  .float-icon,
  .rating-badge {
    display: none;
  }

  .security-feature {
    padding: 22px 24px;
  }

  .footer-pink-shell {
    border-radius: 28px;
    padding: 28px;
  }

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

  .footer-headline,
  .footer-column {
    align-items: center;
    text-align: center;
  }

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

@media (max-width: 640px) {
  .header-shell {
    padding: 0 0.75rem;
  }

  .nav {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .logo-img {
    height: 22px;
  }

  .mobile-nav-shell {
    padding: 82px 0.75rem 0.75rem;
  }

  .mobile-nav-panel {
    width: 100%;
    border-radius: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .hero-pill {
    width: 100%;
    padding: 10px 12px;
    gap: 10px;
  }

  .pill-avatars {
    display: none;
  }

  .hero-actions .btn {
    max-width: none;
  }

  .security-main-card {
    padding: 26px 20px 28px;
  }

  .security-feature {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    border-radius: 24px;
  }

  .security-feature .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 1.45rem;
  }

  .security-feature::after {
    top: 18px;
    height: calc(100% - 36px);
  }

  .proposal-whatsapp {
    gap: 12px;
  }

  .accordion-item {
    align-items: flex-start;
  }

  .accordion-icon {
    flex: 0 0 auto;
  }

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

@media (max-width: 480px) {
  .container {
    width: min(1140px, 91vw);
  }

  .section {
    padding: 46px 0;
  }

  .hero-ref,
  .solutions-section,
  .difer-section,
  .proposal {
    padding-block: 52px;
  }

  .hero-stats div,
  .solutions-section .product-card,
  .difer-section .feature-grid article,
  .how-step.modern,
  .security-feature,
  .accordion-block {
    border-radius: 20px;
  }

  .footer-pink-shell,
  .cta-modal-card {
    border-radius: 24px;
  }

  .cta-modal-overlay {
    padding: 1rem;
  }

  .cta-modal-card {
    padding: 1.4rem;
  }

  .cta-modal-card h3 {
    font-size: 1.7rem;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(1140px, 88vw);
  }

  .nav {
    padding: 11px 12px;
  }

  .mobile-nav-links a {
    padding: 0.85rem 0.9rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.85rem, 11vw, 2.35rem);
  }

  .section h2,
  .proposal-copy h2,
  .security-main-text h3 {
    font-size: clamp(1.7rem, 8.5vw, 2.1rem);
  }

  .btn {
    height: 46px;
    font-size: 0.88rem;
  }
}
