html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::after {
  content: "+";
  float: right;
  color: #c026d3;
  font-weight: 700;
}

details[open] summary::after {
  content: "-";
}

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

:root {
  --magenta: #a21caf;
  --hot-pink: #db2777;
  --violet: #7c3aed;
  --deep-violet: #581c87;
  --soft-lilac: #faf7ff;
  --line-lilac: #e9d5ff;
  --muted-accent: #86198f;
  --surface: #ffffff;
  --soft-surface: #f8fafc;
  --ink: #0f172a;
}

body {
  background:
    radial-gradient(circle at 88% 10%, rgba(162, 28, 175, 0.055), transparent 25%),
    radial-gradient(circle at 4% 42%, rgba(124, 58, 237, 0.045), transparent 30%),
    #ffffff;
}

.js-whatsapp,
button[type="submit"] {
  position: relative;
  overflow: hidden;
  border: 0;
  color: #fff !important;
  background: var(--deep-violet);
  background-size: 260% 260%;
  box-shadow: 0 14px 30px rgba(88, 28, 135, 0.18);
  animation: none;
}

.js-whatsapp::before,
button[type="submit"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: translateX(-120%);
  animation: none;
}

.js-whatsapp:hover,
button[type="submit"]:hover {
  filter: saturate(1.08) brightness(1.02);
}

.js-whatsapp,
button[type="submit"] {
  isolation: isolate;
}

.js-whatsapp *,
button[type="submit"] * {
  position: relative;
  z-index: 1;
}

.js-whatsapp[data-source="header"],
.js-whatsapp[data-source="hero"],
button[type="submit"] {
  background: linear-gradient(120deg, var(--magenta), var(--hot-pink), var(--violet), var(--deep-violet));
  background-size: 260% 260%;
  box-shadow: 0 16px 36px rgba(162, 28, 175, 0.22);
  animation: gradient-loop 8s ease infinite;
}

.js-whatsapp[data-source="header"]::before,
.js-whatsapp[data-source="hero"]::before,
button[type="submit"]::before {
  animation: shine-loop 5.6s ease-in-out infinite;
}

.js-whatsapp[data-source="final-cta"] {
  background: #fff !important;
  color: var(--deep-violet) !important;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
}

.js-whatsapp[data-source="final-cta"]::before,
.js-whatsapp[data-source="mobile-sticky"]::before,
.js-whatsapp[data-source$="-package"]::before {
  display: none;
}

.js-whatsapp[data-source="mobile-sticky"] {
  background:
    linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.58) 18%, transparent 34%),
    linear-gradient(120deg, #16a34a 0%, #22c55e 46%, #dcfce7 100%);
  background-size: 260% 100%, 100% 100%;
  color: #064e3b !important;
  box-shadow: 0 16px 36px rgba(22, 163, 74, 0.24);
  animation: whatsapp-sweep 4.6s linear infinite, whatsapp-pulse 3.4s ease-in-out infinite;
}

.js-whatsapp[data-source="business-package"] {
  background: linear-gradient(120deg, var(--magenta), var(--hot-pink), var(--violet));
  box-shadow: 0 16px 34px rgba(162, 28, 175, 0.2);
}

.hero-package-cta {
  position: relative;
  overflow: hidden;
  border: 0;
  color: #fff !important;
  background: linear-gradient(110deg, var(--magenta), var(--hot-pink), var(--violet), var(--deep-violet), var(--magenta)) !important;
  background-size: 400% 400% !important;
  box-shadow: 0 16px 36px rgba(162, 28, 175, 0.22);
  animation: gradient-loop 5.2s ease infinite, hero-cta-pulse 3.2s ease-in-out infinite !important;
  isolation: isolate;
}

.hero-package-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.14) 18%, rgba(255, 255, 255, 0.34) 50%, rgba(255, 255, 255, 0.14) 82%, transparent 100%);
  background-size: 240% 100%;
  transform: translateX(-120%);
  animation: shine-loop 3.8s ease-in-out infinite !important;
}

