/* --- main.css --- */
@font-face {
  font-family: "Ploni";
  src: url("../assets/fonts/ploni-regular-aaa.eot");
  src:
    url("../assets/fonts/ploni-regular-aaa.eot?#iefix")
      format("embedded-opentype"),
    url("../assets/fonts/ploni-regular-aaa.woff2") format("woff2"),
    url("../assets/fonts/ploni-regular-aaa.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ploni";
  src: url("../assets/fonts/ploni-light-aaa.eot");
  src:
    url("../assets/fonts/ploni-light-aaa.eot?#iefix")
      format("embedded-opentype"),
    url("../assets/fonts/ploni-light-aaa.woff2") format("woff2"),
    url("../assets/fonts/ploni-light-aaa.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ploni";
  src: url("../assets/fonts/ploni-demibold-aaa.eot");
  src:
    url("../assets/fonts/ploni-demibold-aaa.eot?#iefix")
      format("embedded-opentype"),
    url("../assets/fonts/ploni-demibold-aaa.woff2") format("woff2"),
    url("../assets/fonts/ploni-demibold-aaa.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary-purple: #6f00ff;
  --color-secondary-purple: #8c3dff;
  --color-accent-cyan: #00f3ff;
  --color-neon-green: #00ff67;
  --color-text-dark: #1c1c1c;
  --color-text-muted: #5f6472;
  --color-bg-light: #f8f7fb;
  --color-border-soft: #e8e4f3;
  --color-surface-dark: #120d24;
  --color-surface-deeper: #0d0818;
  --accent-pink: #df78a1;
  --accent-orange: #ffb347;
  --color-surface-soft: rgba(255, 255, 255, 0.84);
  --color-white-strong: rgba(255, 255, 255, 0.96);
  --container: min(1180px, calc(100vw - 32px));
  --radius-lg: 28px;
  --radius-xl: 36px;
  --shadow-card: 0 12px 36px rgba(44, 17, 99, 0.1);
  --shadow-soft: 0 18px 55px rgba(66, 14, 150, 0.12);
  --shadow-premium: 0 26px 80px rgba(42, 11, 108, 0.16);
  --shadow-dark: 0 28px 80px rgba(13, 8, 24, 0.34);
  --transition: 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
  --header-h: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Ploni", Arial, sans-serif;
  color: var(--color-text-dark);
  background:
    radial-gradient(
      circle at top right,
      rgba(140, 61, 255, 0.14),
      transparent 26%
    ),
    radial-gradient(
      circle at top left,
      rgba(0, 243, 255, 0.06),
      transparent 20%
    ),
    linear-gradient(180deg, #fbfaff 0%, #fff 100%);
  line-height: 1.6;
}

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

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

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

button {
  cursor: pointer;
}

.is-hidden,
.hidden {
  display: none !important;
  opacity: 0;
  pointer-events: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 76px 0;
  position: relative;
}

.section.compact {
  padding: 24px 0 16px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 14px;
  background: rgba(111, 0, 255, 0.08);
  color: var(--color-primary-purple);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(111, 0, 255, 0.06);
  box-shadow: 0 8px 24px rgba(111, 0, 255, 0.06);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 14px 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.section-heading p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 18px;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 4px;
  background: #ffffff;
  z-index: 400;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--color-primary-purple),
    var(--color-accent-cyan)
  );
  transform-origin: right center;
  will-change: width;
  transition: width 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 210;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(232, 228, 243, 0.72);
  transform: translateY(0);
  will-change: background, backdrop-filter, box-shadow, border-color, transform;
  transition:
    background 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-primary-purple),
    var(--color-accent-cyan)
  );
  z-index: 100;
  pointer-events: none;
}

.site-header.is-scrolled {
  background: rgba(18, 13, 36, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr) minmax(
      220px,
      300px
    );
  align-items: center;
  gap: 18px;
  width: min(100%, 1440px);
  margin-inline: auto;
  padding: 0 16px;
  transition:
    min-height 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    gap 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled .header-inner {
  padding: 0 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.brand-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 6px 16px;
  border-radius: 16px;
  background: #6f00ff !important;
  border: 1px solid transparent !important;
  box-shadow: none !important;
  position: relative;
  transform: translateY(0) scale(1);
  transition:
    background 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: none !important;
}

.site-header.is-scrolled .brand-plate {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.11),
    rgba(255, 255, 255, 0.03)
  ) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 10px 28px rgba(0, 0, 0, 0.22) !important;
  transform: translateY(-1px) scale(0.985);
}

.brand-logo {
  width: 164px;
  height: auto;
  transition: all var(--transition);
  filter: brightness(0) invert(1);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.desktop-nav a,
.mobile-menu a {
  color: #3f4654;
  position: relative;
  font-weight: 500;
  transition:
    color 0.26s ease,
    opacity 0.26s ease,
    text-shadow 0.26s ease,
    transform 0.26s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  transform: translateY(-1px);
}

.site-header.is-scrolled .desktop-nav a {
  color: rgba(255, 255, 255, 0.85);
}

.desktop-nav a::after,
.mobile-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--color-primary-purple),
    var(--color-accent-cyan)
  );
  transform: scaleX(0);
  transform-origin: center;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.22s ease;
  opacity: 0;
}

.desktop-nav a:hover,
.mobile-menu a:hover,
.desktop-nav a.is-active,
.mobile-menu a.is-active,
.desktop-nav a.active,
.mobile-menu a.active,
.desktop-nav a[aria-current="page"],
.mobile-menu a[aria-current="page"] {
  color: var(--color-primary-purple);
  text-shadow: 0 0 16px rgba(111, 0, 255, 0.4);
}

.mobile-menu a.is-active,
.mobile-menu a.active,
.mobile-menu a[aria-current="page"] {
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(
    90deg,
    var(--color-primary-purple),
    var(--color-accent-cyan)
  );
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(111, 0, 255, 0.22);
}

.mobile-menu a.is-active::after,
.mobile-menu a.active::after,
.mobile-menu a[aria-current="page"]::after {
  display: none;
}

.site-header.is-scrolled .desktop-nav a:hover,
.site-header.is-scrolled .desktop-nav a.is-active,
.site-header.is-scrolled .desktop-nav a.active,
.site-header.is-scrolled .desktop-nav a[aria-current="page"] {
  color: var(--color-accent-cyan);
  text-shadow: 0 0 16px rgba(0, 243, 255, 0.4);
}

.desktop-nav a.is-active,
.mobile-menu a.is-active,
.desktop-nav a.active,
.mobile-menu a.active,
.desktop-nav a[aria-current="page"],
.mobile-menu a[aria-current="page"] {
  font-weight: 600;
}

.desktop-nav a.is-active::after,
.mobile-menu a.is-active::after,
.desktop-nav a.active::after,
.mobile-menu a.active::after,
.desktop-nav a[aria-current="page"]::after,
.mobile-menu a[aria-current="page"]::after,
.desktop-nav a:hover::after,
.mobile-menu a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a + a::before {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--color-primary-purple),
    var(--color-accent-cyan)
  );
  transform: translateY(-50%) scale(0.9);
  opacity: 0.82;
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.26);
  animation: nav-separator-pulse 2.8s ease-in-out infinite;
  pointer-events: none;
}

.site-header.is-scrolled .desktop-nav a + a::before {
  background: linear-gradient(135deg, #ffffff, var(--color-accent-cyan));
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.desktop-nav a.active,
.desktop-nav a[aria-current="page"] {
  filter: saturate(1.08);
}

.site-header .cta-primary,
.site-header.is-scrolled .cta-primary {
  box-shadow:
    0 12px 28px rgba(111, 0, 255, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.site-header .cta-primary:hover,
.site-header.is-scrolled .cta-primary:hover {
  box-shadow:
    0 16px 34px rgba(111, 0, 255, 0.28),
    0 0 18px rgba(255, 179, 71, 0.18);
}

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

.header-logo-group {
  justify-self: end;
}

.header-nav-group {
  justify-self: center;
  width: 100%;
  min-width: 0;
}

.header-cta-group,
.header-actions {
  justify-self: start;
}

.desktop-nav {
  width: 100%;
  justify-content: center;
  gap: clamp(14px, 1.15vw, 22px);
}

.mobile-header-actions {
  display: none;
}

.site-header.is-scrolled .header-actions .btn-primary {
  box-shadow: 0 14px 34px rgba(111, 0, 255, 0.18);
}

.site-header.is-scrolled .header-actions .btn-secondary.cta-whatsapp {
  background: #25d366 !important;
  color: #fff !important;
  border-color: transparent !important;
}

.site-header.is-scrolled .header-actions .btn-secondary.cta-whatsapp:hover {
  background: #20bd5a !important;
  color: #fff !important;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(111, 0, 255, 0.2);
  background: #fff;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 4px 12px rgba(111, 0, 255, 0.08);
  cursor: pointer;
  z-index: 100;
  position: relative;
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.22s ease;
}

.site-header.is-scrolled .mobile-menu-toggle {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle:hover {
  background: rgba(111, 0, 255, 0.05);
  border-color: var(--color-primary-purple);
}

.site-header.is-scrolled .mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

.mobile-menu-toggle:focus-visible {
  outline: 2px solid var(--color-primary-purple);
  outline-offset: 2px;
}

.mobile-menu-toggle:active {
  transform: scale(0.92);
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--color-primary-purple);
  margin: 2.5px 0;
  border-radius: 2px;
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.22s ease,
    background 0.22s ease;
}

.site-header.is-scrolled .mobile-menu-toggle span {
  background: #fff;
}

.mobile-menu-toggle.is-active {
  background: var(--color-primary-purple);
  border-color: var(--color-primary-purple);
}

.site-header.is-scrolled .mobile-menu-toggle.is-active {
  background: #ffffff;
  border-color: #ffffff;
  box-shadow:
    0 12px 28px rgba(18, 13, 36, 0.28),
    0 0 0 2px rgba(111, 0, 255, 0.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 1;
}

.mobile-menu-toggle.is-active span {
  background: #fff;
}

.site-header.is-scrolled .mobile-menu-toggle.is-active span {
  background: var(--color-primary-purple);
}

.mobile-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.mobile-menu-overlay {
  display: none;
}

@media (max-width: 1180px) {
  .carousel-track {
    --carousel-items: 2;
    --carousel-gap: 20px;
  }

  .hero-grid,
  .contact-shell {
    max-width: 100%;
    overflow-x: visible;
  }

  .carousel-shell {
    max-width: 100%;
  }

  .carousel-viewport {
    max-width: 100%;
    overflow: hidden;
  }

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

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

  .step-connector {
    display: none;
  }

  .faq-layout,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .faq-visual-container {
    display: none;
  }

  .final-cta-inner {
    justify-items: start;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto auto;
  }

  .header-actions .btn-secondary:not(.cta-whatsapp) {
    display: none;
  }

  .header-actions .cta-whatsapp {
    display: inline-flex !important;
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .logo-item:nth-child(3n) {
    border-left: 0;
  }

  .logo-item:nth-child(6n) {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .logo-item:nth-last-child(-n + 3):before {
    display: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
  box-shadow: 0 6px 20px rgba(66, 14, 150, 0.08);
}

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

.btn:active {
  transform: translateY(0) scale(0.97);
}

.btn:focus-visible {
  outline: 2px solid rgba(0, 243, 255, 0.55);
  outline-offset: 2px;
}

.btn-small {
  min-height: 44px;
  padding: 0 16px;
  font-size: 14px;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--color-primary-purple) 0%,
    var(--accent-pink) 56%,
    var(--accent-orange) 100%
  );
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--color-primary-purple);
  border-color: rgba(111, 0, 255, 0.18);
}

/* WhatsApp CTA specific styling */
.btn-whatsapp,
.cta-whatsapp {
  background: #25d366 !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25) !important;
}

.btn-whatsapp:hover,
.cta-whatsapp:hover {
  background: #20bd5a !important;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35) !important;
  color: #fff !important;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.cta-whatsapp .btn-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='%23ffffff'%3E%3Cpath d='M19.11 17.19c-.27-.14-1.6-.79-1.85-.88-.25-.09-.43-.14-.61.14-.18.27-.7.88-.86 1.06-.16.18-.32.2-.59.07-.27-.14-1.14-.42-2.18-1.34-.81-.72-1.36-1.61-1.52-1.88-.16-.27-.02-.42.12-.56.12-.12.27-.32.4-.48.14-.16.18-.27.27-.45.09-.18.05-.34-.02-.48-.07-.14-.61-1.48-.83-2.03-.21-.5-.43-.43-.59-.44h-.5c-.18 0-.48.07-.73.34-.25.27-.96.94-.96 2.29s.99 2.65 1.13 2.83c.14.18 1.94 2.96 4.7 4.15.66.28 1.17.45 1.57.57.66.21 1.25.18 1.72.11.52-.08 1.6-.65 1.83-1.28.23-.63.23-1.17.16-1.28-.07-.11-.25-.18-.52-.32z'/%3E%3Cpath d='M16 3C9.37 3 4 8.37 4 15c0 2.38.7 4.6 1.9 6.46L4.5 27l5.66-1.49A11.94 11.94 0 0 0 16 27c6.63 0 12-5.37 12-12S22.63 3 16 3zm0 21.5c-1.97 0-3.9-.52-5.6-1.5l-.4-.23-3.36.88.9-3.27-.26-.42A9.5 9.5 0 1 1 16 24.5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.cta-primary .btn-icon {
  order: -1;
  margin-right: 6px;
  width: 26px;
  height: 26px;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28' fill='none' stroke='%23ffffff' stroke-width='2.6'%3E%3Cpath d='M18 21l-7-7 7-7'/%3E%3Cpath d='M23 21l-7-7 7-7'/%3E%3C/svg%3E");

  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}

.cta-primary:hover .btn-icon,
.cta-primary:focus-visible .btn-icon {
  transform: translateX(-4px) scale(1.08);
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.34));
}

.hero {
  overflow: hidden;
  padding-top: 42px;
  background:
    radial-gradient(
      circle at 70% 18%,
      rgba(111, 0, 255, 0.15),
      transparent 28%
    ),
    radial-gradient(circle at 18% 15%, rgba(0, 243, 255, 0.08), transparent 26%);
}

.hero::after,
.hero.section::after,
.hero-section::after,
.section.hero::after,
.section:first-child::after {
  display: none !important;
  content: none !important;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 34px;
}

.hero-copy h1 {
  margin: 16px 0 12px;
  font-weight: 600;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  margin: 0;
  font-size: clamp(18px, 2.1vw, 24px);
  color: var(--color-text-muted);
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 0;
}

.metric-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 140px;
  padding: 18px 20px;
  border-radius: 22px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(248, 245, 255, 0.94)
    ),
    #fff;
  border: 1px solid rgba(111, 0, 255, 0.1);
  box-shadow:
    0 12px 28px rgba(44, 17, 99, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  flex: 1 1 0;
}

.metric-container:before {
  content: "";
  position: absolute;
  inset: -20% auto -20% -45%;
  width: 34%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(111, 0, 255, 0.08),
    rgba(0, 243, 255, 0.08),
    rgba(255, 255, 255, 0)
  );
  transform: translateX(-140%) skewX(-18deg);
  animation: trust-chip-glow 7s ease-in-out infinite;
  z-index: 1;
}

.metric-container:nth-child(2):before {
  animation-delay: 1.3s;
}

.metric-container:nth-child(3):before {
  animation-delay: 2.6s;
}

.metric-value {
  display: block;
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 6px 16px rgba(223, 120, 161, 0.18);
}

.metric-value::after {
  content: none;
}

.metric-label {
  display: block;
  font-size: 14px;
  color: var(--color-text-muted);
  position: relative;
  z-index: 2;
  text-align: center;
  font-weight: 500;
}

.hero-visual {
  position: relative;
}

.hero-visual-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 14px;
  border-radius: 32px;
  background:
    radial-gradient(
      circle at 16% 18%,
      rgba(0, 243, 255, 0.18),
      rgba(0, 243, 255, 0)
    ),
    linear-gradient(135deg, #f3f0ff 0%, #f9fbff 46%, #f1f8ff 100%);
  border: 1px solid rgba(111, 0, 255, 0.08);
  box-shadow: var(--shadow-premium);
  overflow: hidden;
  isolation: isolate;
  margin: 0;
}

.hero-visual-frame.single-mockup img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 20px 54px rgba(44, 17, 99, 0.12);
  position: relative;
  z-index: 2;
}

.trust-row {
  z-index: 2;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(246, 244, 255, 0.94)
    ),
    #fff;
  border: 1px solid rgba(111, 0, 255, 0.1);
  box-shadow:
    0 12px 28px rgba(44, 17, 99, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.trust-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(111, 0, 255, 0),
    rgba(0, 243, 255, 0.05)
  );
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(44, 17, 99, 0.12);
  border-color: rgba(111, 0, 255, 0.18);
}

.trust-item:hover::after {
  opacity: 1;
}

.trust-item-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  flex: 0 0 auto;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1),
    rgba(248, 245, 255, 1)
  );
  border: 1px solid rgba(111, 0, 255, 0.12);
  box-shadow:
    0 8px 16px rgba(111, 0, 255, 0.06),
    inset 0 2px 4px rgba(255, 255, 255, 1);
  position: relative;
  display: grid;
  place-items: center;
  color: var(--color-primary-purple);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.trust-item:hover .trust-item-icon {
  transform: scale(1.05) rotate(-3deg);
  box-shadow:
    0 12px 24px rgba(111, 0, 255, 0.12),
    inset 0 2px 4px rgba(255, 255, 255, 1);
  color: var(--color-accent-cyan);
}

.trust-item-icon svg {
  width: 28px;
  height: 28px;
  transition: color var(--transition);
}

.trust-item-body strong {
  display: block;
  font-size: 18px;
  margin-bottom: 2px;
  font-weight: 700;
  color: var(--color-surface-dark);
}

.trust-item-body span {
  display: block;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.4;
}

.logo-wall {
  padding-top: 22px;
}

.logo-wall-surface {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #1b1335 0%, #251744 48%, #321b56 100%);
  box-shadow: var(--shadow-dark);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  z-index: 2;
}

.logo-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 18px auto 0;
  min-height: 48px;
  padding: 0 18px;
  width: fit-content;
}

.logo-load-more .btn-icon {
  order: -1;
  margin-left: 0;
  margin-right: 6px;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28' fill='none' stroke='%23ffffff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 21l-7-7 7-7'/%3E%3Cpath d='M23 21l-7-7 7-7' opacity='0.96'/%3E%3C/svg%3E");
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.22));
  animation: cta-arrow-idle 2.2s ease-in-out infinite;
}

.logo-load-more .btn-text {
  white-space: nowrap;
}

.logo-item {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 104px;
  padding: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-item:before {
  content: "";
  position: absolute;
  inset: auto 12% 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0)
  );
}

.logo-item:nth-last-child(-n + 6):before {
  display: none;
}

.logo-item:nth-child(6n) {
  border-left: 0;
}

.logo-item img {
  max-width: min(72%, 220px);
  max-height: 38px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

.logo-item:hover img {
  transform: translateY(-2px) scale(1.05) !important;
  filter: drop-shadow(0 4px 8px rgba(0, 243, 255, 0.28)) !important;
}

.trust-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0 28px;
}

.trust-stat {
  min-width: 160px;
  padding: 16px 18px;
  border-radius: 22px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94),
      rgba(248, 245, 255, 0.92)
    ),
    rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(111, 0, 255, 0.08);
  box-shadow: 0 14px 34px rgba(44, 17, 99, 0.06);
}

.trust-stat strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  color: var(--color-primary-purple);
  margin-bottom: 7px;
}

.trust-stat span {
  display: block;
  font-size: 14px;
  color: var(--color-text-muted);
}

.cards-grid,
.value-props-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card,
.testimonial-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(111, 0, 255, 0.08);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94),
      rgba(249, 246, 255, 0.9)
    ),
    rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.card {
  padding: 26px 24px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(44, 17, 99, 0.12);
  border-color: rgba(111, 0, 255, 0.18);
}

.card h3 {
  margin: 16px 0 10px;
  font-size: 24px;
  line-height: 1.15;
}

.card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 16px;
}

.portfolio-card {
  border-radius: 24px;
  border: 1px solid rgba(111, 0, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(251, 248, 255, 0.94)
  );
  box-shadow: 0 16px 40px rgba(44, 17, 99, 0.05);
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.6s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(44, 17, 99, 0.15);
  border-color: var(--color-primary-purple);
}

.value-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(111, 0, 255, 0.12), rgba(0, 243, 255, 0.1)),
    rgba(111, 0, 255, 0.08);
  box-shadow: 0 10px 24px rgba(111, 0, 255, 0.08);
  position: relative;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.value-card:hover .value-card-icon {
  transform: scale(1.05) translateY(-2px);
  box-shadow:
    0 14px 32px rgba(111, 0, 255, 0.15),
    inset 0 0 0 1px rgba(0, 243, 255, 0.2),
    0 0 20px rgba(0, 243, 255, 0.15);
}

.value-card-icon svg {
  width: 34px;
  height: 34px;
  color: var(--color-primary-purple);
  overflow: visible;
  transition:
    filter var(--transition),
    color var(--transition),
    transform var(--transition);
  animation: vp-icon-float 6s ease-in-out infinite;
}

.value-card-icon svg [stroke="currentColor"],
.value-card-icon svg [fill="currentColor"] {
  animation: vp-premium-pulse 4s ease-in-out infinite;
  transform-origin: center;
  transition:
    color var(--transition),
    filter var(--transition),
    opacity var(--transition);
}

.value-card-icon svg path[stroke-opacity] {
  animation: vp-path-breathe 4s ease-in-out infinite;
}

.value-card-icon svg g[stroke="currentColor"] {
  animation: vp-soft-rotate 8s ease-in-out infinite;
  transform-origin: center;
}

.value-card-icon svg circle[fill="currentColor"] {
  animation: vp-circle-pulse 3s ease-in-out infinite;
}

.value-card:nth-child(1) .value-card-icon svg,
.value-card:nth-child(1) .value-card-icon svg [stroke="currentColor"],
.value-card:nth-child(1) .value-card-icon svg [fill="currentColor"],
.value-card:nth-child(1) .value-card-icon svg path[stroke-opacity],
.value-card:nth-child(1) .value-card-icon svg g[stroke="currentColor"],
.value-card:nth-child(1) .value-card-icon svg circle[fill="currentColor"] {
  animation-delay: 0s;
}

.value-card:nth-child(2) .value-card-icon svg,
.value-card:nth-child(2) .value-card-icon svg [stroke="currentColor"],
.value-card:nth-child(2) .value-card-icon svg [fill="currentColor"],
.value-card:nth-child(2) .value-card-icon svg path[stroke-opacity],
.value-card:nth-child(2) .value-card-icon svg g[stroke="currentColor"],
.value-card:nth-child(2) .value-card-icon svg circle[fill="currentColor"] {
  animation-delay: -1.5s;
}

.value-card:nth-child(3) .value-card-icon svg,
.value-card:nth-child(3) .value-card-icon svg [stroke="currentColor"],
.value-card:nth-child(3) .value-card-icon svg [fill="currentColor"],
.value-card:nth-child(3) .value-card-icon svg path[stroke-opacity],
.value-card:nth-child(3) .value-card-icon svg g[stroke="currentColor"],
.value-card:nth-child(3) .value-card-icon svg circle[fill="currentColor"] {
  animation-delay: -3s;
}

.value-card:hover .value-card-icon svg {
  transform: scale(1.05);
}

.value-card:hover .value-card-icon svg [stroke="currentColor"],
.value-card:hover .value-card-icon svg [fill="currentColor"] {
  color: var(--color-accent-cyan);
  filter: drop-shadow(0 4px 12px rgba(0, 243, 255, 0.4));
  animation-duration: 2s;
}

.services .reveal {
  transform: translateY(32px) scale(0.96);
  transition:
    opacity 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.services .reveal.is-visible {
  transform: translateY(0) scale(1);
}

.service-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(251, 248, 255, 0.94)
    ),
    #fff;
  border: 1px solid rgba(111, 0, 255, 0.08);
  box-shadow: 0 12px 32px rgba(44, 17, 99, 0.06);
  transition:
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary-purple),
    var(--color-accent-cyan)
  );
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card-featured {
  border-color: rgba(111, 0, 255, 0.2);
  box-shadow:
    0 20px 50px rgba(44, 17, 99, 0.08),
    inset 0 0 0 1px rgba(111, 0, 255, 0.05);
  background: linear-gradient(180deg, #ffffff, #f7f3ff);
}

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

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(44, 17, 99, 0.12);
  border-color: rgba(111, 0, 255, 0.16);
}

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

.service-card-featured:hover {
  box-shadow:
    0 28px 60px rgba(44, 17, 99, 0.15),
    inset 0 0 0 1px rgba(111, 0, 255, 0.08);
}

.service-card h3 {
  margin: 20px 0 12px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-surface-dark);
}

.service-card-featured h3 {
  color: var(--color-primary-purple);
}

.service-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1),
    rgba(248, 245, 255, 1)
  );
  box-shadow:
    0 8px 16px rgba(111, 0, 255, 0.06),
    inset 0 2px 4px rgba(255, 255, 255, 1);
  border: 1px solid rgba(111, 0, 255, 0.12);
  transition:
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.5s ease;
  position: relative;
}

.service-card-featured .service-icon-wrap {
  background: linear-gradient(
    135deg,
    rgba(111, 0, 255, 0.08),
    rgba(0, 243, 255, 0.08)
  );
  border-color: rgba(111, 0, 255, 0.2);
  box-shadow:
    0 12px 24px rgba(111, 0, 255, 0.12),
    inset 0 2px 4px rgba(255, 255, 255, 1);
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.08) translateY(-4px) rotate(-3deg);
  box-shadow:
    0 16px 32px rgba(111, 0, 255, 0.12),
    inset 0 2px 4px rgba(255, 255, 255, 1);
  background: linear-gradient(
    135deg,
    rgba(111, 0, 255, 0.1),
    rgba(0, 243, 255, 0.1)
  );
  border-color: rgba(0, 243, 255, 0.3);
}

.service-icon {
  width: 32px;
  height: 32px;
  color: var(--color-primary-purple);
  filter: drop-shadow(0 4px 10px rgba(111, 0, 255, 0.25));
  transition:
    transform var(--transition),
    filter var(--transition),
    color var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.05);
  color: var(--color-accent-cyan);
  filter: drop-shadow(0 6px 14px rgba(0, 243, 255, 0.35));
}

.tech-system-wrap {
  margin-top: 64px;
  position: relative;
  border-top: 1px solid rgba(111, 0, 255, 0.06);
  padding-top: 48px;
  padding-bottom: 24px;
}

.tech-system-header {
  text-align: center;
  margin-bottom: 28px;
}

.tech-strip-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary-purple);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: rgba(111, 0, 255, 0.06);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(111, 0, 255, 0.08);
  margin-bottom: 12px;
}

.tech-system-microcopy {
  color: var(--color-text-muted);
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.tech-system-track-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  padding: 16px 0;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #fff 10%,
    #fff 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #fff 10%,
    #fff 90%,
    transparent
  );
  direction: ltr; /* Force LTR for smooth consistent marquee translation */
}

.tech-system-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

.tech-track-1 {
  animation: tech-marquee-scroll-left 180s linear infinite;
}

.tech-track-2 {
  animation: tech-marquee-scroll-right 180s linear infinite;
}