.hero-package-cta:hover {
  filter: saturate(1.08) brightness(1.02);
}

.hero-package-cta * {
  position: relative;
  z-index: 1;
}

@keyframes hero-cta-pulse {
  0%,
  100% {
    box-shadow: 0 16px 36px rgba(162, 28, 175, 0.22);
  }
  50% {
    box-shadow: 0 18px 42px rgba(162, 28, 175, 0.34);
  }
}

.bg-ink {
  background: linear-gradient(135deg, #2e1065, #701a75 52%, #111827);
}

.bg-slate-50 {
  background-color: var(--soft-surface) !important;
}

.bg-slate-100 {
  background: linear-gradient(180deg, #f8fafc, #f4f0ff) !important;
}

.bg-fuchsia-50,
.bg-purple-50,
.bg-teal-50,
.bg-blue-50,
.bg-amber-50 {
  background-color: var(--soft-lilac) !important;
}

.border-fuchsia-200,
.border-teal-200,
.border-blue-200,
.border-amber-200 {
  border-color: var(--line-lilac) !important;
}

.text-teal-800,
.text-trust,
.text-signal,
.text-amber-700,
.text-purple-700 {
  color: var(--muted-accent) !important;
}

.hover\:bg-teal-800:hover,
.hover\:bg-fuchsia-700:hover {
  background: linear-gradient(120deg, var(--violet), var(--hot-pink), var(--magenta)) !important;
}

.border-slate-200 {
  border-color: #e8e1f0 !important;
}

.shadow-soft {
  box-shadow: 0 24px 70px rgba(88, 28, 135, 0.1) !important;
}

.hero-person-image {
  border-radius: 28px;
  filter: saturate(0.95) drop-shadow(0 26px 48px rgba(88, 28, 135, 0.13));
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 13%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 13%, #000 100%);
}

.hero-badge {
  border-color: #99f6e4 !important;
  background-color: #f0fdfa !important;
  color: #0f766e !important;
}

.hero-price-badge {
  border: 1px solid rgba(162, 28, 175, 0.16);
  background: linear-gradient(120deg, rgba(250, 247, 255, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: 0 8px 20px rgba(88, 28, 135, 0.06);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% 4% -4% 12%;
  z-index: 0;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(162, 28, 175, 0.12), rgba(124, 58, 237, 0.1), rgba(219, 39, 119, 0.07));
  background-size: 220% 220%;
  filter: blur(28px);
  animation: gradient-loop 14s ease infinite;
}

.hero-float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  border: 1px solid rgba(233, 213, 255, 0.95);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 14px;
  box-shadow: 0 18px 46px rgba(88, 28, 135, 0.12);
  backdrop-filter: blur(14px);
  animation: card-rise 620ms ease both;
}

.hero-float-card strong {
  display: block;
  color: #0f172a;
  font-size: 13px;
  line-height: 1.2;
}

.hero-float-card p {
  margin-top: 3px;
  color: #475569;
  font-size: 12px;
  line-height: 1.25;
}

.hero-logo-strip {
  align-items: stretch;
}

.hero-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  padding: 12px 16px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(10px);
}

.hero-logo-item img {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 36px;
  object-fit: contain;
  object-position: center;
}

.hero-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
}

.hero-dot-green {
  background: #16a34a;
}

.hero-dot-red {
  background: #e11d48;
}

.hero-dot-yellow {
  background: #eab308;
}

.hero-float-card-top {
  left: 4%;
  top: 12%;
}

.hero-float-card-mid {
  right: -2%;
  top: 45%;
  animation-delay: 100ms;
}

.hero-float-card-bottom {
  left: 14%;
  bottom: 7%;
  animation-delay: 200ms;
}

.core-services-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f8fafc 0%, #ffffff 54%, #f8fafc 100%) !important;
}

.core-services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent, #000 24%, #000 76%, transparent);
}

.core-services-section > div {
  position: relative;
  z-index: 1;
}