.tech-track-1:hover,
.tech-track-2:hover {
  animation-play-state: paused;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(248, 246, 255, 0.8)
  );
  border: 1px solid rgba(111, 0, 255, 0.08);
  box-shadow:
    0 4px 14px rgba(44, 17, 99, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  user-select: none;
}

.tech-item:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(111, 0, 255, 0.2);
  box-shadow:
    0 12px 24px rgba(111, 0, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.tech-icon-box {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tech-brand-color, var(--color-primary-purple));
  transition:
    filter 0.4s ease,
    transform 0.4s ease,
    color 0.4s ease;
}

.tech-item:hover .tech-icon-box {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(111, 0, 255, 0.3));
  color: var(--color-primary-purple);
}

.tech-name {
  font-size: 14px;
  font-weight: 600;
  color: #241d38;
  letter-spacing: 0.01em;
}

@keyframes tech-marquee-scroll-left {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes tech-marquee-scroll-right {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.process-support {
  margin: -8px 0 32px;
  color: var(--color-text-muted);
  font-size: 18px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.process-step {
  position: relative;
  padding: 30px 24px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(111, 0, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(249, 246, 255, 0.94)
  );
  box-shadow: 0 12px 30px rgba(44, 17, 99, 0.04);
  transition:
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.5s ease,
    border-color 0.5s ease;
  z-index: 2;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(44, 17, 99, 0.12);
  border-color: rgba(111, 0, 255, 0.16);
}

.process-step:before {
  display: none;
}

.step-visual {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 24px;
}

.step-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(111, 0, 255, 0.1), rgba(0, 243, 255, 0.08)),
    #fff;
  display: grid;
  place-items: center;
  box-shadow:
    0 10px 24px rgba(111, 0, 255, 0.08),
    inset 0 0 0 1px rgba(111, 0, 255, 0.08);
  position: relative;
  z-index: 2;
  transition:
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.5s ease;
}

.process-step:hover .step-icon-wrap {
  transform: scale(1.08) rotate(-4deg);
  box-shadow:
    0 14px 30px rgba(111, 0, 255, 0.12),
    inset 0 0 0 1px rgba(0, 243, 255, 0.2);
}

.step-icon {
  width: 32px;
  height: 32px;
  color: var(--color-primary-purple);
  filter: drop-shadow(0 4px 10px rgba(111, 0, 255, 0.25));
}

.step-connector {
  position: absolute;
  top: 50%;
  right: 64px;
  width: calc(100% + 20px - 64px);
  height: 24px;
  margin-top: -12px;
  z-index: 1;
  display: flex;
  align-items: center;
  transform-origin: right center;
}

.step-connector svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.connector-line {
  stroke: var(--color-primary-purple);
  stroke-width: 3;
  stroke-dasharray: 6 6;
  stroke-linecap: round;
  opacity: 0.4;
  animation: process-flow 24s linear infinite;
}

.connector-arrow {
  fill: none;
  stroke: var(--color-accent-cyan);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 2px 6px rgba(0, 243, 255, 0.4));
  animation: process-arrow-pulse 3s ease-in-out infinite;
}

@keyframes process-flow {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -200;
  }
}

@keyframes process-arrow-pulse {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.8;
  }
  50% {
    transform: translateX(-4px);
    opacity: 1;
  }
}

.final-step {
  position: relative;
  border-color: rgba(111, 0, 255, 0.15);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(242, 237, 255, 0.94)
  );
  box-shadow: 0 16px 40px rgba(44, 17, 99, 0.08);
}

.final-step::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  background: linear-gradient(
      135deg,
      var(--color-primary-purple),
      var(--color-accent-cyan)
    )
    border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0.4;
  pointer-events: none;
}

.final-glow {
  position: absolute;
  top: 50%;
  right: -8px;
  left: auto;
  width: 80px;
  height: 80px;
  margin: -40px 0 0 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 243, 255, 0.3),
    rgba(111, 0, 255, 0.15),
    transparent 70%
  );
  box-shadow: 0 0 24px rgba(0, 243, 255, 0.2);
  z-index: 1;
  animation: final-step-pulse 4s ease-in-out infinite;
}

@keyframes final-step-pulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.step-index-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary-purple);
  background: rgba(111, 0, 255, 0.06);
  padding: 4px 10px;
  border-radius: 8px;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.final-step .step-index-label {
  background: linear-gradient(
    135deg,
    rgba(111, 0, 255, 0.1),
    rgba(0, 243, 255, 0.15)
  );
  color: var(--color-primary-purple);
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.process-step p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.5;
}

.process-step.reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition:
    opacity 0.85s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.step-connector {
  transform: scaleX(0);
  opacity: 0;
  transition:
    transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 1.2s ease;
  transition-delay: calc(var(--reveal-delay, 0ms) + 400ms);
  will-change: transform, opacity;
}

.process-step.reveal.is-visible .step-connector {
  transform: scaleX(1);
  opacity: 1;
}

/* ==========================================================================
   Carousel Shared
   ========================================================================== */
.portfolio-carousel,
.testimonials-carousel {
  position: relative;
  display: block;
  width: 100%;
}

.carousel-shell {
  display: block;
  position: relative;
  width: 100%;
  opacity: 1 !important;
  transform: none !important;
}

.carousel-viewport {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
  direction: ltr;
}

.carousel-track {
  --carousel-gap: 20px;
  --carousel-items: 3;
  direction: ltr;
  display: flex;
  width: 100%;
  max-width: none;
  gap: var(--carousel-gap);
  padding: 6px 0 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  touch-action: pan-y pinch-zoom;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.carousel-track > * {
  flex: 0 0
    calc(
      (100% - ((var(--carousel-items) - 1) * var(--carousel-gap))) /
        var(--carousel-items)
    );
  width: calc(
    (100% - ((var(--carousel-items) - 1) * var(--carousel-gap))) /
      var(--carousel-items)
  );
  max-width: calc(
    (100% - ((var(--carousel-items) - 1) * var(--carousel-gap))) /
      var(--carousel-items)
  );
  min-width: 0;
  direction: rtl;
}

.carousel-nav-wrap {
  position: absolute;
  top: -64px;
  left: 0;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-nav {
  pointer-events: auto;
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(111, 0, 255, 0.15);
  background: linear-gradient(180deg, #ffffff, #f9f8fc);
  color: var(--color-primary-purple);
  font-size: 28px;
  box-shadow:
    0 10px 24px rgba(44, 17, 99, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    color var(--transition),
    background var(--transition);
  cursor: pointer;
  position: relative;
}

.carousel-nav:hover,
.carousel-nav:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(44, 17, 99, 0.12),
    0 0 15px rgba(0, 243, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(0, 243, 255, 0.4);
  color: var(--color-accent-cyan);
  background: #fff;
  outline: none;
}

.carousel-nav:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(44, 17, 99, 0.08);
}

.carousel-nav img {
  width: 22px;
  height: 22px;
}

.carousel-nav svg {
  width: 24px;
  height: 24px;
  transition:
    filter var(--transition),
    transform var(--transition);
}

/* Continuous Animation Arrows */
.chev-1,
.chev-2,
.chev-3 {
  transition:
    stroke 0.3s,
    filter 0.3s,
    opacity 0.3s,
    animation-duration 0.3s;
  opacity: 0.3;
}

.chev-1 {
  stroke: var(--color-primary-purple);
  animation: neon-flow 2s infinite 0s;
}

.chev-2 {
  stroke: var(--color-accent-cyan);
  animation: neon-flow 2s infinite 0.2s;
}

.chev-3 {
  stroke: var(--color-primary-purple);
  animation: neon-flow 2s infinite 0.4s;
}

@keyframes neon-flow {
  0%,
  100% {
    opacity: 0.2;
    filter: drop-shadow(0 0 0px transparent);
  }
  30% {
    opacity: 1;
    filter: drop-shadow(0 0 4px currentColor);
  }
}

.carousel-nav:hover .chev-1,
.carousel-nav:focus-visible .chev-1 {
  animation-duration: 1s;
  stroke: var(--color-primary-purple);
}

.carousel-nav:hover .chev-2,
.carousel-nav:focus-visible .chev-2 {
  animation-duration: 1s;
  stroke: var(--color-accent-cyan);
}

.carousel-nav:hover .chev-3,
.carousel-nav:focus-visible .chev-3 {
  animation-duration: 1s;
  stroke: var(--color-primary-purple);
}

/* ==========================================================================
   Portfolio & Testimonial Card Shared Overlays
   ========================================================================== */
.portfolio-card-overlay,
.testimonial-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 13, 36, 0.05),
    rgba(18, 13, 36, 0.6)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: background var(--transition);
  z-index: 2;
  pointer-events: none;
}

.portfolio-card:hover .portfolio-card-overlay,
.testimonial-card:hover .testimonial-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(18, 13, 36, 0.15),
    rgba(18, 13, 36, 0.8)
  );
}

@keyframes play-pulse-anim {
  0% {
    box-shadow: 0 0 0 0 rgba(111, 0, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(111, 0, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(111, 0, 255, 0);
  }
}
@keyframes play-pulse-anim-hover {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(0, 243, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 243, 255, 0);
  }
}

.play-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(111, 0, 255, 0.9);
  backdrop-filter: blur(8px);
  color: #fff;
  display: grid;
  place-items: center;
  transform: scale(1);
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition);
  box-shadow: 0 8px 24px rgba(111, 0, 255, 0.5);
  animation: play-pulse-anim 2s infinite;
  pointer-events: auto;
}

.portfolio-card:hover .play-icon,
.testimonial-card:hover .play-icon {
  transform: scale(1.15);
  background: var(--color-accent-cyan);
  color: var(--color-surface-dark);
  box-shadow: 0 12px 32px rgba(0, 243, 255, 0.5);
  animation: play-pulse-anim-hover 2s infinite;
}

.play-icon svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}

/* ==========================================================================
   Portfolio Card specifics
   ========================================================================== */
.portfolio-card-thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #1a1525;
}

.portfolio-card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.portfolio-card:hover .portfolio-card-thumbnail img {
  transform: scale(1.05);
}

.portfolio-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
  padding: 24px;
}

.portfolio-card-meta {
  font-weight: 700;
  color: var(--color-primary-purple);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: -2px;
}

.portfolio-card-body h3 {
  margin: 0;
  font-weight: 700;
  line-height: 1.15;
  color: #1c1c1c;
  font-size: 24px;
}

.portfolio-card-body p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.portfolio-card-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.portfolio-card-stack span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(111, 0, 255, 0.05);
  border: 1px solid rgba(111, 0, 255, 0.1);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-primary-purple);
  letter-spacing: 0.01em;
}

.portfolio-card-cta-wrap {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(111, 0, 255, 0.08);
  display: flex;
  justify-content: flex-end;
}

.portfolio-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(
    135deg,
    var(--color-primary-purple) 0%,
    var(--accent-pink) 56%,
    var(--accent-orange) 100%
  );
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  transition: all var(--transition);
  text-decoration: none;
  box-shadow:
    0 12px 28px rgba(111, 0, 255, 0.2),
    0 0 16px rgba(255, 179, 71, 0.12);
}

.portfolio-card-cta svg {
  width: 18px;
  height: 18px;
  color: #fff;
  transition:
    transform var(--transition),
    filter var(--transition),
    opacity var(--transition);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.22));
  animation: cta-arrow-idle 2.2s ease-in-out infinite;
}

.portfolio-card:hover .portfolio-card-cta svg,
.portfolio-card-cta:focus-visible svg {
  transform: translateX(-4px) scale(1.08);
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.34));
}

/* ==========================================================================
   Testimonial Card specifics
   ========================================================================== */
.testimonial-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.testimonial-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #1a1525;
}

.testimonial-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.testimonial-card:hover .testimonial-card-media img {
  transform: scale(1.05);
}

.testimonial-card-body {
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
  background: #fff;
  position: relative;
  z-index: 2;
  flex-grow: 1;
}

.testimonial-card-body p {
  font-size: 16px;
  color: var(--color-text-dark);
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}

.testimonial-speaker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  overflow: hidden;
  flex: 0 0 54px;
  box-shadow: 0 8px 18px rgba(44, 17, 99, 0.08);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-speaker-meta strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
}

.testimonial-speaker-meta span {
  display: block;
  color: var(--color-text-muted);
  font-size: 14px;
}

.testimonial-card-cta-wrap {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(111, 0, 255, 0.06);
  display: flex;
  justify-content: flex-end;
}

.testimonial-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(
    135deg,
    var(--color-primary-purple) 0%,
    var(--accent-pink) 56%,
    var(--accent-orange) 100%
  );
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  transition: all var(--transition);
  text-decoration: none;
  box-shadow:
    0 12px 28px rgba(111, 0, 255, 0.2),
    0 0 16px rgba(255, 179, 71, 0.12);
}

.testimonial-card-cta svg {
  width: 18px;
  height: 18px;
  color: #fff;
  transition:
    transform var(--transition),
    filter var(--transition),
    opacity var(--transition);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.22));
  animation: cta-arrow-idle 2.2s ease-in-out infinite;
}

.testimonial-card:hover .testimonial-card-cta,
.testimonial-card-cta:focus-visible {
  box-shadow:
    0 16px 34px rgba(111, 0, 255, 0.28),
    0 0 20px rgba(255, 179, 71, 0.16);
}

.testimonial-card:hover .testimonial-card-cta svg,
.testimonial-card-cta:focus-visible svg {
  transform: translateX(-4px) scale(1.08);
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.34));
}

.contact-section,
#contact {
  position: relative;
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.contact-section {
  padding: 76px 0;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 5%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, rgba(111, 0, 255, 0.04), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.contact-section-bg::after {
  content: "";
  position: absolute;
  bottom: -5%;
  right: 5%;
  width: 45vw;
  height: 45vw;
  max-width: 500px;
  max-height: 500px;
  background: radial-gradient(circle, rgba(0, 243, 255, 0.05), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Ensure the decorative background applies properly */
.contact-section > .container {
  position: relative;
  z-index: 2;
}
/* Re-add the decorative element without conflicting with the global section::after */
.contact-section::after {
  /* This overrides the global section::after for contact-section ONLY for the decorative background */
  content: "";
  position: absolute;
  bottom: -5%;
  right: 5%;
  width: 45vw;
  height: 45vw;
  max-width: 500px;
  max-height: 500px;
  background: radial-gradient(circle, rgba(0, 243, 255, 0.05), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  /* Reset the global section::after properties that we don't want here */
  left: auto;
  transform: none;
  opacity: 1;
}

/* Hide the global section line ONLY for contact section */
.contact-section hr,
.contact-section .divider,
.contact-section .section-divider,
.contact-section .section::after {
  display: none !important;
  background: none !important;
}

.contact-section + .site-footer,
.contact-section ~ .site-footer {
  border-top: none !important;
}

.contact-section .section-heading {
  margin-bottom: 0;
}

.contact-copy h2 {
  margin: 14px 0 10px;
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.05;
}

.contact-copy p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 18px;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.contact-copy,
.contact-form-wrap {
  position: relative;
  z-index: 2;
}

.contact-points {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 16px;
}

.contact-points li {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #2a2440;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(111, 0, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(44, 17, 99, 0.02);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    background 0.4s ease;
}

.contact-points li:before {
  display: none;
}

.contact-points li:hover {
  transform: translateX(-6px);
  background: #fff;
  box-shadow: 0 8px 24px rgba(44, 17, 99, 0.06);
}

.contact-point-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-primary-purple),
    var(--color-accent-cyan)
  );
  box-shadow: 0 4px 12px rgba(0, 243, 255, 0.3);
  flex-shrink: 0;
  position: relative;
}

.contact-point-icon::after {
  content: "";
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

.contact-card-note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.contact-form-wrapper-hook {
  position: relative;
  z-index: 2;
}

.contact-form-decoration {
  position: absolute;
  inset: -12px;
  background: linear-gradient(
    135deg,
    rgba(111, 0, 255, 0.3),
    rgba(0, 243, 255, 0.3)
  );
  border-radius: calc(var(--radius-xl) + 12px);
  z-index: -1;
  filter: blur(24px);
  opacity: 0.6;
  animation: form-glow-breathe 4s ease-in-out infinite alternate;
}

@keyframes form-glow-breathe {
  0% {
    opacity: 0.4;
    transform: scale(0.98);
  }
  100% {
    opacity: 0.7;
    transform: scale(1.02);
  }
}

.contact-form-wrap {
  padding: 36px 32px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(111, 0, 255, 0.12);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(249, 246, 255, 0.94)
    ),
    rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-premium);
  position: relative;
}

.contact-form-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1);
  pointer-events: none;
}

.lead-form,
.contact-form {
  padding: 0;
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lead-form label:not(.checkbox-row),
.contact-form label:not(.checkbox-row) {
  display: grid;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #241d38;
}

.lead-form input,
.lead-form select,
.lead-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea,
.popup-form input,
.testimonial-contact-form input,
.portfolio-contact-form input {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(111, 0, 255, 0.12);
  background: #fff;
  color: #1c1c1c;
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  text-align: right;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder,
.popup-form input::placeholder,
.testimonial-contact-form input::placeholder,
.portfolio-contact-form input::placeholder {
  text-align: right;
  direction: rtl;
  unicode-bidi: plaintext;
}

.lead-form textarea,
.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.popup-form input:focus,
.testimonial-contact-form input:focus,
.portfolio-contact-form input:focus {
  border-color: rgba(111, 0, 255, 0.3);
  box-shadow: 0 0 0 4px rgba(111, 0, 255, 0.1);
}

/* Checkbox Row Unified Alignment */
.checkbox-row {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex-wrap: nowrap !important;
  gap: 12px !important;
  font-size: 13px !important;
  color: var(--color-text-muted) !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  margin: 0 0 10px 0 !important;
  cursor: pointer !important;
}

.checkbox-row input[type="checkbox"] {
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
  accent-color: var(--color-primary-purple) !important;
  cursor: pointer !important;
}

.checkbox-row span {
  display: block !important;
  flex: 1 1 auto !important;
  line-height: 1.4 !important;
}

/* Unified inline link style for Privacy Triggers inside text/checkboxes */
.js-toggle-inline-policy,
.js-open-policy,
.js-open-terms,
.sg-cookie-banner-inner p button {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: inline !important;
  background: transparent !important;
  border: none !important;
  color: var(--color-primary-purple) !important;
  font-size: inherit !important;
  font-weight: 700 !important;
  line-height: inherit !important;
  text-decoration: underline !important;
  box-shadow: none !important;
  cursor: pointer !important;
  margin: 0 !important;
  padding: 0 !important;
  outline: none !important;
  transition: color var(--transition) !important;
}

.js-toggle-inline-policy:hover,
.js-open-policy:hover,
.js-open-terms:hover,
.sg-cookie-banner-inner p button:hover {
  color: var(--color-accent-cyan) !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

.sg-cookie-banner {
  max-width: 430px;
  padding: 18px 20px;
  right: 24px;
  bottom: 24px;
}

/* Pill Style specifically for Settings modal trigger in Cookie Banner */
.sg-cookie-actions .js-open-settings-modal {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 28px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  background: linear-gradient(
    135deg,
    rgba(111, 0, 255, 0.06),
    rgba(140, 61, 255, 0.1)
  ) !important;
  border: 1px solid rgba(111, 0, 255, 0.12) !important;
  color: var(--color-primary-purple) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: 0 2px 6px rgba(111, 0, 255, 0.05) !important;
  cursor: pointer !important;
  margin: 0 !important;
  width: auto !important;
  outline: none !important;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition) !important;
}

.sg-cookie-actions .js-open-settings-modal:hover {
  background: linear-gradient(
    135deg,
    rgba(111, 0, 255, 0.1),
    rgba(0, 243, 255, 0.12)
  ) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 10px rgba(111, 0, 255, 0.1) !important;
  color: var(--color-primary-purple) !important;
  border-color: rgba(111, 0, 255, 0.2) !important;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.form-actions.stacked {
  grid-template-columns: 1fr;
  display: grid;
}

.form-microcopy,
.form-feedback {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--color-text-muted);
}

.form-feedback.is-error {
  color: #c31f52;
}

.form-feedback.is-success {
  color: #127a43;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: stretch;
}

.faq-side-content {
  display: flex;
  flex-direction: column;
}

.faq-visual-container {
  flex-grow: 1;
  width: 100%;
  min-height: 320px;
  margin-top: 24px;
  border-radius: var(--radius-xl);
  background-color: rgba(255, 255, 255, 0.9);
  background-image:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(246, 244, 252, 0.6)),
    radial-gradient(
      circle at 10px 10px,
      rgba(111, 0, 255, 0.06) 1.5px,
      transparent 1.5px
    );
  background-size:
    100% 100%,
    20px 20px;
  border: 1px solid rgba(111, 0, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 20px 40px rgba(44, 17, 99, 0.03);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-visual-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(111, 0, 255, 0.06),
    rgba(0, 243, 255, 0.04),
    transparent 60%
  );
  animation: vp-soft-rotate 20s linear infinite;
}

.faq-illustration-wrapper {
  position: relative;
  z-index: 2;
  width: min(100%, 320px);
  height: auto;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8),
    rgba(248, 245, 255, 0.6)
  );
  border: 2px dashed rgba(111, 0, 255, 0.15);
  border-radius: 24px;
  padding: 20px;
  box-shadow: inset 0 0 20px rgba(111, 0, 255, 0.03);
}

.faq-visual-container {
  justify-content: center;
}

.faq-illustration-wrapper {
  margin-left: auto;
  margin-right: auto;
}

.faq-illustration-wrapper::before {
  content: "אפיון ➔ עיצוב ➔ פיתוח ➔ השקה";
  font-weight: 700;
  color: var(--color-primary-purple);
  font-size: 18px;
  opacity: 0.8;
  letter-spacing: 0.05em;
  background: rgba(111, 0, 255, 0.05);
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(111, 0, 255, 0.1);
  margin-bottom: 20px;
}

.faq-illustration-wrapper::after {
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-primary-purple),
    var(--color-accent-cyan)
  );
  opacity: 0.2;
  filter: blur(10px);
  animation: vp-circle-pulse 4s ease-in-out infinite;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(111, 0, 255, 0.08);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94),
      rgba(249, 246, 255, 0.9)
    ),
    rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.faq-item-featured {
  border-color: rgba(111, 0, 255, 0.14);
  box-shadow: 0 20px 44px rgba(44, 17, 99, 0.1);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-size: 20px;
  font-weight: 600;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:after {
  content: "+";
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  line-height: 1;
  color: var(--color-primary-purple);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.faq-item[open] summary:after {
  content: "−";
}

.faq-answer {
  padding: 0 24px 22px;
  color: var(--color-text-muted);
}

.faq-answer p {
  margin: 0;
}

.faq-cta {
  padding: 26px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #120d24 0%, #261349 48%, #361a67 100%);
  color: #fff;
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 14px;
}

.faq-cta p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.faq-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-cta-actions .cta-primary {
  box-shadow:
    0 12px 28px rgba(111, 0, 255, 0.2),
    0 0 16px rgba(255, 179, 71, 0.12);
}

.faq-cta .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 36px;
  border-radius: 36px;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 243, 255, 0.15),
      transparent 40%
    ),
    radial-gradient(circle at 20% 80%, rgba(111, 0, 255, 0.2), transparent 40%),
    linear-gradient(135deg, #120d24 0%, #2a1456 48%, #411c80 100%);
  box-shadow:
    0 32px 80px rgba(13, 8, 24, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.final-cta .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.final-cta-microcopy {
  margin-top: 12px;
  font-size: 15px;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.final-cta-actions .cta-primary {
  box-shadow:
    0 14px 30px rgba(111, 0, 255, 0.2),
    0 0 18px rgba(255, 179, 71, 0.12);
}

.final-cta-actions .cta-primary:hover {
  box-shadow:
    0 18px 36px rgba(111, 0, 255, 0.28),
    0 0 24px rgba(255, 179, 71, 0.16);
}

.final-cta .btn-primary {
  background: linear-gradient(
    135deg,
    var(--color-primary-purple) 0%,
    var(--accent-pink) 56%,
    var(--accent-orange) 100%
  );
  color: #fff;
  box-shadow:
    0 14px 30px rgba(111, 0, 255, 0.2),
    0 0 18px rgba(255, 179, 71, 0.12);
  font-weight: 700;
}

.final-cta .btn-secondary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow:
    0 8px 24px rgba(37, 211, 102, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.final-cta .btn-secondary:hover {
  background: linear-gradient(135deg, #20bd5a, #0f7a6d);
  border-color: transparent;
  box-shadow:
    0 12px 32px rgba(37, 211, 102, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.site-footer {
  padding: 28px 0 40px;
  padding-bottom: max(42px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(111, 0, 255, 0.08);
}

.footer-layout-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-right-col p {
  margin: 0;
  color: var(--color-text-muted);
}

.footer-left-col {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.footer-links a {
  color: #21212c;
}

.footer-copy {
  color: var(--color-text-muted);
  white-space: nowrap;
}

.floating-actions {
  position: fixed;
  left: 18px;
  bottom: max(20px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  z-index: 85;
  pointer-events: none;
}

.floating-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  min-width: 44px;
  width: 44px;
  padding: 0;
  border-radius: 50%;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 10px 26px rgba(18, 13, 36, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  pointer-events: auto;
}

.floating-action:hover,
.floating-action:focus-visible {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 16px 34px rgba(18, 13, 36, 0.24),
    0 0 18px rgba(255, 179, 71, 0.14);
}

.floating-action .action-icon svg {
  transition:
    transform var(--transition),
    filter var(--transition),
    opacity var(--transition);
}

.floating-action:hover .action-icon svg,
.floating-action:focus-visible .action-icon svg {
  transform: scale(1.08);
  filter: drop-shadow(0 0 10px rgba(255, 179, 71, 0.18));
}

@media (hover: hover) {
  .floating-action:hover {
    transform: translateY(-6px) scale(1.12);
    box-shadow: 0 20px 40px rgba(18, 13, 36, 0.45);
    border-color: rgba(255, 255, 255, 0.4);
  }
}

.floating-action:before {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0) 70%
  );
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 1;
}

.floating-action:hover:before {
  opacity: 1;
}

.floating-action .action-icon {
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
  position: relative;
  z-index: 2;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1 !important;
  visibility: visible !important;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.25));
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3))
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.12));
}

.floating-action {
  position: relative;
  overflow: hidden;
}

.floating-action::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.18),
    transparent 62%
  );
  opacity: 0.85;
  pointer-events: none;
}

.floating-action .action-icon,
.floating-action .action-icon img,
.floating-action .action-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.floating-action .action-icon img,
.floating-action .action-icon svg {
  object-fit: contain;
  opacity: 1 !important;
  visibility: visible !important;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.18));
}

.floating-action.whatsapp .action-icon,
.floating-action.email .action-icon,
.floating-action.mobile-phone .action-icon,
.floating-action.top .action-icon {
  animation: floating-icon-idle 2.8s ease-in-out infinite;
}

.floating-action.whatsapp .action-icon {
  animation-delay: 0s;
}
.floating-action.email .action-icon {
  animation-delay: 0.3s;
}
.floating-action.mobile-phone .action-icon {
  animation-delay: 0.6s;
}
.floating-action.top .action-icon {
  animation-delay: 0.9s;
}

.floating-action:hover .action-icon,
.floating-action:focus-visible .action-icon,
.floating-action:active .action-icon {
  animation-play-state: paused;
}