.core-service-card {
  position: relative;
  overflow: hidden;
  min-height: 438px;
  border-color: rgba(226, 214, 241, 0.92) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 255, 0.9) 58%, rgba(255, 255, 255, 0.96)) !important;
  box-shadow:
    0 28px 70px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.core-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 14% 12%, rgba(219, 39, 119, 0.11), transparent 28%),
    radial-gradient(circle at 90% 4%, rgba(20, 184, 166, 0.1), transparent 26%);
  opacity: 0.86;
}

.core-service-card::after {
  content: "";
  position: absolute;
  inset: 0 28px auto 28px;
  height: 5px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #14b8a6, var(--magenta), var(--hot-pink), #f59e0b);
  box-shadow: 0 14px 28px rgba(162, 28, 175, 0.16);
}

.core-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(162, 28, 175, 0.24) !important;
  box-shadow:
    0 34px 90px rgba(88, 28, 135, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.core-service-card-accent::before {
  background:
    radial-gradient(circle at 16% 12%, rgba(124, 58, 237, 0.11), transparent 30%),
    radial-gradient(circle at 91% 4%, rgba(245, 158, 11, 0.1), transparent 26%);
}

.core-service-card-accent::after {
  background: linear-gradient(90deg, #f59e0b, var(--hot-pink), var(--violet), #14b8a6);
}

.core-service-badge {
  border: 1px solid rgba(162, 28, 175, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(250, 247, 255, 0.9)) !important;
  box-shadow:
    0 10px 26px rgba(88, 28, 135, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.core-service-card h2 {
  max-width: 13ch;
  line-height: 1.08;
}

.core-service-card p {
  max-width: 54ch;
}

.core-service-features {
  align-items: stretch;
}

.core-service-feature {
  position: relative;
  display: flex;
  min-height: 66px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(226, 214, 241, 0.76);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 250, 252, 0.86)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.core-service-feature::before {
  content: "";
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 999px;
  background:
    linear-gradient(135deg, #14b8a6, var(--magenta));
  box-shadow: 0 9px 18px rgba(20, 184, 166, 0.16);
}

.core-service-feature::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-62%) rotate(-45deg);
}

.core-service-card-accent .core-service-feature::before {
  background: linear-gradient(135deg, #f59e0b, var(--violet));
  box-shadow: 0 9px 18px rgba(245, 158, 11, 0.16);
}

.services-ambient {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(36px);
  opacity: 0.5;
}

.services-ambient-one {
  right: -80px;
  top: 28px;
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, rgba(162, 28, 175, 0.11), rgba(219, 39, 119, 0.08));
  animation: float-soft 10s ease-in-out infinite;
}

.services-ambient-two {
  left: -90px;
  bottom: 20px;
  width: 190px;
  height: 190px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(219, 39, 119, 0.06));
  animation: float-soft 11s ease-in-out infinite reverse;
}

.services-grid::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 46px;
  height: 2px;
  background: linear-gradient(90deg, rgba(162, 28, 175, 0), rgba(162, 28, 175, 0.18), rgba(124, 58, 237, 0.16), rgba(219, 39, 119, 0));
  background-size: 100% 100%;
  animation: none;
  z-index: -1;
}

.service-card {
  position: relative;
  min-height: 236px;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(162, 28, 175, 0.06), transparent 42%);
  opacity: 0;
  transition: opacity 240ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--magenta), var(--hot-pink), var(--violet), var(--magenta));
  background-size: 220% 220%;
  animation: none;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(162, 28, 175, 0.22);
  box-shadow: 0 24px 70px rgba(88, 28, 135, 0.11);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.service-icon-whatsapp {
  box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.12);
}

.reveal-card {
  animation: card-rise 620ms ease both;
  animation-delay: var(--delay);
}

.package-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.package-price-badge {
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.package-price-badge-featured {
  border-color: rgba(233, 213, 255, 0.95);
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(162, 28, 175, 0.22);
  box-shadow: 0 22px 60px rgba(88, 28, 135, 0.11);
}

.featured-package {
  position: relative;
  background: linear-gradient(180deg, #fff, #fdf7ff) !important;
  box-shadow: 0 28px 80px rgba(88, 28, 135, 0.13) !important;
}

.package-eyebrow {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 14px;
}

.work-feature-card,
.work-mini-card,
.work-wide-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.work-feature-card:hover,
.work-mini-card:hover,
.work-wide-card:hover {
  transform: translateY(-4px);
  border-color: rgba(162, 28, 175, 0.2);
  box-shadow: 0 24px 70px rgba(88, 28, 135, 0.1);
}

.work-image-frame {
  display: grid;
  aspect-ratio: 16 / 10;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.work-image-frame-large {
  aspect-ratio: 16 / 9;
}

.work-image-frame-wide {
  aspect-ratio: 16 / 9;
  min-height: 260px;
}

.work-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.work-card {
  position: relative;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease,
    background-color 240ms ease;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: auto 16px 12px 16px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(162, 28, 175, 0), rgba(162, 28, 175, 0.9), rgba(124, 58, 237, 0.9), rgba(219, 39, 119, 0.9), rgba(162, 28, 175, 0));
  opacity: 0;
  transform: scaleX(0.85);
  transition: opacity 240ms ease, transform 240ms ease;
}

.work-card-media {
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.work-card-media img {
  transition: transform 320ms ease, filter 320ms ease;
}

.work-card:hover {
  transform: translateY(-8px);
  border-color: rgba(162, 28, 175, 0.28);
  box-shadow:
    0 28px 80px rgba(88, 28, 135, 0.14),
    0 2px 8px rgba(15, 23, 42, 0.04);
  background-color: #fff;
}

.work-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.work-card:hover .work-card-media img {
  transform: scale(1.04);
  filter: saturate(1.03) contrast(1.02);
}

.audit-form input,
.audit-form select {
  min-height: 56px;
}

.audit-submit {
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 0.94rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.audit-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  text-align: left;
}

.audit-consent input {
  margin-top: 3px;
  flex: 0 0 auto;
}

.audit-consent span {
  display: block;
  min-width: 0;
  flex: 1 1 auto;
}

.audit-field span {
  display: flex;
  min-height: 22px;
  align-items: flex-end;
}

.audit-form {
  box-shadow: 0 24px 70px rgba(88, 28, 135, 0.08);
}

.package-card li {
  position: relative;
  padding-left: 22px;
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--muted-accent);
}

@keyframes card-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-soft {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 18px, 0);
  }
}

@keyframes gradient-loop {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes shine-loop {
  0%,
  62% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes whatsapp-sweep {
  0% {
    background-position: 260% 0, 0 0;
  }
  100% {
    background-position: -260% 0, 0 0;
  }
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    box-shadow: 0 16px 36px rgba(22, 163, 74, 0.22);
  }
  50% {
    box-shadow: 0 18px 44px rgba(22, 163, 74, 0.34);
  }
}

@media (max-width: 1023px) {
  .services-grid::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-person-image {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-logo-strip {
    gap: 10px;
  }

  .hero-logo-item {
    position: relative;
    min-height: 60px;
    border-radius: 16px;
    padding: 10px 12px;
    border-color: rgba(226, 232, 240, 0.95);
    background:
      rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  }

  .hero-logo-item img {
    max-height: 24px;
  }

  .hero-float-card {
    min-width: 160px;
    padding: 10px 12px;
  }

  .hero-float-card-mid {
    right: 0;
  }

  .hero-float-card-bottom {
    left: 6%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-ambient,
  .hero-float-card,
  .reveal-card {
    animation: none;
  }

  .js-whatsapp,
  button[type="submit"],
  .hero-visual::before,
  .core-service-card::after,
  .services-grid::before,
  .service-card::after {
    animation: none;
  }

  .service-card,
  .core-service-card,
  .package-card,
  .service-card::before,
  .service-card::after {
    transition: none;
  }
}