.floating-action:hover .action-icon svg,
.floating-action:hover .action-icon img,
.floating-action:focus-visible .action-icon svg,
.floating-action:focus-visible .action-icon img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.28));
}

.floating-action:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.92);
  outline-offset: 3px;
}

@keyframes floating-icon-idle {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.04);
  }
}

.floating-action .action-icon img,
.floating-action .action-icon svg {
  display: block !important;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-action:hover .action-icon {
  transform: scale(1.15);
}

.floating-action span:not(.action-icon) {
  display: none;
}

.floating-action.whatsapp {
  display: inline-flex !important;
  background: #25d366 !important;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.25) !important;
}

.floating-action.whatsapp:hover {
  background: #20bd5a !important;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35) !important;
}

.floating-action.whatsapp .action-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='%23ffffff'%3E%3Cpath d='M19.11 17.19c-.27-.14-1.6-.79-1.85-.88-.25-.09-.43-.14-.61.14-.18.27-.7.88-.86 1.06-.16.18-.32.2-.59.07-.27-.14-1.14-.42-2.18-1.34-.81-.72-1.36-1.61-1.52-1.88-.16-.27-.02-.42.12-.56.12-.12.27-.32.4-.48.14-.16.18-.27.27-.45.09-.18.05-.34-.02-.48-.07-.14-.61-1.48-.83-2.03-.21-.5-.43-.43-.59-.44h-.5c-.18 0-.48.07-.73.34-.25.27-.96.94-.96 2.29s.99 2.65 1.13 2.83c.14.18 1.94 2.96 4.7 4.15.66.28 1.17.45 1.57.57.66.21 1.25.18 1.72.11.52-.08 1.6-.65 1.83-1.28.23-.63.23-1.17.16-1.28-.07-.11-.25-.18-.52-.32z'/%3E%3Cpath d='M16 3C9.37 3 4 8.37 4 15c0 2.38.7 4.6 1.9 6.46L4.5 27l5.66-1.49A11.94 11.94 0 0 0 16 27c6.63 0 12-5.37 12-12S22.63 3 16 3zm0 21.5c-1.97 0-3.9-.52-5.6-1.5l-.4-.23-3.36.88.9-3.27-.26-.42A9.5 9.5 0 1 1 16 24.5z'/%3E%3C/svg%3E");
}

.floating-action.email {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  box-shadow: 0 10px 24px rgba(111, 0, 255, 0.25);
}

.floating-action.email:hover {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  box-shadow: 0 14px 30px rgba(111, 0, 255, 0.35);
}

.floating-action.email .action-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.floating-action.mobile-phone {
  display: none;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.floating-action.mobile-phone .action-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M20.01 15.38c-1.23 0-2.42-.2-3.53-.56a.977.977 0 0 0-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.11-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z'/%3E%3C/svg%3E");
}

.floating-action.top {
  background: linear-gradient(135deg, #374151, #1f2937);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.floating-action.top .action-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z'/%3E%3C/svg%3E");
}

.floating-action.is-hidden,
.js-back-to-top.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.92);
  visibility: hidden;
}

.floating-action.top {
  position: relative;
  left: auto;
  bottom: auto;
}

.floating-action.top.is-hidden,
.js-back-to-top.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.92);
  visibility: hidden;
}

.floating-action.top:not(.is-hidden),
.js-back-to-top:not(.is-hidden) {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  pointer-events: auto;
}

html:has(.mobile-menu.is-open) .floating-actions {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
}

.floating-action.top:not(.is-hidden),
.js-back-to-top:not(.is-hidden) {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  pointer-events: auto;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: none;
  isolation: isolate;
}

.modal.is-open,
.modal.is-closing {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(13, 10, 20, 0.78);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  opacity: 0;
  transition:
    opacity 0.28s ease,
    backdrop-filter 0.32s ease;
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  margin: 16px auto;
  background: transparent;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 0;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 0.28s ease,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal.is-open .modal-backdrop {
  opacity: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal.is-open .modal-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal.is-closing .modal-backdrop {
  opacity: 0;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
}

.modal.is-closing .modal-dialog {
  opacity: 0;
  transform: translateY(14px) scale(0.985);
}

.modal-body {
  padding: 0;
}

.modal-body .modal-close {
  display: none !important;
}

.modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(31, 18, 58, 0.92), rgba(72, 28, 128, 0.82)),
    rgba(31, 18, 58, 0.92);
  color: #fff;
  font-size: 24px;
  box-shadow: 0 10px 24px rgba(13, 10, 20, 0.2);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 14px 28px rgba(13, 10, 20, 0.28);
  border-color: rgba(255, 255, 255, 0.28);
}

.popup-shell {
  padding: 12px;
}

.popup-box {
  position: relative;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(248, 245, 255, 0.94)
    ),
    #fff;
  border-radius: 30px;
  box-shadow: 0 40px 100px rgba(13, 10, 20, 0.4);
  border: 1px solid rgba(111, 0, 255, 0.1);
  overflow: hidden;
}

.popup-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.popup-side {
  position: relative;
  padding: 40px 34px;
}

.popup-side-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-box h3,
.legal-content h3 {
  margin: 14px 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.popup-copy {
  margin: 0 0 18px;
  color: var(--color-text-muted);
  font-size: 17px;
}

.popup-side-visual {
  min-height: 100%;
  background:
    radial-gradient(
      circle at 24% 18%,
      rgba(0, 243, 255, 0.14),
      rgba(0, 243, 255, 0)
    ),
    linear-gradient(135deg, #120d24 0%, #251448 46%, #38186f 100%);
  overflow: hidden;
}

.popup-visual-surface {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
}

.popup-visual-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.88;
}

.popup-visual-glow-a {
  width: 220px;
  height: 220px;
  top: 34px;
  right: 24px;
  background: radial-gradient(
    circle,
    rgba(0, 243, 255, 0.22),
    rgba(0, 243, 255, 0)
  );
}

.popup-visual-glow-b {
  width: 260px;
  height: 260px;
  left: -40px;
  bottom: -40px;
  background: radial-gradient(
    circle,
    rgba(111, 0, 255, 0.22),
    rgba(111, 0, 255, 0)
  );
}

.popup-visual-card {
  position: absolute;
  border-radius: 22px;
  padding: 18px 18px 16px;
  min-width: 220px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 60px rgba(13, 8, 24, 0.22);
  backdrop-filter: blur(12px);
}

.popup-visual-card span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.74;
  margin-bottom: 8px;
}

.popup-visual-card strong {
  display: block;
  font-size: 22px;
  line-height: 1.22;
}

.popup-visual-card-main {
  top: 88px;
  right: 48px;
}

.popup-visual-card-sub {
  left: 42px;
  bottom: 90px;
}

.legal-content {
  padding: 30px 30px 26px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(249, 246, 255, 0.96)
    ),
    #fff;
  border-radius: 30px;
  border: 1px solid rgba(111, 0, 255, 0.08);
  box-shadow: 0 24px 60px rgba(13, 10, 20, 0.18);
  color: var(--color-text-dark);
}

.legal-content h3 {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--color-text-muted);
}

.legal-scroll-area {
  max-height: 55vh;
  overflow-y: auto;
  padding-right: 16px;
  margin-right: -16px;
  scrollbar-width: thin;
}

.legal-scroll-area::-webkit-scrollbar {
  width: 6px;
}

.legal-scroll-area::-webkit-scrollbar-thumb {
  background: rgba(111, 0, 255, 0.2);
  border-radius: 4px;
}

.privacy-inline-content {
  display: none;
  margin-top: 10px;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
  background: rgba(111, 0, 255, 0.03);
  border: 1px solid rgba(111, 0, 255, 0.08);
  padding: 14px 16px;
  border-radius: 12px;
  max-height: 180px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.privacy-inline-content::-webkit-scrollbar {
  width: 6px;
}
.privacy-inline-content::-webkit-scrollbar-thumb {
  background: rgba(111, 0, 255, 0.2);
  border-radius: 4px;
}

.privacy-inline-content.is-expanded {
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: var(--reveal-delay, 0ms);
}

.portfolio-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.portfolio-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--reveal-delay, 0ms);
}

/* Section Global Dividers */
.section:not(.hero):not(.hero-section):not(.contact-section):not(
    .trust-row
  ):not(.logo-wall)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(800px, 80vw);
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(111, 0, 255, 0) 0%,
    rgba(111, 0, 255, 0.3) 20%,
    rgba(0, 243, 255, 0.3) 80%,
    rgba(111, 0, 255, 0) 100%
  );
  border-radius: 4px;
  pointer-events: none;
  z-index: 10;
  opacity: 1;
}

.trust-row::after,
.logo-wall::after {
  display: none;
}

@keyframes trust-chip-glow {
  0%,
  70%,
  100% {
    transform: translateX(-140%) skewX(-18deg);
  }

  18%,
  52% {
    transform: translateX(420%) skewX(-18deg);
  }
}

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

  50% {
    transform: translateY(-2px);
  }
}

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

@keyframes vp-premium-pulse {
  0%,
  100% {
    filter: drop-shadow(0 2px 6px rgba(111, 0, 255, 0.15));
    color: var(--color-primary-purple);
    transform: translateY(0);
  }
  50% {
    filter: drop-shadow(0 6px 14px rgba(0, 243, 255, 0.35));
    color: var(--color-secondary-purple);
    transform: translateY(-1.5px);
  }
}

@keyframes vp-path-breathe {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes vp-soft-rotate {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(4deg);
  }
}

@keyframes vp-circle-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.6);
    opacity: 1;
  }
}

@keyframes cta-arrow-idle {
  0%,
  100% {
    transform: translateX(0) scale(1);
    opacity: 0.92;
  }
  50% {
    transform: translateX(-3px) scale(1.06);
    opacity: 1;
  }
}

.skip-link {
  position: absolute;
  right: 18px;
  top: -52px;
  z-index: 140;
  padding: 10px 14px;
  border-radius: 14px;
  background: #fff;
  color: var(--color-primary-purple);
  box-shadow: 0 10px 26px rgba(44, 17, 99, 0.12);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 18px;
}

@media (min-width: 961px) {
  .desktop-nav {
    gap: clamp(22px, 1.75vw, 38px);
  }

  .desktop-nav a {
    font-size: clamp(14.5px, 1.02vw, 17px);
    font-weight: 700;
    white-space: nowrap;
  }

  .desktop-nav a + a::before {
    right: clamp(-20px, -0.88vw, -11px);
  }

  .floating-actions {
    gap: 10px;
    left: 16px;
    bottom: 20px;
  }

  .floating-action {
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;

    box-shadow:
      0 6px 16px rgba(18, 13, 36, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .floating-action .action-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 960px) {
  .mobile-menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(8, 6, 18, 0.24);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.24s ease,
      visibility 0.24s ease,
      backdrop-filter 0.24s ease;
    z-index: 250;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
  }

  body.menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .faq-cta {
    padding: 22px 20px;
  }

  .final-cta-inner {
    padding: 28px 22px;
  }

  :root {
    --header-h: 60px;
    --container: min(100vw - 28px, 1180px);
  }

  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .site-header,
  .header-sticky-wrapper,
  .header-inner,
  .mobile-header-actions,
  .mobile-menu,
  .mobile-menu-overlay {
    max-width: 100%;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 210;
    display: block;
    visibility: visible;
    opacity: 1;
  }

  .site-header.is-scrolled {
    --header-h: 56px;
    position: sticky;
    top: 0;
    z-index: 210;
    min-height: 56px;
    display: block;
    visibility: visible;
    opacity: 1;
  }

  .site-header .header-inner,
  .site-header.is-scrolled .header-inner {
    display: flex !important;
    min-height: var(--header-h);
    align-items: center;
    width: 100%;
  }

  .site-header .mobile-header-actions,
  .site-header.is-scrolled .mobile-header-actions {
    display: flex !important;
    min-height: var(--header-h);
    align-items: center;
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-grid,
  .faq-layout,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

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

  .trust-row-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .value-props-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .contact-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    max-width: none;
    margin-inline: 0;
  }

  .contact-copy {
    text-align: right;
    padding-right: 18px;
  }

  .contact-points {
    display: grid;
    align-items: start;
    text-align: right;
  }

  .contact-points li {
    justify-content: flex-start;
    width: 100%;
    max-width: none;
  }

  .contact-form-wrap {
    width: 100%;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 11vw, 58px);
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .desktop-nav {
    display: none;
  }

  .header-inner {
    display: flex !important;
    align-items: center !important;
    position: relative;
    min-height: var(--header-h);
    gap: 0;
    width: 100%;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 56px !important;
    padding: 0 16px !important;
    transition:
      min-height 0.3s ease,
      padding 0.3s ease;
  }

  .header-nav-group,
  .header-cta-group,
  .header-logo-group,
  .header-actions {
    display: none !important;
  }

  .mobile-header-actions {
    display: flex !important;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-inline: 6px;
  }

  .site-header.is-scrolled .mobile-header-actions {
    padding-inline: 0;
  }

  .mobile-header-logo-group {
    display: flex;
    align-items: center;
    z-index: 20;
  }

  .mobile-header-logo-group .brand {
    margin: 0 !important;
  }

  .mobile-header-cta-group {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(111, 0, 255, 0.05);
    border: 1px solid rgba(111, 0, 255, 0.08);
    padding: 4px 8px;
    border-radius: 999px;
    width: auto;
    height: auto;
    transition: all 0.3s ease;
  }

  .site-header.is-scrolled .mobile-header-cta-group {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .mobile-menu-toggle {
    display: flex !important;
    position: relative !important;
    margin: 0 !important;
    z-index: 1200 !important;
    width: 44px;
    height: 44px;
    flex: 0 0 44px !important;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(111, 0, 255, 0.15);
    box-shadow: 0 4px 12px rgba(111, 0, 255, 0.08);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition:
      transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
  }

  .site-header.is-scrolled .mobile-menu-toggle {
    width: 40px;
    height: 40px;
    flex: 0 0 40px !important;
  }

  .mobile-menu-toggle:hover {
    background: rgba(111, 0, 255, 0.04);
    border-color: var(--color-primary-purple);
  }

  .mobile-menu-toggle:active {
    transform: scale(0.92) !important;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-primary-purple);
    margin: 2.5px 0;
    border-radius: 999px;
    transform-origin: center;
    transition:
      transform 0.36s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.24s ease,
      background 0.3s ease,
      width 0.3s ease;
  }

  .mobile-menu-toggle.is-active {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(255, 255, 255, 0.96);
    box-shadow:
      0 10px 24px rgba(18, 13, 36, 0.24),
      0 0 0 1px rgba(111, 0, 255, 0.08);
    backdrop-filter: none;
  }

  .mobile-menu-toggle.is-active span {
    background: var(--color-primary-purple);
  }

  .mobile-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    width: 22px;
  }

  .mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.4);
  }

  .mobile-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 22px;
  }

  .brand-logo {
    width: 92px;
    filter: brightness(0) invert(1);
  }

  .site-header.is-scrolled .brand-logo {
    width: 80px;
    filter: none;
  }

  .brand-plate {
    min-height: 40px;
    padding: 4px 12px;
    background: #6f00ff !important;
    border-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  .site-header.is-scrolled .brand-plate {
    min-height: 38px;
    padding: 4px 12px;
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  .mobile-header-cta-group .cta-email-mobile,
  .mobile-header-cta-group .cta-whatsapp {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    margin: 0 !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition:
      transform 0.28s ease,
      box-shadow 0.28s ease,
      filter 0.28s ease,
      background 0.28s ease !important;
  }

  .mobile-header-cta-group .cta-email-mobile {
    background: linear-gradient(
      135deg,
      var(--color-primary-purple),
      var(--color-secondary-purple)
    ) !important;
    box-shadow: 0 2px 8px rgba(111, 0, 255, 0.2) !important;
    animation: cta-email-breathe 3.2s ease-in-out infinite;
  }

  .mobile-header-cta-group .cta-whatsapp {
    background: #25d366 !important;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2) !important;
    animation: cta-wa-breathe 3.6s ease-in-out infinite 0.6s;
  }

  .mobile-header-cta-group .cta-email-mobile:hover,
  .mobile-header-cta-group .cta-email-mobile:focus-visible,
  .mobile-header-cta-group .cta-whatsapp:hover,
  .mobile-header-cta-group .cta-whatsapp:focus-visible {
    transform: translateY(-2px) scale(1.06) !important;
    box-shadow: 0 10px 22px rgba(17, 17, 17, 0.18) !important;
  }

  .mobile-header-cta-group .cta-email-mobile:hover,
  .mobile-header-cta-group .cta-email-mobile:focus-visible {
    background: linear-gradient(135deg, #7f1fff, #9a5dff) !important;
    filter: brightness(1.04) !important;
  }

  .mobile-header-cta-group .cta-whatsapp:hover,
  .mobile-header-cta-group .cta-whatsapp:focus-visible {
    background: #20bd5a !important;
    filter: brightness(1.02) !important;
  }

  .mobile-header-cta-group .cta-email-mobile:active,
  .mobile-header-cta-group .cta-whatsapp:active {
    transform: scale(0.92) !important;
    box-shadow: 0 4px 10px rgba(17, 17, 17, 0.14) !important;
  }

  .mobile-header-cta-group .cta-email-mobile:active {
    background: linear-gradient(135deg, #5f00db, #7f38f5) !important;
  }

  .mobile-header-cta-group .cta-whatsapp:active {
    background: #179c46 !important;
  }
  @keyframes cta-email-breathe {
    0%,
    100% {
      box-shadow: 0 2px 8px rgba(111, 0, 255, 0.2);
      transform: translateY(0) scale(1);
    }
    50% {
      box-shadow: 0 6px 16px rgba(111, 0, 255, 0.3);
      transform: translateY(-1px) scale(1.03);
    }
  }

  @keyframes cta-wa-breathe {
    0%,
    100% {
      box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
      transform: translateY(0) scale(1);
    }
    50% {
      box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
      transform: translateY(-1px) scale(1.03);
    }
  }

  .mobile-header-cta-group .cta-email-mobile .btn-icon {
    animation: vp-icon-float 3.2s ease-in-out infinite !important;
  }

  .mobile-header-cta-group .cta-whatsapp .btn-icon {
    animation: vp-icon-float 3.6s ease-in-out infinite 0.6s !important;
  }

  .mobile-header-cta-group .btn-text {
    display: none !important;
  }

  .mobile-header-cta-group .btn-icon {
    margin: 0 !important;
    width: 18px !important;
    height: 18px !important;
    transition: transform var(--transition) !important;
  }

  .mobile-header-cta-group .cta-email-mobile .btn-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .mobile-menu {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    right: calc(-1 * min(320px, 86vw));
    height: calc(100dvh - var(--header-h));
    width: min(320px, 86vw);
    max-width: 100vw;
    overflow-x: hidden;
    background:
      radial-gradient(
        circle at top right,
        rgba(140, 61, 255, 0.15),
        transparent 60%
      ),
      radial-gradient(
        circle at bottom left,
        rgba(0, 243, 255, 0.1),
        transparent 60%
      ),
      linear-gradient(145deg, #120d24 0%, #1a0f35 50%, #2a1456 100%);
    backdrop-filter: blur(20px);
    z-index: 900;
    padding: 24px;
    transition:
      right 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.24s ease,
      visibility 0.24s ease,
      box-shadow 0.32s ease,
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    visibility: hidden;
    opacity: 0;
    transform: translateX(12px);
    gap: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    overflow-y: auto;
    direction: rtl;
  }

  html:has(.site-header.is-scrolled) .mobile-menu {
    top: 56px;
    height: calc(100dvh - 56px);
  }

  .mobile-menu.is-open {
    right: 0;
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    box-shadow: -24px 0 72px rgba(13, 8, 24, 0.68);
  }

  .mobile-menu a {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    padding: 16px 24px;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus-visible,
  .mobile-menu a.is-active,
  .mobile-menu a.active,
  .mobile-menu a[aria-current="page"] {
    background: linear-gradient(
      90deg,
      rgba(111, 0, 255, 0.92),
      rgba(0, 243, 255, 0.88)
    );
    border-color: rgba(0, 243, 255, 0.55);
    color: #ffffff;
    transform: translateX(-6px);
    box-shadow:
      0 14px 34px rgba(17, 17, 17, 0.22),
      0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    font-weight: 700;
    text-shadow: none;
  }

  .mobile-menu a::after {
    display: none !important;
  }

  .floating-actions {
    left: 10px;
    bottom: max(12px, env(safe-area-inset-bottom));
    gap: 8px;
    z-index: 180;
    transform: none;
    opacity: 0.96;
  }

  body.menu-open .floating-actions {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px) scale(0.82);
  }

  .floating-actions:hover,
  .floating-actions:focus-within {
    opacity: 1;
    transform: scale(0.84);
  }

  .hero-proof-list {
    gap: 12px;
  }

  .hero-proof-list li {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    justify-content: center;
  }

  .process-step.final-step {
    grid-column: 1 / -1;
    width: min(100%, 520px);
    justify-self: center;
  }

  .process-step .step-connector {
    display: none !important;
  }

  .process-step:before {
    display: none;
  }

  .carousel-nav-wrap {
    top: -64px;
  }

  .carousel-track {
    --carousel-items: 2;
    --carousel-gap: 20px;
  }

  .carousel-nav {
    width: 46px;
    height: 46px;
  }

  .footer-layout-row,
  .footer-left-col {
    align-items: flex-start;
  }

  .site-footer {
    padding-bottom: 110px !important;
  }

  .contact-section .form-actions {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .contact-section .form-actions .btn {
    width: 100% !important;
    min-height: 52px !important;
    height: 52px !important;
    padding: 0 10px !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    margin: 0 !important;
  }

  /* Phase 5 consolidated: contact scroll offsets */
  #contact {
    scroll-margin-top: 108px;
  }

  #contact-form {
    scroll-margin-top: 220px;
  }

  /* Phase 5 consolidated: FAQ responsive layout */
  .faq-layout {
    display: flex;
    flex-direction: column;
  }

  .faq-side-content {
    display: contents;
  }

  .faq-list,
  .faq-cta {
    order: 1;
  }

  .faq-visual-container {
    display: flex;
    order: 2;
    margin-top: 18px;
    min-height: 320px;
    padding: 18px;
    align-items: center;
    justify-content: center;
    background:
      radial-gradient(
        circle at 50% 50%,
        rgba(111, 0, 255, 0.08),
        transparent 58%
      ),
      linear-gradient(
        135deg,
        rgba(111, 0, 255, 0.035),
        rgba(0, 243, 255, 0.035)
      );
  }

  .faq-illustration-wrapper {
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .floating-action {
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0 !important;
  }
}

@media (max-width: 720px) {
  .carousel-track {
    --carousel-items: 1;
    --carousel-gap: 0px;
  }

  :root {
    --container: min(100vw - 24px, 1180px);
  }

  .section {
    padding: 56px 0;
  }

  .section.compact {
    padding: 20px 0 10px;
  }

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

  .section-heading h2 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.12;
  }

  .section-heading p,
  .contact-copy p,
  .process-support,
  .tech-system-microcopy {
    font-size: 16px;
  }

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

  .mobile-menu {
    padding: 20px !important;
  }

  .mobile-menu a {
    padding: 16px 20px;
  }

  .btn {
    min-height: 50px;
    padding: 0 20px;
  }

  .btn-small {
    min-height: 42px;
    padding: 0 14px;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-grid {
    gap: 20px;
  }

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

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    white-space: nowrap;
  }

  .hero-proof-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
  }

  .hero-proof-list .metric-container:nth-child(3),
  .hero-proof-list li:nth-child(3) {
    grid-column: 1 / -1;
  }

  .hero-proof-list li {
    padding: 14px 16px;
  }

  .hero-visual-frame {
    padding: 10px;
    max-height: 320px;
  }

  .hero-visual-frame.single-mockup img {
    max-height: 300px;
    object-fit: cover;
    object-position: center top;
  }

  .services-grid,
  .cards-grid,
  .value-props-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .process-step.final-step {
    grid-column: 1 / -1;
    width: min(100%, 520px);
    justify-self: center;
  }

  .trust-row-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .trust-item {
    padding: 16px 16px 15px;
    border-radius: 22px;
  }

  .trust-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .service-card,
  .value-card,
  .process-step,
  .contact-form-wrap,
  .faq-item,
  .portfolio-card,
  .testimonial-card,
  .faq-cta,
  .final-cta-inner,
  .legal-content {
    border-radius: 24px;
  }

  .service-card,
  .value-card,
  .process-step,
  .portfolio-card-body,
  .testimonial-card-body,
  .faq-cta,
  .final-cta-inner,
  .legal-content {
    padding: 20px;
  }

  .portfolio-card-body h3 {
    font-size: 26px;
  }

  .portfolio-card-body p,
  .testimonial-card-body p {
    font-size: 16px;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
    margin-inline: auto;
  }

  .contact-form-wrap {
    order: 1;
  }

  .contact-copy {
    text-align: center;
    padding-right: 0;
  }

  .contact-points {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-points li {
    justify-content: center;
  }

  .contact-form-wrap {
    padding: 22px 18px;
  }

  .lead-form,
  .contact-form {
    padding: 0;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 52px;
    padding: 13px 15px;
    border-radius: 16px;
  }

  .faq-item summary {
    padding: 18px 20px 18px 56px;
    font-size: 18px;
  }

  .faq-item summary:after {
    left: 20px;
  }

  .faq-answer {
    padding: 0 20px 18px;
  }

  .carousel-nav-wrap {
    position: static;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin: 0 0 18px;
    padding-inline: 4px;
  }

  .carousel-nav {
    display: inline-grid;
    width: 42px;
    height: 42px;
  }

  .floating-actions {
    left: 12px;
    bottom: 20px;
    gap: 10px;
  }

  .floating-action {
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    box-shadow: 0 4px 14px rgba(18, 13, 36, 0.25);
  }

  .floating-action .action-icon {
    width: 20px;
    height: 20px;
    opacity: 1 !important;
    visibility: visible !important;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.25));
  }

  .modal-dialog {
    width: min(900px, calc(100vw - 16px));
    max-height: calc(100vh - 16px);
    margin: 8px auto;
  }

  .popup-shell {
    padding: 8px;
  }

  .popup-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .popup-side {
    padding: 26px 18px;
  }

  .popup-side-visual {
    display: none;
  }

  .popup-box {
    border-radius: 24px;
  }

  .modal-close {
    top: 12px;
    left: 12px;
    width: 42px;
    height: 42px;
  }

  .footer-copy {
    white-space: normal;
  }

  .modal-dialog:has(.sg-privacy-modal) > .modal-close,
  .modal-dialog:has(.sg-settings-modal) > .modal-close {
    left: 16px;
    top: 16px;
  }
}

@media (min-width: 720px) and (max-width: 1180px) {
  .carousel-track {
    --carousel-items: 2;
    --carousel-gap: 20px;
  }
}

@media (max-width: 640px) {
  html {
    overflow-x: clip;
  }

  body {
    overflow-x: clip;
  }

  .section {
    padding: 48px 0;
  }

  .hero-copy h1 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .hero-subtitle {
    font-size: 17px;
  }

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

  .hero-proof-list strong {
    font-size: 22px;
  }

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

  .trust-item-body strong {
    font-size: 17px;
  }

  .service-card h3,
  .value-card h3,
  .process-step h3,
  .portfolio-card-body h3,
  .testimonial-popup-title,
  .portfolio-popup-title {
    font-size: 22px;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(26px, 9vw, 34px);
  }

  .header-inner {
    gap: 0;
  }

  .mobile-menu a {
    border-radius: 12px;
  }

  .final-cta-actions,
  .faq-cta-actions,
  .form-actions:not(.contact-section .form-actions) {
    display: grid;
    grid-template-columns: 1fr;
  }

  .final-cta-actions .btn,
  .faq-cta-actions .btn,
  .form-actions:not(.contact-section .form-actions) .btn {
    width: 100%;
  }

  .floating-action.mobile-phone {
    display: inline-flex;
  }

  .floating-action.email span,
  .floating-action.whatsapp span,
  .floating-action.mobile-phone span,
  .floating-action.top span {
    display: none;
  }

  .floating-actions {
    left: 12px;
    bottom: 16px;
  }

  .testimonial-speaker {
    align-items: flex-start;
  }

  .testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .popup-copy {
    font-size: 16px;
  }

  .tech-system-track {
    gap: 14px;
  }

  .tech-item {
    padding: 10px 16px;
  }

  .legal-content {
    padding: 20px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal,
  .portfolio-reveal,
  .logo-item.reveal,
  .service-card.reveal,
  .process-step.reveal,
  .tech-system-wrap.reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .step-connector {
    opacity: 1 !important;
    transform: scaleX(1) !important;
  }
}

/* ==========================================================================
   Popup Common UI Shared
   ========================================================================== */
.testimonial-popup-shell,
.portfolio-popup-shell {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  transition:
    opacity 0.32s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-popup-shell.is-active,
.portfolio-popup-shell.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.testimonial-popup-dialog,
.portfolio-popup-dialog {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  max-width: 1180px;
  box-shadow: 0 40px 100px rgba(13, 10, 20, 0.4);
  position: relative;
  border: 1px solid rgba(111, 0, 255, 0.1);
}

.testimonial-popup-layout,
.portfolio-popup-layout {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .testimonial-popup-layout {
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 520px;
  }

  .portfolio-popup-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .testimonial-popup-video-frame {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
  }

  .portfolio-popup-video-frame {
    position: relative;
    aspect-ratio: 21 / 9;
  }

  .testimonial-popup-content-area {
    padding: 32px 36px;
  }

  .portfolio-popup-content-area {
    padding: 24px 36px;
  }

  .portfolio-contact-form .form-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-popup-video-area,
.portfolio-popup-video-area {
  position: relative;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.testimonial-popup-video-frame,
.portfolio-popup-video-frame {
  width: 100%;
  height: 100%;
  position: relative;
  aspect-ratio: 16 / 9;
}

.testimonial-popup-video-frame video,
.portfolio-popup-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.unmute-btn {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(18, 13, 36, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.85);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 20;
  pointer-events: auto;
}

.unmute-btn.is-unmuted {
  background: var(--color-primary-purple);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  box-shadow: 0 8px 24px rgba(111, 0, 255, 0.5);
}

.unmute-btn:hover {
  background: rgba(18, 13, 36, 0.9);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  transform: scale(1.1);
}

.unmute-btn.is-unmuted:hover {
  background: var(--color-accent-cyan);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--color-surface-dark);
}

.unmute-btn svg {
  width: 24px;
  height: 24px;
}

.testimonial-popup-content-area,
.portfolio-popup-content-area {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff, #fcfaff);
}

.testimonial-popup-header,
.portfolio-popup-header {
  margin-bottom: 24px;
}

.portfolio-popup-header {
  margin-bottom: 16px;
}

.testimonial-popup-title,
.portfolio-popup-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 6px;
  line-height: 1.1;
}

.testimonial-popup-business,
.portfolio-popup-business-exp {
  font-size: 16px;
  color: var(--color-primary-purple);
  font-weight: 600;
  margin-bottom: 16px;
}

.portfolio-popup-business-exp {
  margin-bottom: 12px;
}

.testimonial-popup-quote {
  font-size: 18px;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.5;
  position: relative;
  padding-right: 20px;
  border-right: 3px solid rgba(252, 122, 165, 0.6);
}

.portfolio-popup-tech-exp {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.testimonial-popup-cta-zone,
.portfolio-popup-cta-zone {
  margin-top: auto;
  border-top: 1px solid rgba(111, 0, 255, 0.08);
  padding-top: 24px;
}

.portfolio-popup-cta-zone {
  padding-top: 16px;
}

.testimonial-contact-form,
.portfolio-contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.portfolio-contact-form {
  gap: 12px;
}

.testimonial-contact-form .form-row,
.portfolio-contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 576px) {
  .testimonial-contact-form .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial-contact-form .form-actions,
.portfolio-contact-form .form-actions {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 14px !important;
  align-items: stretch !important;
}

.testimonial-contact-form .btn,
.portfolio-contact-form .btn {
  height: 52px !important;
  min-height: 52px !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  border-radius: 14px;
  padding: 0 12px;
  text-align: center;
  line-height: 1;
  font-weight: 700;
  font-size: clamp(12px, 1vw, 15px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  white-space: nowrap;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.testimonial-contact-form .btn .btn-text,
.portfolio-contact-form .btn .btn-text {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  line-height: 1;
}

.testimonial-contact-form .btn-submit,
.portfolio-contact-form .btn-submit {
  background: linear-gradient(
    135deg,
    var(--color-primary-purple),
    var(--accent-pink)
  );
  color: #fff;
  box-shadow: 0 10px 24px rgba(111, 0, 255, 0.2);
}

.testimonial-contact-form .btn-submit:hover,
.portfolio-contact-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(111, 0, 255, 0.25);
}

.testimonial-contact-form .popup-whatsapp-cta,
.portfolio-contact-form .popup-whatsapp-cta {
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.18);
}

.testimonial-contact-form .popup-whatsapp-cta:hover,
.portfolio-contact-form .popup-whatsapp-cta:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.25);
}

.testimonial-contact-form .popup-phone-cta,
.portfolio-contact-form .popup-phone-cta {
  display: none;
  background: linear-gradient(135deg, #f2a65a 0%, var(--accent-orange) 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 26px rgba(255, 179, 71, 0.22);
  font-weight: 700;
}

.testimonial-contact-form .popup-phone-cta:hover,
.testimonial-contact-form .popup-phone-cta:focus-visible,
.portfolio-contact-form .popup-phone-cta:hover,
.portfolio-contact-form .popup-phone-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 179, 71, 0.28);
}

@media (max-width: 768px) {
  .testimonial-popup-dialog,
  .portfolio-popup-dialog {
    border-radius: 16px;
  }

  .testimonial-contact-form .form-actions,
  .portfolio-contact-form .form-actions {
    grid-template-columns: 1fr 1fr !important;
  }

  .testimonial-contact-form .btn-submit,
  .portfolio-contact-form .btn-submit {
    grid-column: 1 / -1;
  }

  .testimonial-contact-form .popup-phone-cta,
  .portfolio-contact-form .popup-phone-cta {
    display: inline-flex;
  }
}

/* ==========================================================================
   Cookie Banner & GDPR Settings
   ========================================================================== */
.sg-cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: calc(100% - 48px);
  max-width: 360px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(249, 246, 255, 0.96)
    ),
    #fff;
  border: 1px solid rgba(111, 0, 255, 0.12);
  border-radius: 20px;
  box-shadow:
    0 16px 40px rgba(42, 11, 108, 0.12),
    0 0 0 1px rgba(255, 255, 255, 1) inset;
  padding: 22px 20px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition:
    opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  backdrop-filter: blur(12px);
}
.sg-cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.sg-cookie-banner-inner h4 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: #120d24;
  letter-spacing: -0.01em;
}
.sg-cookie-banner-inner p {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.sg-cookie-actions {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 12px;
  align-items: stretch;
  margin-top: 16px;
}
.sg-cookie-actions .btn {
  flex: 1 1 0;
  min-width: 0;
  justify-content: center;
  min-height: 44px;
  padding: 0 10px;
  font-size: 13px;
  border-radius: 999px !important;
  white-space: nowrap;
}
.sg-cookie-actions .btn-secondary {
  background: #fff !important;
  color: var(--color-primary-purple) !important;
  border: 1px solid rgba(111, 0, 255, 0.18) !important;
  box-shadow: 0 4px 10px rgba(111, 0, 255, 0.05) !important;
}
.sg-cookie-actions .btn-secondary:hover {
  border-color: var(--color-primary-purple) !important;
  box-shadow: 0 6px 14px rgba(111, 0, 255, 0.1) !important;
  transform: translateY(-1px);
}
.sg-cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sg-cookie-toggles label {
  display: flex !important;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(111, 0, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-size: 15px;
  color: var(--color-text-dark);
  font-weight: 500 !important;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}
.sg-cookie-toggles label:hover {
  background: #fff;
  border-color: rgba(111, 0, 255, 0.16);
}
.sg-cookie-toggles label input {
  width: 20px !important;
  height: 20px !important;
  min-height: 20px !important;
  margin: 0 !important;
  accent-color: var(--color-primary-purple);
  cursor: pointer;
}

/* Fix modal close button positioning for legal modals */
.popup-box,
.legal-content {
  position: relative;
}

.modal-dialog:has(.sg-privacy-modal) > .modal-close {
  left: max(16px, calc(50% - 360px + 20px));
  top: 24px;
  z-index: 10;
}

.modal-dialog:has(.sg-settings-modal) > .modal-close {
  left: max(16px, calc(50% - 300px + 20px));
  top: 24px;
  z-index: 10;
}

.legal-content .modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
}

#contact {
  scroll-margin-top: 96px;
}

#contact-form {
  scroll-margin-top: 160px;
}

@media (max-width: 680px) {
  #contact {
    scroll-margin-top: 120px;
  }

  #contact-form {
    scroll-margin-top: 280px;
  }
}

.mobile-header-cta-group a:active {
  transform: scale(0.88);
  transition: transform 0.08s ease;
}

.mobile-header-cta-group .cta-email-mobile:active {
  background: linear-gradient(135deg, #4c00c9, #6f2cff);
}

.mobile-header-cta-group .cta-whatsapp:active {
  background: #128c3e;
}

/* HEADER SINGLE SOURCE OF TRUTH */

@media (min-width: 961px) and (max-width: 1180px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  body {
    padding-top: 84px;
  }

  .site-header,
  .site-header.is-scrolled {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 320;
    display: block;
    visibility: visible;
    opacity: 1;
  }

  .header-sticky-wrapper {
    display: block;
    width: 100%;
  }

  .site-header .header-inner,
  .site-header.is-scrolled .header-inner {
    display: grid;
    grid-template-columns: minmax(230px, 310px) minmax(360px, 1fr) minmax(
        230px,
        310px
      );
    align-items: center;
    gap: 10px;
    min-height: 76px;
    height: 76px;
    width: min(100%, 1500px);
    padding: 0 clamp(8px, 1vw, 16px);
  }

  .header-logo-group {
    justify-self: end !important;
    margin-inline-end: 0 !important;
    transform: translateX(10px);
  }

  .header-nav-group {
    justify-self: center !important;
    width: 100% !important;
  }

  .header-cta-group,
  .header-actions {
    justify-self: start !important;
    margin-inline-start: 0 !important;
    transform: translateX(-10px);
  }

  .desktop-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: center !important;
    gap: clamp(18px, 1.45vw, 26px) !important;
    white-space: nowrap !important;
    width: 100% !important;
  }

  .desktop-nav a {
    font-size: clamp(14px, 1.12vw, 15.5px) !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    position: relative !important;
    white-space: nowrap !important;
  }

  .desktop-nav a + a::before {
    content: "";
    position: absolute;
    right: -13px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(
      135deg,
      var(--color-primary-purple),
      var(--color-accent-cyan)
    );
    transform: translateY(-50%) scale(0.9);
    opacity: 0.85;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.28);
    animation: nav-separator-pulse 2.8s ease-in-out infinite;
    pointer-events: none;
  }

  .site-header.is-scrolled .desktop-nav a + a::before {
    background: linear-gradient(135deg, #ffffff, var(--color-accent-cyan));
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
  }

  .header-nav-group,
  .header-cta-group,
  .header-logo-group,
  .header-actions {
    display: flex !important;
    align-items: center !important;
  }

  .mobile-header-actions,
  .mobile-menu,
  .mobile-menu-overlay,
  .mobile-menu-toggle {
    display: none !important;
  }

  .header-actions {
    gap: 8px !important;
  }

  .header-actions .btn {
    min-height: 42px !important;
    padding-inline: 14px !important;
    font-size: 14px !important;
    white-space: nowrap !important;
  }

  .brand-logo {
    width: 132px !important;
  }

  .brand-plate {
    min-height: 44px !important;
    padding: 4px 12px !important;
  }
}

@media (min-width: 961px) and (max-width: 1034px) {
  .site-header .header-inner,
  .site-header.is-scrolled .header-inner {
    grid-template-columns: minmax(220px, 285px) minmax(340px, 1fr) minmax(
        220px,
        285px
      );
  }

  .desktop-nav {
    gap: clamp(14px, 1.25vw, 20px) !important;
  }

  .desktop-nav a {
    font-size: 13.5px !important;
    font-weight: 600 !important;
  }

  .header-actions .btn {
    padding-inline: 12px !important;
    font-size: 13px !important;
  }
}

@media (min-width: 1035px) and (max-width: 1180px) {
  .site-header .header-inner,
  .site-header.is-scrolled .header-inner {
    grid-template-columns: minmax(230px, 310px) minmax(360px, 1fr) minmax(
        230px,
        310px
      );
  }

  .desktop-nav {
    gap: clamp(18px, 1.45vw, 26px) !important;
  }

  .desktop-nav a {
    font-size: 14.5px !important;
    font-weight: 600 !important;
  }
}

@media (min-width: 1181px) {
  .desktop-nav {
    gap: clamp(22px, 1.75vw, 38px) !important;
  }

  .desktop-nav a {
    font-size: clamp(15px, 1.02vw, 17px) !important;
    font-weight: 700 !important;
  }
}

@keyframes nav-separator-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(-50%) scale(0.78);
  }

  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

@media (max-width: 960px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  body {
    padding-top: var(--header-h);
  }

  .site-header,
  .site-header.is-scrolled {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 320;
    display: block;
    visibility: visible;
    opacity: 1;
  }

  .header-sticky-wrapper {
    display: block;
    width: 100%;
    height: var(--header-h);
  }

  .site-header .header-inner,
  .site-header.is-scrolled .header-inner,
  .site-header .container.header-inner,
  .site-header.is-scrolled .container.header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: var(--header-h) !important;
    height: auto !important;
    width: 100% !important;
    padding: 0 16px !important;
    gap: 0 !important;
  }

  .desktop-nav,
  .header-nav-group,
  .header-cta-group,
  .header-logo-group,
  .header-actions {
    display: none !important;
  }

  .mobile-header-actions,
  .site-header .mobile-header-actions,
  .site-header.is-scrolled .mobile-header-actions {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    min-height: var(--header-h) !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
    padding-inline: 6px !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .hero-visual-frame {
    max-height: clamp(260px, 44vw, 420px);
    overflow: hidden;
  }

  .hero-visual-frame img,
  .hero-visual-frame.single-mockup img {
    width: 100%;
    max-height: clamp(240px, 42vw, 390px);
    object-fit: contain;
    object-position: center;
  }

  .floating-action .action-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
  }
}

@media (max-width: 480px) {
  .logo-load-more {
    width: fit-content;
    max-width: 100%;
  }

  .hero-proof-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-top: 14px !important;
  }

  .hero-proof-list .metric-container:nth-child(3) {
    grid-column: 1 / -1;
  }

  .metric-container {
    min-width: 0 !important;
    padding: 12px 10px !important;
    border-radius: 18px !important;
  }

  .metric-container strong {
    font-size: clamp(20px, 6vw, 25px) !important;
    line-height: 1 !important;
  }

  .metric-container span {
    font-size: 12px !important;
    line-height: 1.25 !important;
  }

  .hero-visual {
    margin-top: 8px;
  }

  .hero-visual-frame {
    padding: 8px;
    max-height: 240px;
    overflow: hidden;
  }

  .hero-visual-frame.single-mockup img {
    max-height: 220px;
    object-fit: contain;
    object-position: center;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding-inline: 10px;
    font-size: clamp(12px, 3vw, 14px);
    white-space: nowrap;
  }

  .portfolio-card-cta-wrap,
  .testimonial-card-cta-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .portfolio-card-cta,
  .testimonial-card-cta {
    margin-inline: auto;
  }

  .carousel-track {
    --carousel-items: 1;
    --carousel-gap: 0px;
    gap: var(--carousel-gap);
    padding-left: 0;
    padding-right: 0;
  }

  .faq-cta-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .faq-cta-actions .btn {
    min-height: 46px;
    padding-inline: 12px;
  }

  .faq-cta-actions .btn .btn-text {
    font-size: 13px;
  }

  .faq-visual-container {
    min-height: 260px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .faq-illustration-wrapper {
    width: min(100%, 260px);
    min-height: 190px;
    margin-inline: auto;
  }

  .trust-row-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px;
  }

  .final-cta-inner {
    padding: 22px 18px;
    gap: 18px;
  }

  .final-cta-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    width: 100%;
  }

  .final-cta-actions .btn {
    min-height: 46px;
    width: 100%;
    padding-inline: 12px;
  }

  .final-cta-actions .btn .btn-text {
    font-size: 13px;
  }

  .mobile-menu,
  .mobile-menu-overlay {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .mobile-menu {
    z-index: 9999 !important;
  }

  .mobile-menu-toggle,
  .mobile-menu .menu-close {
    position: relative !important;
    z-index: 10000 !important;
  }

  .mobile-menu-toggle.is-active {
    background: #fff !important;
    border-color: #fff !important;
    opacity: 1 !important;
  }

  .mobile-menu-toggle.is-active span {
    background: var(--color-primary-purple) !important;
  }

  .floating-actions {
    position: fixed !important;
    left: max(5px, env(safe-area-inset-left)) !important;
    bottom: max(5px, env(safe-area-inset-bottom)) !important;
    z-index: 360 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    min-height: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none !important;
    transform: none !important;
    transition:
      opacity var(--transition),
      transform var(--transition),
      visibility var(--transition);
  }

  .floating-action {
    width: clamp(36px, 10.5vw, 44px) !important;
    min-width: clamp(36px, 10.5vw, 44px) !important;
    height: clamp(36px, 10.5vw, 44px) !important;
    min-height: clamp(36px, 10.5vw, 44px) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    pointer-events: auto !important;
  }

  .floating-action .action-icon {
    width: clamp(18px, 5.4vw, 23px) !important;
    height: clamp(18px, 5.4vw, 23px) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    flex: 0 0 auto !important;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.22)) !important;
  }

  .floating-action .action-icon svg,
  .floating-action .action-icon img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .floating-action span:not(.action-icon) {
    display: none !important;
  }

  .floating-action.mobile-phone {
    display: inline-flex !important;
  }

  .floating-action.top,
  .js-back-to-top {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    max-height: 56px !important;
    margin-top: 0 !important;
    transition:
      opacity var(--transition),
      transform var(--transition),
      max-height var(--transition),
      margin-top var(--transition),
      visibility var(--transition);
  }

  .floating-action.top.is-hidden,
  .js-back-to-top.is-hidden {
    max-height: 0 !important;
    min-height: 0 !important;
    height: 0 !important;
    margin-top: -10px !important;
    padding: 0 !important;
    border-width: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(14px) scale(0.9) !important;
  }

  .floating-action.top:not(.is-hidden),
  .js-back-to-top:not(.is-hidden) {
    max-height: 56px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
  }

  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

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

  .hero {
    padding-top: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(27px, 8.2vw, 34px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-top: 12px;
    margin-bottom: 10px;
  }

  .trust-item {
    gap: 10px;
  }

  .trust-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

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

  .trust-item-body strong {
    font-size: clamp(16px, 4.4vw, 18px);
    line-height: 1.12;
  }

  .trust-item-body span {
    font-size: clamp(13px, 3.7vw, 14px);
    line-height: 1.32;
  }

  .hero-subtitle {
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.45;
  }

  .hero-proof-list li,
  .trust-item,
  .service-card,
  .value-card,
  .process-step,
  .contact-form-wrap,
  .faq-item,
  .faq-cta,
  .final-cta-inner,
  .portfolio-card-body,
  .testimonial-card-body {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-proof-list li {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .portfolio-card-body,
  .testimonial-card-body {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .contact-section .form-actions {
    gap: 8px !important;
  }

  .contact-section .form-actions .btn {
    font-size: 13px !important;
    padding: 0 6px !important;
  }

  .trust-item,
  .service-card,
  .value-card,
  .process-step,
  .faq-item {
    padding: 16px !important;
    border-radius: 20px !important;
  }

  .trust-item-icon,
  .service-card-icon,
  .value-card-icon,
  .process-step-icon {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
  }

  .section-heading h2,
  .section-title,
  .section h2 {
    font-size: clamp(26px, 7.4vw, 34px);
    line-height: 1.1;
  }

  .section-heading p,
  .section-lead,
  .section-subtitle {
    font-size: 14px;
    line-height: 1.45;
  }

  .scroll-progress {
    height: 3px;
  }

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

  .logo-item {
    min-height: 88px;
  }

  .logo-item:nth-child(2n) {
    border-left: 0;
  }

  .logo-item:nth-last-child(-n + 2):before {
    display: none;
  }

  .testimonial-contact-form .btn,
  .portfolio-contact-form .btn {
    min-height: 48px !important;
    height: 48px !important;
    border-radius: 12px;
    font-size: 14px;
  }

  .sg-cookie-banner {
    bottom: 12px;
    right: 12px;
    left: 12px;
    width: auto;
    padding: 16px 14px;
    max-width: none;
  }

  .sg-cookie-actions {
    flex-direction: column;
  }

  .sg-cookie-actions .btn {
    width: 100%;
    flex: 1 1 auto;
  }

  html {
    scroll-padding-top: 94px;
  }

  #contact {
    scroll-margin-top: 108px;
  }

  #contact-form {
    scroll-margin-top: 132px;
  }

  #portfolio,
  #testimonials,
  #faq,
  #services,
  #process {
    scroll-margin-top: 108px;
  }

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

  .step-visual {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
  }

  .step-connector {
    display: flex !important;
    position: relative;
    top: auto;
    right: auto;
    width: 28px;
    height: 44px;
    margin: 0 auto;
    transform-origin: center top;
    transform: none;
    justify-content: center;
  }

  .step-connector svg {
    width: 28px;
    height: 44px;
    transform: rotate(-90deg);
    transform-origin: center;
    display: block;
  }

  .process-step:last-child .step-connector,
  .final-step .step-connector {
    display: none !important;
  }

  .carousel-nav {
    display: inline-grid !important;
  }

  .portfolio-card-thumbnail,
  .testimonial-card-media {
    aspect-ratio: 16 / 9;
  }

  .portfolio-card-body,
  .testimonial-card-body {
    padding: 16px;
  }

  .portfolio-card-body h3 {
    font-size: 22px;
  }

  .portfolio-card-cta {
    margin-inline: auto;
  }

  .testimonial-card-cta {
    margin-inline: auto;
  }

  .testimonial-card-body p {
    font-size: 15px;
  }

  .site-footer {
    padding: 28px 0 40px;
    padding-bottom: max(42px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(111, 0, 255, 0.08);
  }

  .footer-layout-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-left-col {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .footer-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .footer-right-col p,
  .footer-copy {
    text-align: center;
  }
}

@media (min-width: 430px) and (max-width: 480px) {
  .hero-actions,
  .faq-cta-actions,
  .final-cta-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .hero-actions .btn,
  .faq-cta-actions .btn,
  .final-cta-actions .btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 46px !important;
    height: 46px !important;
    padding-inline: 8px !important;
    font-size: clamp(12px, 2.9vw, 13px) !important;
    white-space: nowrap !important;
  }

  .hero-actions .btn-text,
  .faq-cta-actions .btn-text,
  .final-cta-actions .btn-text {
    white-space: nowrap !important;
  }
}

@media (max-width: 390px) {
  .mobile-header-logo-group {
    transform: translateX(-8px) !important;
  }

  .mobile-header-cta-group {
    left: 49% !important;
    gap: 6px !important;
    padding: 3px 6px !important;
  }

  .brand-logo {
    width: 82px !important;
  }

  .brand-plate {
    min-height: 36px !important;
    padding: 4px 10px !important;
    border-radius: 14px !important;
  }

  .mobile-menu-toggle {
    width: 40px !important;
    height: 40px !important;
    flex: 0 0 40px !important;
    border-radius: 13px !important;
  }

  .mobile-header-cta-group .cta-email-mobile,
  .mobile-header-cta-group .cta-whatsapp {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
  }

  .mobile-header-cta-group .btn-icon {
    width: 16px !important;
    height: 16px !important;
  }

  .popup-form .form-actions,
  .popup-form .form-actions.stacked,
  .testimonial-contact-form .form-actions,
  .portfolio-contact-form .form-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .popup-form .form-actions .btn,
  .testimonial-contact-form .form-actions .btn,
  .portfolio-contact-form .form-actions .btn {
    width: 100% !important;
    min-height: 48px !important;
    height: 48px !important;
    white-space: nowrap !important;
  }

  .popup-form .form-actions > button[type="submit"],
  .testimonial-contact-form .btn-submit,
  .portfolio-contact-form .btn-submit {
    order: 1 !important;
  }

  .popup-form .form-actions > .popup-whatsapp,
  .testimonial-contact-form .popup-whatsapp-cta,
  .portfolio-contact-form .popup-whatsapp-cta {
    order: 2 !important;
  }

  .testimonial-contact-form .popup-phone-cta,
  .portfolio-contact-form .popup-phone-cta {
    order: 3 !important;
  }
}

@media (max-width: 360px) {
  .mobile-header-logo-group {
    transform: translateX(-10px) !important;
  }

  .mobile-header-cta-group {
    left: 48.5% !important;
  }
}

@media (max-width: 429px) {
  .hero-actions,
  .faq-cta-actions,
  .final-cta-actions,
  .popup-form .form-actions,
  .popup-form .form-actions.stacked,
  .modal .form-actions,
  .popup-box .form-actions,
  .testimonial-contact-form .form-actions,
  .portfolio-contact-form .form-actions,
  .testimonial-popup-cta-zone .form-actions,
  .portfolio-popup-cta-zone .form-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    align-items: stretch !important;
  }

  .hero-actions .btn,
  .faq-cta-actions .btn,
  .final-cta-actions .btn,
  .popup-form .form-actions .btn,
  .modal .form-actions .btn,
  .popup-box .form-actions .btn,
  .testimonial-contact-form .form-actions .btn,
  .portfolio-contact-form .form-actions .btn {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 48px !important;
    height: 48px !important;
    padding-inline: 14px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
  }

  .popup-form .form-actions > *,
  .modal .form-actions > *,
  .popup-box .form-actions > *,
  .testimonial-contact-form .form-actions > *,
  .portfolio-contact-form .form-actions > * {
    grid-column: 1 / -1 !important;
  }

  .popup-form .form-actions > button[type="submit"],
  .testimonial-contact-form .btn-submit,
  .portfolio-contact-form .btn-submit {
    order: 1 !important;
  }

  .popup-form .form-actions > a,
  .popup-form .form-actions > .cta-whatsapp,
  .popup-form .form-actions > .btn-whatsapp,
  .testimonial-contact-form .popup-whatsapp-cta,
  .portfolio-contact-form .popup-whatsapp-cta {
    order: 2 !important;
  }
}
