:root {
  --bg: #06111f;
  --bg2: #081a31;
  --surface: #0d2038;
  --card: #ffffff;
  --ink: #07111f;
  --text: #eaf3ff;
  --muted: #6b7c93;
  --muted2: #a6b5c8;
  --line: rgba(148, 163, 184, .22);
  --blue: #246bfe;
  --cyan: #17d4ff;
  --violet: #7c3cff;
  --orange: #ff8a1f;
  --green: #16c784;
  --shadow: 0 28px 90px rgba(0, 0, 0, .24);
  --soft-shadow: 0 18px 50px rgba(15, 36, 80, .14);
  --radius: 30px;
  --container: 1200px
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #07111f 0%, #081a31 24%, #f6f9ff 24.1%, #ffffff 100%);
  color: var(--ink);
  overflow-x: hidden
}

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

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

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

.section-pad {
  padding: 36px 0
}

.section-heading {
  max-width: 760px
}

.section-heading.center {
  text-align: center;
  margin-inline: auto
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  margin-bottom: 14px
}

.eyebrow:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 0 7px rgba(23, 212, 255, .12)
}

.section-heading h2 {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -.045em;
  margin: 0 0 14px
}

.section-heading p {
  color: #64748b;
  line-height: 1.8;
  font-size: 17px
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 17, 31, .72);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 22px
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  color: #fff
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 950;
  box-shadow: 0 14px 44px rgba(23, 212, 255, .24)
}

.brand-mark strong,
.brand-mark small {
  display: block
}

.brand-mark strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 18px
}

.brand-mark small {
  font-size: 12px;
  color: #9fb1c8;
  margin-top: 2px
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px
}

.desktop-nav a,
.mobile-nav a {
  font-size: 14px;
  font-weight: 800;
  color: #c9d7ea;
  padding: 10px 12px;
  border-radius: 999px
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  border-radius: 15px;
  padding: 10px
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 5px 0
}

.mobile-nav {
  display: none;
  padding: 0 20px 18px;
  background: rgba(6, 17, 31, .95)
}

.mobile-nav.is-open {
  display: grid
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  cursor: pointer;
  transition: .25s ease;
  white-space: nowrap
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 20px 48px rgba(36, 107, 254, .34)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(36, 107, 254, .42)
}

.btn-secondary {
  background: rgba(255, 255, 255, .94);
  color: #06111f;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .12)
}

.btn-sm {
  padding: 10px 16px;
  font-size: 14px
}

.btn-full {
  width: 100%
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding-top: 82px;
  padding-bottom: 72px;
  min-height: 780px
}

.hero-mesh {
  position: absolute;
  inset: -180px -120px auto;
  height: 760px;
  background: radial-gradient(circle at 20% 18%, rgba(23, 212, 255, .30), transparent 31%), radial-gradient(circle at 72% 12%, rgba(124, 60, 255, .30), transparent 34%), radial-gradient(circle at 54% 60%, rgba(36, 107, 254, .18), transparent 40%);
  pointer-events: none
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
  opacity: .48
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 58px;
  align-items: center
}

.promo-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 16px;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;

  color: #011119;

  background:
    linear-gradient(180deg, rgba(255, 255, 255, .25), rgba(255, 255, 255, .05));

  border: 1px solid rgba(255, 255, 255, .25);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, .12),
    inset 0 1px 0 rgba(255, 255, 255, .4);

  overflow: hidden;
}

.promo-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background:
    linear-gradient(120deg,
      rgba(14, 165, 233, .18),
      rgba(59, 130, 246, .18),
      transparent 60%);

  opacity: .7;
  pointer-events: none;
}

.promo-pill span {
  position: relative;

  padding: 4px 10px;
  border-radius: 999px;

  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;

  color: #fff;

  background: linear-gradient(135deg, #ff6a00, #ff3d7f);

  box-shadow:
    0 6px 18px rgba(255, 61, 127, .45),
    inset 0 1px 0 rgba(255, 255, 255, .35);

  animation: promoPulse 1.8s ease-in-out infinite;
}

@keyframes promoPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 6px 18px rgba(255, 61, 127, .45);
  }

  50% {
    transform: scale(1.08);
    box-shadow:
      0 10px 26px rgba(255, 61, 127, .6);
  }
}

.hero h1 {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(44px, 6.3vw, 82px);
  line-height: .95;
  letter-spacing: -.065em;
  margin: 24px 0 20px
}

.hero-lead {
  font-size: 18px;
  line-height: 1.85;
  color: #c9d7ea;
  max-width: 680px
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px
}

.trust-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px
}

.trust-strip span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .07);
  border-radius: 999px;
  color: #d9e9ff;
  font-weight: 800;
  font-size: 13px
}

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

.dashboard-card {
  position: absolute;
  inset: 22px 0 36px 30px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .06));
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 32px 110px rgba(0, 0, 0, .36);
  padding: 14px;
  overflow: hidden;
  backdrop-filter: blur(24px)
}

.dash-top {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #dbeafe;
  font-weight: 900
}

.dash-top span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: #fb7185
}

.dash-top span:nth-child(2) {
  background: #fbbf24
}

.dash-top span:nth-child(3) {
  background: #22c55e
}

.dash-top strong {
  margin-left: 10px;
  font-size: 13px
}

.dashboard-card img {
  height: calc(100% - 48px);
  width: 100%;
  object-fit: cover;
  border-radius: 26px;
  filter: saturate(1.05) contrast(1.02)
}

.dash-overlay {
  position: absolute;
  left: 34px;
  bottom: 34px;
  background: rgba(4, 12, 24, .78);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .13);
  backdrop-filter: blur(18px);
  padding: 14px 16px;
  border-radius: 18px
}

.dash-overlay b {
  display: block;
  color: #3cffb4
}

.dash-overlay small {
  color: #cbd5e1
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 20px;
  padding: 16px 18px;
  font-weight: 950;
  box-shadow: 0 22px 56px rgba(0, 0, 0, .24);
  color: #0f172a
}

.card-a {
  right: 0;
  top: 112px
}

.card-b {
  left: 0;
  bottom: 132px
}

.card-c {
  right: 38px;
  bottom: 24px
}

.stats-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px
}

.stats-row div {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  padding: 18px;
  backdrop-filter: blur(16px)
}

.stats-row strong {
  display: block;
  font-family: "Space Grotesk";
  font-size: 30px;
  color: #fff
}

.stats-row span {
  font-size: 13px;
  color: #c7d8ef;
  font-weight: 800
}

.quick-menu {
  position: sticky;
  top: 78px;
  z-index: 80;
  padding: 14px 0;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
  border-block: 1px solid rgba(203, 213, 225, .72)
}

.quick-menu-inner {
  display: flex;
  gap: 10px;
  overflow: auto;
  scrollbar-width: none
}

.quick-menu a {
  flex: 0 0 auto;
  padding: 11px 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-weight: 900;
  color: #334155;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .05)
}

.quick-menu a:hover {
  color: #fff;
  background: #06111f;
  border-color: #06111f
}

.split-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: start
}

.value-section {
  background: #fff
}

.problem-list {
  display: grid;
  gap: 14px
}

.problem-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--soft-shadow)
}

.problem-item span {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  display: grid;
  place-items: center;
  font-weight: 950;
  flex: 0 0 auto
}

.problem-item p {
  margin: 0;
  color: #475569;
  line-height: 1.7
}

.catalog-section {
  background: radial-gradient(circle at 10% 0, rgba(36, 107, 254, .10), transparent 28%), linear-gradient(180deg, #f8fbff, #eef6ff)
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px
}

.catalog-card {
  background: rgba(255, 255, 255, .92);
  border: 1px solid #dfe8f6;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(15, 36, 80, .12);
  transition: .25s ease
}

.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 80px rgba(15, 36, 80, .18)
}

.catalog-image {
  position: relative;
  height: 230px;
  display: block;
  overflow: hidden
}

.catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s ease
}

.catalog-card:hover .catalog-image img {
  transform: scale(1.05)
}

.catalog-image span {
  position: absolute;
  left: 14px;
  top: 14px;
  background: rgba(6, 17, 31, .78);
  color: #fff;
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px)
}

.catalog-body {
  padding: 20px
}

.catalog-body small {
  display: block;
  color: var(--blue);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em
}

.catalog-body h3 {
  font-family: "Space Grotesk";
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -.03em;
  margin: 10px 0
}

.catalog-body p {
  color: #64748b;
  line-height: 1.7;
  font-size: 14px
}

.feature-tags,
.spec-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0
}

.feature-tags span,
.spec-tags span {
  padding: 8px 10px;
  border-radius: 999px;
  background: #eaf3ff;
  color: #174ea6;
  font-weight: 850;
  font-size: 12px
}

.catalog-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 16px
}

.inline-cta {
  font-weight: 950;
  color: var(--blue)
}

.mini-wa {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #16a34a;
  color: #fff;
  font-weight: 950
}

.audience-section,
.faq-section {
  background: #fff
}

.audience-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px
}

.audience-card,
.step-card {
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 14px 44px rgba(15, 23, 42, .07)
}

.audience-card h3,
.step-card h3 {
  font-family: "Space Grotesk";
  margin: 0 0 8px;
  font-size: 21px
}

.audience-card p,
.step-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.72
}

.steps-section {
  background: linear-gradient(180deg, #fff, #f5f9ff)
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: #eaf3ff;
  color: var(--blue);
  font-weight: 950;
  margin-bottom: 18px
}

.consultation-section {
  background: radial-gradient(circle at 10% 0, rgba(23, 212, 255, .22), transparent 28%), linear-gradient(135deg, #06111f, #0a2b5a);
  color: #fff
}

.consult-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: start
}

.consult-copy p {
  color: #cbd5e1;
  line-height: 1.8
}

.consult-form {
  background: rgba(255, 255, 255, .96);
  color: #0f172a;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 32px;
  padding: 24px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .24);
  display: grid;
  gap: 14px
}

.consult-form label {
  display: grid;
  gap: 8px;
  font-weight: 850;
  color: #334155
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  border: 1px solid #dbe5f3;
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  color: #0f172a;
  background: #f8fbff;
  outline: none
}

.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 107, 254, .1)
}

.consult-form small {
  color: #64748b;
  text-align: center
}

.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 44px
}

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

details {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .06)
}

summary {
  font-weight: 950;
  cursor: pointer
}

details p {
  color: #64748b;
  line-height: 1.7
}

.detail-main {
  background: #fff
}

.detail-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #06111f, #0b2c5f);
  color: #fff
}

.detail-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 48px;
  align-items: center
}

.tech-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: .7
}

.orb-a {
  width: 420px;
  height: 420px;
  left: -120px;
  top: -120px;
  background: radial-gradient(circle, rgba(23, 212, 255, .30), transparent 68%)
}

.orb-b {
  width: 360px;
  height: 360px;
  right: -90px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(124, 60, 255, .28), transparent 70%)
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: #dbeafe;
  font-weight: 850
}

.detail-copy h1 {
  font-family: "Space Grotesk";
  font-size: clamp(40px, 5vw, 70px);
  line-height: .98;
  letter-spacing: -.055em;
  margin: 22px 0
}

.detail-copy p {
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.85
}

.detail-visual {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 32px 100px rgba(0, 0, 0, .34);
  border: 1px solid rgba(255, 255, 255, .14)
}

.detail-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover
}

.scan-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: rgba(6, 17, 31, .82);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 950;
  display: flex;
  gap: 10px;
  align-items: center;
  backdrop-filter: blur(16px)
}

.scan-card span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: #22c55e;
  box-shadow: 0 0 0 8px rgba(34, 197, 94, .18)
}

.detail-info-section {
  background: #f8fbff
}

.detail-info-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px
}

.info-panel,
.spec-panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--soft-shadow)
}

.info-panel h2 {
  font-family: "Space Grotesk";
  font-size: 36px;
  line-height: 1.04;
  letter-spacing: -.04em;
  margin: 0 0 22px
}

.value-list {
  display: grid;
  gap: 12px
}

.value-list div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #475569;
  font-weight: 750
}

.value-list span {
  color: #16a34a
}

.spec-tags.soft span {
  background: #f8fafc;
  color: #475569
}

.package-detail-section {
  background: #fff
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px
}

.price-card {
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  padding: 24px;
  box-shadow: 0 18px 58px rgba(15, 36, 80, .1)
}

.price-chip {
  display: inline-flex;
  background: #eaf3ff;
  color: var(--blue);
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950
}

.price-card h3 {
  font-family: "Space Grotesk";
  font-size: 24px;
  margin: 18px 0 10px
}

.price-card strong {
  display: block;
  font-size: 25px;
  color: #06111f;
  margin-bottom: 12px
}

.price-card p {
  color: #64748b;
  line-height: 1.72;
  min-height: 96px
}

.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #16a34a;
  color: #fff;
  font-weight: 950;
  box-shadow: 0 20px 46px rgba(22, 163, 74, .32)
}

.floating-wa span {
  background: #fff;
  color: #16a34a;
  border-radius: 999px;
  padding: 4px 7px;
  font-size: 11px
}

.site-footer {
  background: #06111f;
  color: #cbd5e1;
  padding: 32px 0
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center
}

.footer-inner p {
  margin: 6px 0 0;
  color: #94a3b8
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: .7s cubic-bezier(.2, .8, .2, 1)
}

.reveal.is-visible {
  opacity: 1;
  transform: none
}

@media (max-width:1100px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:980px) {

  .desktop-nav,
  .header-inner>.btn {
    display: none
  }

  .nav-toggle {
    display: block
  }

  .hero-grid,
  .split-grid,
  .consult-grid,
  .faq-grid,
  .detail-hero-grid,
  .detail-info-grid {
    grid-template-columns: 1fr
  }

  .hero {
    min-height: auto
  }

  .hero-visual {
    min-height: 470px
  }

  .dashboard-card {
    inset: 20px
  }

  .stats-row,
  .price-grid {
    grid-template-columns: 1fr
  }

  .audience-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:640px) {
  .container {
    width: min(100% - 28px, var(--container))
  }

  .section-pad {
    padding: 68px 0
  }

  .hero {
    padding-top: 54px
  }

  .hero h1 {
    font-size: 42px
  }

  .hero-lead {
    font-size: 16px
  }

  .hero-actions .btn {
    width: 100%
  }

  .hero-visual {
    min-height: 390px
  }

  .dashboard-card {
    inset: 8px
  }

  .floating-card {
    font-size: 12px;
    padding: 12px
  }

  .card-a {
    right: 2px;
    top: 52px
  }

  .card-b {
    left: 2px;
    bottom: 92px
  }

  .card-c {
    right: 8px;
    bottom: 12px
  }

  .quick-menu {
    top: 78px
  }

  .catalog-grid,
  .audience-grid,
  .steps-grid {
    grid-template-columns: 1fr
  }

  .catalog-image {
    height: 220px
  }

  .consult-form {
    border-radius: 24px;
    padding: 18px
  }

  .footer-inner {
    display: grid
  }

  .floating-wa {
    left: 16px;
    right: 16px;
    justify-content: center
  }

  .section-heading h2 {
    font-size: 32px
  }

  .detail-visual img {
    height: 330px
  }

  .info-panel h2 {
    font-size: 30px
  }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .72));
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(226, 232, 240, .78);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 194, 255, .12), transparent 28%),
    radial-gradient(circle at 78% 0%, rgba(15, 92, 255, .10), transparent 30%);
}

.header-inner {
  position: relative;
  height: 78px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-right: auto;
  min-width: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background:
    linear-gradient(135deg, #06142c 0%, #0f5cff 52%, #00c2ff 100%);
  box-shadow:
    0 18px 42px rgba(15, 92, 255, .24),
    inset 0 1px 0 rgba(255, 255, 255, .35);
}

.brand-logo span {
  color: #fff;
  font-weight: 950;
  letter-spacing: -.04em;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -.03em;
  color: #06142c;
}

.brand-text small {
  margin-top: 4px;
  font-size: 11px;
  color: #64748b;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(226, 232, 240, .9);
  background: rgba(255, 255, 255, .70);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}

.desktop-nav a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  color: #475569;
  transition: .22s ease;
  white-space: nowrap;
}

.desktop-nav a:hover {
  color: #0f5cff;
  background: rgba(15, 92, 255, .08);
}

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

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  background: linear-gradient(135deg, #0f5cff, #00b8ff);
  box-shadow: 0 18px 38px rgba(15, 92, 255, .24);
  transition: .22s ease;
}

.header-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(15, 92, 255, .32);
}

.header-call-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, .22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(226, 232, 240, .95);
  background: rgba(255, 255, 255, .82);
  border-radius: 16px;
  padding: 10px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: #06142c;
  transition: .22s ease;
}

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

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

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

.mobile-nav {
  display: none;
  position: relative;
  border-top: 1px solid rgba(226, 232, 240, .78);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav-inner {
  width: min(var(--container), calc(100% - 28px));
  margin-inline: auto;
  padding: 14px 0 18px;
  display: grid;
  gap: 8px;
}

.mobile-nav a:not(.btn) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 15px;
  border-radius: 18px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 850;
  background: #f8fbff;
  border: 1px solid rgba(226, 232, 240, .88);
}

.mobile-nav a:not(.btn)::after {
  content: "→";
  color: #0f5cff;
}

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

  .desktop-nav a {
    padding-inline: 10px;
  }
}

@media (max-width: 980px) {

  .desktop-nav,
  .header-call {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

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

@media (max-width: 520px) {
  .brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 16px;
  }

  .brand-text strong {
    font-size: 15px;
  }

  .brand-text small {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}


.hero-v2 {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  padding-top: 26px;
  padding-bottom: 26px;
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 194, 255, .20), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(15, 92, 255, .22), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 48%, #eef6ff 100%);
}

.hero-v2__mesh,
.hero-v2__grid,
.hero-v2__orb {
  position: absolute;
  pointer-events: none;
}

.hero-v2__mesh {
  inset: 0;
  background:
    linear-gradient(120deg, rgba(15, 92, 255, .06), transparent 34%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .72), transparent 42%);
}

.hero-v2__grid {
  inset: 0;
  opacity: .38;
  background-image:
    linear-gradient(rgba(15, 92, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 92, 255, .08) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 76%);
}

.hero-v2__orb {
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(34px);
  opacity: .42;
}

.hero-v2__orb--blue {
  right: -120px;
  top: 130px;
  background: rgba(15, 92, 255, .30);
}

.hero-v2__orb--cyan {
  left: -140px;
  bottom: 80px;
  background: rgba(0, 194, 255, .26);
}

.hero-v2__wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 58px;
}

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

.hero-v2__promo {
  box-shadow: 0 18px 48px rgba(255, 122, 26, .16);
}

.hero-v2 h1 {
  margin: 22px 0 20px;
  font-size: clamp(44px, 6.2vw, 82px);
  line-height: .94;
  letter-spacing: -.07em;
  color: #06142c;
}

.hero-v2 h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(135deg, #0f5cff, #00b8ff 54%, #06142c);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-v2__lead {
  max-width: 650px;
  margin: 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.85;
}

.hero-v2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-v2__trust {
  margin-top: 26px;
  display: grid;
  gap: 10px;
}

.hero-v2__trust>span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #64748b;
}

.hero-v2__trust div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-v2__trust b {
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: #174ea6;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(219, 229, 243, .92);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
}

.hero-v2__visual {
  position: relative;
  min-height: 560px;
}

.hero-v2__screen {
  position: absolute;
  inset: 34px 16px 58px 26px;
  overflow: hidden;
  border-radius: 38px;
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(255, 255, 255, .88);
  box-shadow:
    0 34px 90px rgba(15, 36, 80, .20),
    inset 0 1px 0 rgba(255, 255, 255, .75);
  backdrop-filter: blur(20px);
}

.hero-v2__screen-top {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  background: rgba(6, 20, 44, .92);
  color: #fff;
}

.hero-v2__screen-top i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .35);
}

.hero-v2__screen-top strong {
  margin-left: 8px;
  font-size: 13px;
  letter-spacing: .02em;
}

.hero-v2__screen-image {
  position: relative;
  height: calc(100% - 54px);
}

.hero-v2__screen-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-v2__screen-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 20, 44, .05), rgba(6, 20, 44, .42)),
    radial-gradient(circle at 50% 20%, transparent 20%, rgba(0, 0, 0, .18));
}

.hero-v2__scan {
  position: absolute;
  left: 0;
  right: 0;
  top: 18%;
  height: 2px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, .95), transparent);
  box-shadow: 0 0 22px rgba(0, 194, 255, .9);
  animation: heroScan 3.8s ease-in-out infinite;
}

@keyframes heroScan {

  0%,
  100% {
    transform: translateY(0);
    opacity: .35;
  }

  50% {
    transform: translateY(230px);
    opacity: 1;
  }
}

.hero-v2__status {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 3;
  display: grid;
  gap: 3px;
  padding: 12px 15px;
  border-radius: 18px;
  background: rgba(6, 20, 44, .78);
  color: #fff;
  backdrop-filter: blur(14px);
}

.hero-v2__status b {
  font-size: 12px;
  color: #22c55e;
  letter-spacing: .16em;
}

.hero-v2__status small {
  font-size: 12px;
  color: #e2e8f0;
  font-weight: 700;
}

.hero-v2__mini {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 188px;
  padding: 14px 15px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(219, 229, 243, .95);
  box-shadow: 0 22px 52px rgba(15, 23, 42, .14);
  backdrop-filter: blur(18px);
}

.hero-v2__mini span {
  width: 38px;
  height: 38px;
  border-radius: 15px;
  background:
    radial-gradient(circle at 35% 30%, #fff, transparent 38%),
    linear-gradient(135deg, #0f5cff, #00c2ff);
  box-shadow: 0 12px 26px rgba(15, 92, 255, .24);
}

.hero-v2__mini b,
.hero-v2__mini small {
  display: block;
}

.hero-v2__mini b {
  font-size: 14px;
  color: #06142c;
}

.hero-v2__mini small {
  margin-top: 3px;
  font-size: 12px;
  color: #64748b;
  font-weight: 750;
}

.hero-v2__mini--a {
  top: 96px;
  right: -4px;
}

.hero-v2__mini--b {
  left: -2px;
  bottom: 138px;
}

.hero-v2__mini--c {
  right: 42px;
  bottom: 28px;
}

.hero-v2__stats {
  position: relative;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.hero-v2__stats div {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(219, 229, 243, .92);
  box-shadow: 0 16px 42px rgba(15, 23, 42, .08);
  backdrop-filter: blur(18px);
}

.hero-v2__stats strong {
  display: block;
  font-size: 26px;
  color: #0f5cff;
  letter-spacing: -.04em;
}

.hero-v2__stats span {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero-v2 {
    min-height: auto;
    padding-top: 62px;
  }

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

  .hero-v2__copy {
    text-align: center;
    margin-inline: auto;
  }

  .hero-v2__lead {
    margin-inline: auto;
  }

  .hero-v2__actions,
  .hero-v2__trust div {
    justify-content: center;
  }

  .hero-v2__visual {
    min-height: 470px;
    max-width: 640px;
    width: 100%;
    margin-inline: auto;
  }

  .hero-v2__screen {
    inset: 18px 24px 52px;
  }

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

@media (max-width: 640px) {
  .hero-v2 {
    padding-top: 46px;
    padding-bottom: 58px;
  }

  .hero-v2 h1 {
    font-size: 42px;
    line-height: .98;
    letter-spacing: -.055em;
  }

  .hero-v2__lead {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .hero-v2__actions .btn {
    width: 100%;
  }

  .hero-v2__trust {
    margin-top: 22px;
  }

  .hero-v2__trust div {
    gap: 7px;
  }

  .hero-v2__trust b {
    font-size: 12px;
    padding: 8px 10px;
  }

  .hero-v2__visual {
    min-height: 390px;
  }

  .hero-v2__screen {
    inset: 8px 0 52px;
    border-radius: 28px;
  }

  .hero-v2__screen-top {
    height: 46px;
  }

  .hero-v2__screen-top strong {
    font-size: 12px;
  }

  .hero-v2__mini {
    min-width: auto;
    padding: 11px 12px;
    border-radius: 18px;
  }

  .hero-v2__mini span {
    width: 32px;
    height: 32px;
    border-radius: 13px;
  }

  .hero-v2__mini b {
    font-size: 12.5px;
  }

  .hero-v2__mini small {
    font-size: 11px;
  }

  .hero-v2__mini--a {
    top: 58px;
    right: -4px;
  }

  .hero-v2__mini--b {
    left: -4px;
    bottom: 112px;
  }

  .hero-v2__mini--c {
    right: 10px;
    bottom: 12px;
  }

  .hero-v2__stats {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
}

.catalog-tech {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 194, 255, .18), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(15, 92, 255, .16), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f3f8ff 48%, #eef6ff 100%);
}

.catalog-tech__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background-image:
    linear-gradient(rgba(15, 92, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 92, 255, .07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 70%, transparent 100%);
}

.catalog-tech .container {
  position: relative;
}

.catalog-tech__grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.catalog-tech__card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .72));
  border: 1px solid rgba(219, 229, 243, .92);
  box-shadow:
    0 24px 70px rgba(15, 36, 80, .12),
    inset 0 1px 0 rgba(255, 255, 255, .72);
  backdrop-filter: blur(20px);
  transition: .28s ease;
}

.catalog-tech__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 92, 255, .12), transparent 36%),
    radial-gradient(circle at 80% 0%, rgba(0, 194, 255, .18), transparent 28%);
  opacity: 0;
  transition: .28s ease;
  pointer-events: none;
}

.catalog-tech__card:hover {
  transform: translateY(-8px);
  border-color: rgba(15, 92, 255, .25);
  box-shadow:
    0 34px 90px rgba(15, 36, 80, .18),
    inset 0 1px 0 rgba(255, 255, 255, .82);
}

.catalog-tech__card:hover::before {
  opacity: 1;
}

.catalog-tech__image {
  position: relative;
  display: block;
  height: 245px;
  margin: 12px;
  overflow: hidden;
  border-radius: 26px;
  background: #06142c;
}

.catalog-tech__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s ease;
}

.catalog-tech__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 20, 44, .02), rgba(6, 20, 44, .58)),
    radial-gradient(circle at 50% 0%, transparent 20%, rgba(0, 0, 0, .14));
}

.catalog-tech__card:hover .catalog-tech__image img {
  transform: scale(1.06);
}

.catalog-tech__badge {
  position: absolute;
  z-index: 3;
  top: 15px;
  left: 15px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #0f5cff, #00c2ff);
  box-shadow: 0 14px 30px rgba(15, 92, 255, .34);
}

.catalog-tech__glow {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 16px;
  width: 54px;
  height: 54px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 35% 30%, #fff, transparent 34%),
    linear-gradient(135deg, rgba(15, 92, 255, .95), rgba(0, 194, 255, .95));
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, .18),
    0 18px 42px rgba(0, 194, 255, .35);
}

.catalog-tech__body {
  position: relative;
  z-index: 2;
  padding: 12px 24px 24px;
}

.catalog-tech__body small {
  display: inline-flex;
  margin-bottom: 10px;
  color: #0f5cff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.catalog-tech__body h3 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -.04em;
  color: #06142c;
}

.catalog-tech__body h3 a {
  color: inherit;
}

.catalog-tech__body p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.72;
}

.catalog-tech__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.catalog-tech__tags span {
  padding: 8px 10px;
  border-radius: 999px;
  color: #174ea6;
  font-size: 12px;
  font-weight: 850;
  background: rgba(238, 245, 255, .9);
  border: 1px solid rgba(219, 229, 243, .92);
}

.catalog-tech__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.catalog-tech__detail {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 46px;
  padding: 0 15px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  background: linear-gradient(135deg, #06142c, #0f5cff);
  box-shadow: 0 16px 34px rgba(15, 92, 255, .22);
  transition: .22s ease;
}

.catalog-tech__detail span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(140, 205, 221, 0.16);
}

.catalog-tech__detail:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(15, 92, 255, .30);
}

.catalog-tech__wa {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 16px 32px rgba(22, 163, 74, .26);
  transition: .22s ease;
}

.catalog-tech__wa:hover {
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 1080px) {
  .catalog-tech__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .catalog-tech__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
  }

  .catalog-tech__card {
    border-radius: 28px;
  }

  .catalog-tech__image {
    height: 220px;
    margin: 10px;
    border-radius: 22px;
  }

  .catalog-tech__body {
    padding: 10px 18px 20px;
  }

  .catalog-tech__body h3 {
    font-size: 23px;
  }

  .catalog-tech__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-tech__detail {
    width: 100%;
  }

  .catalog-tech__wa {
    width: 100%;
    height: 46px;
  }
}

.quick-menu-v2 {
  position: sticky;
  top: 78px;
  z-index: 45;

  background:
    linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(255, 255, 255, .74));

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(226, 232, 240, .75);
}

.quick-menu-v2__wrap {
  position: relative;
}

.quick-menu-v2__scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 0;

  scrollbar-width: none;
}

.quick-menu-v2__scroll::-webkit-scrollbar {
  display: none;
}

/* item */
.quick-menu-v2__item {
  position: relative;

  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 11px 16px;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 850;
  letter-spacing: .02em;

  color: #334155;

  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(226, 232, 240, .9);

  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);

  transition: .22s ease;
}


.catalog-tech__grid {
  align-items: stretch;
}

.catalog-tech__card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.catalog-tech__image {
  flex: 0 0 auto;
}

.catalog-tech__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.catalog-tech__body p {
  min-height: 78px;
}

.catalog-tech__tags {
  min-height: 74px;
  align-content: flex-start;
}

.catalog-tech__actions {
  margin-top: auto;
  padding-top: 22px;
}

.catalog-tech__wa {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 16px 32px rgba(22, 163, 74, .28);
  transition: .22s ease;
}

.catalog-tech__wa svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.catalog-tech__wa:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 20px 42px rgba(22, 163, 74, .36);
}

@media (max-width: 720px) {

  .catalog-tech__body p,
  .catalog-tech__tags {
    min-height: 0;
  }

  .catalog-tech__actions {
    margin-top: 22px;
    padding-top: 0;
  }

  .catalog-tech__wa {
    width: 100%;
    height: 46px;
  }

  .catalog-tech__wa svg {
    width: 24px;
    height: 24px;
  }
}

/* dot indicator */
.quick-menu-v2__item span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #cbd5f5;
}

/* hover */
.quick-menu-v2__item:hover {
  color: #0f5cff;
  border-color: rgba(15, 92, 255, .4);

  background:
    linear-gradient(180deg, rgba(15, 92, 255, .06), rgba(15, 92, 255, .02));

  box-shadow: 0 14px 32px rgba(15, 92, 255, .12);
}

/* MAIN (katalog) */
.quick-menu-v2__item.is-main {
  color: #fff;
  background: linear-gradient(135deg, #0f5cff, #00c2ff);
  border: none;

  box-shadow: 0 16px 34px rgba(15, 92, 255, .28);
}

.quick-menu-v2__item.is-main span {
  background: #fff;
}

/* ACCENT (promo) */
.quick-menu-v2__item.is-accent {
  color: #fff;
  background: linear-gradient(135deg, #ff6a00, #ff3d7f);
  border: none;

  box-shadow: 0 16px 34px rgba(255, 61, 127, .28);
}

.quick-menu-v2__item.is-accent span {
  background: #fff;
}

/* ACTIVE STATE (optional nanti pakai JS) */
.quick-menu-v2__item.is-active {
  color: #0f5cff;
  border-color: rgba(15, 92, 255, .4);
  background: rgba(15, 92, 255, .08);
}

/* mobile tweak */
@media (max-width: 640px) {
  .quick-menu-v2 {
    top: 72px;
  }

  .quick-menu-v2__item {
    font-size: 12px;
    padding: 10px 14px;
  }
}

.audience-tech {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 194, 255, .16), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(15, 92, 255, .15), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 52%, #f3f8ff 100%);
}

.audience-tech__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .36;
  background-image:
    linear-gradient(rgba(15, 92, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 92, 255, .07) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 72%, transparent 100%);
}

.audience-tech .container {
  position: relative;
}

.audience-tech__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
}

.audience-tech__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  background: linear-gradient(135deg, #06142c, #0f5cff);
  box-shadow: 0 18px 40px rgba(15, 92, 255, .22);
  transition: .22s ease;
  white-space: nowrap;
}

.audience-tech__cta span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
}

.audience-tech__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(15, 92, 255, .30);
}

.audience-tech__grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.audience-tech__card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  border-radius: 30px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .76));
  border: 1px solid rgba(219, 229, 243, .92);
  box-shadow:
    0 22px 60px rgba(15, 36, 80, .10),
    inset 0 1px 0 rgba(255, 255, 255, .72);
  backdrop-filter: blur(18px);
  transition: .28s ease;
}

.audience-tech__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(0, 194, 255, .20), transparent 30%),
    linear-gradient(135deg, rgba(15, 92, 255, .10), transparent 44%);
  opacity: 0;
  transition: .28s ease;
  pointer-events: none;
}

.audience-tech__card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: rgba(15, 92, 255, .08);
  border: 1px solid rgba(15, 92, 255, .12);
}

.audience-tech__card:hover {
  transform: translateY(-8px);
  border-color: rgba(15, 92, 255, .25);
  box-shadow:
    0 32px 84px rgba(15, 36, 80, .16),
    inset 0 1px 0 rgba(255, 255, 255, .82);
}

.audience-tech__card:hover::before {
  opacity: 1;
}

.audience-tech__icon {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .04em;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .9), transparent 34%),
    linear-gradient(135deg, #0f5cff, #00c2ff);
  box-shadow:
    0 16px 34px rgba(15, 92, 255, .24),
    0 0 0 8px rgba(15, 92, 255, .06);
}

.audience-tech__content {
  position: relative;
  z-index: 2;
}

.audience-tech__content h3 {
  margin: 0 0 10px;
  color: #06142c;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.audience-tech__content p {
  margin: 0;
  color: #64748b;
  font-size: 14.5px;
  line-height: 1.72;
}

@media (max-width: 1080px) {
  .audience-tech__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-tech__card {
    min-height: 210px;
  }
}

@media (max-width: 720px) {
  .audience-tech__head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .audience-tech__cta {
    width: 100%;
    justify-content: center;
  }

  .audience-tech__grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .audience-tech__card {
    min-height: auto;
    padding: 22px;
    border-radius: 26px;
  }

  .audience-tech__icon {
    margin-bottom: 20px;
  }
}

.steps-tech {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 0%, rgba(0, 194, 255, .16), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(15, 92, 255, .15), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 52%, #eef6ff 100%);
}

.steps-tech__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(rgba(15, 92, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 92, 255, .07) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 72%, transparent 100%);
}

.steps-tech .container {
  position: relative;
}

.steps-tech__timeline {
  position: relative;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps-tech__timeline::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(15, 92, 255, .28), rgba(0, 194, 255, .32), transparent);
}

.steps-tech__card {
  position: relative;
  z-index: 2;
  min-height: 240px;
  overflow: hidden;
  border-radius: 30px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .72));
  border: 1px solid rgba(219, 229, 243, .92);
  box-shadow:
    0 22px 60px rgba(15, 36, 80, .10),
    inset 0 1px 0 rgba(255, 255, 255, .72);
  backdrop-filter: blur(18px);
  transition: .28s ease;
}

.steps-tech__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 0%, rgba(0, 194, 255, .20), transparent 32%),
    linear-gradient(135deg, rgba(15, 92, 255, .10), transparent 44%);
  opacity: 0;
  transition: .28s ease;
  pointer-events: none;
}

.steps-tech__card:hover {
  transform: translateY(-8px);
  border-color: rgba(15, 92, 255, .25);
  box-shadow:
    0 32px 84px rgba(15, 36, 80, .16),
    inset 0 1px 0 rgba(255, 255, 255, .82);
}

.steps-tech__card:hover::before {
  opacity: 1;
}

.steps-tech__number {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .05em;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .9), transparent 34%),
    linear-gradient(135deg, #06142c, #0f5cff 58%, #00c2ff);
  box-shadow:
    0 16px 34px rgba(15, 92, 255, .26),
    0 0 0 8px rgba(15, 92, 255, .06);
}

.steps-tech__number::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 26px;
  border: 1px solid rgba(15, 92, 255, .16);
}

.steps-tech__content {
  position: relative;
  z-index: 2;
}

.steps-tech__content h3 {
  margin: 0 0 10px;
  color: #06142c;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.steps-tech__content p {
  margin: 0;
  color: #64748b;
  font-size: 14.5px;
  line-height: 1.72;
}

@media (max-width: 1080px) {
  .steps-tech__timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-tech__timeline::before {
    display: none;
  }

  .steps-tech__card {
    min-height: 210px;
  }
}

@media (max-width: 720px) {
  .steps-tech__timeline {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .steps-tech__card {
    min-height: auto;
    padding: 22px;
    border-radius: 26px;
  }

  .steps-tech__number {
    margin-bottom: 20px;
  }
}

.consult-tech {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 194, 255, .20), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(15, 92, 255, .22), transparent 34%),
    linear-gradient(135deg, #06142c, #0d2c67);
  color: #fff;
}

.consult-tech__bg {
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 52px 52px;
}

.consult-tech__grid {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 50px;
  align-items: start;
}

/* LEFT */
.consult-tech__copy h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.consult-tech__copy h2 span {
  display: block;
  color: #00c2ff;
}

.consult-tech__copy p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-top: 14px;
}

.consult-tech__benefit {
  margin-top: 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: #e2e8f0;
  font-size: 14px;
}

.consult-tech__trust {
  margin-top: 18px;
  font-size: 13px;
  color: #94a3b8;
}

/* FORM */
.consult-tech__form {
  background: rgba(255, 255, 255, .95);
  color: #0f172a;
  border-radius: 32px;
  padding: 26px;
  display: grid;
  gap: 14px;

  box-shadow:
    0 40px 100px rgba(0, 0, 0, .35),
    inset 0 1px 0 rgba(255, 255, 255, .8);
}

.consult-tech__field {
  display: grid;
  gap: 6px;
}

.consult-tech__field label {
  font-size: 12px;
  font-weight: 900;
  color: #334155;
}

.consult-tech__field input,
.consult-tech__field select,
.consult-tech__field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 14px 15px;
  font: inherit;
  background: #f8fbff;
  transition: .2s ease;
}

.consult-tech__field input:focus,
.consult-tech__field select:focus,
.consult-tech__field textarea:focus {
  border-color: #0f5cff;
  box-shadow: 0 0 0 4px rgba(15, 92, 255, .1);
  outline: none;
}

/* CTA */
.consult-tech__submit {
  margin-top: 8px;
  height: 52px;
  border-radius: 999px;
  border: none;
  cursor: pointer;

  font-size: 14px;
  font-weight: 950;
  letter-spacing: .02em;

  color: #fff;
  background: linear-gradient(135deg, #0f5cff, #00c2ff);

  box-shadow: 0 22px 50px rgba(15, 92, 255, .35);

  transition: .25s ease;
}

.consult-tech__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 60px rgba(15, 92, 255, .45);
}

.consult-tech__form small {
  text-align: center;
  color: #64748b;
  font-size: 12px;
}

/* MOBILE */
@media (max-width: 980px) {
  .consult-tech__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .consult-tech__copy {
    text-align: center;
  }

  .consult-tech__benefit {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .consult-tech__form {
    border-radius: 24px;
    padding: 18px;
  }

  .consult-tech__submit {
    width: 100%;
  }
}

.faq-tech {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(0, 194, 255, .14), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(15, 92, 255, .14), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 52%, #eef6ff 100%);
}

.faq-tech__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(rgba(15, 92, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 92, 255, .07) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 72%, transparent 100%);
}

.faq-tech__grid {
  position: relative;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 48px;
  align-items: start;
}

.faq-tech__copy {
  position: sticky;
  top: 150px;
}

.faq-tech__copy h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.06;
  letter-spacing: -.045em;
  color: #06142c;
}

.faq-tech__copy p {
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.8;
}

.faq-tech__cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  background: linear-gradient(135deg, #06142c, #0f5cff);
  box-shadow: 0 18px 40px rgba(15, 92, 255, .22);
  transition: .22s ease;
}

.faq-tech__cta span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
}

.faq-tech__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(15, 92, 255, .30);
}

.faq-tech__list {
  display: grid;
  gap: 14px;
}

.faq-tech__item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .78));
  border: 1px solid rgba(219, 229, 243, .92);
  box-shadow:
    0 18px 48px rgba(15, 36, 80, .09),
    inset 0 1px 0 rgba(255, 255, 255, .75);
  backdrop-filter: blur(18px);
  transition: .25s ease;
}

.faq-tech__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 0%, rgba(0, 194, 255, .16), transparent 32%),
    linear-gradient(135deg, rgba(15, 92, 255, .08), transparent 44%);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}

.faq-tech__item[open] {
  border-color: rgba(15, 92, 255, .25);
  box-shadow:
    0 24px 64px rgba(15, 36, 80, .13),
    inset 0 1px 0 rgba(255, 255, 255, .82);
}

.faq-tech__item[open]::before {
  opacity: 1;
}

.faq-tech__item summary {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 18px 58px 18px 20px;
  cursor: pointer;
  list-style: none;
  color: #06142c;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.35;
}

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

.faq-tech__item summary span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .9), transparent 34%),
    linear-gradient(135deg, #0f5cff, #00c2ff);
  box-shadow: 0 14px 30px rgba(15, 92, 255, .22);
}

.faq-tech__item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #0f5cff;
  background: rgba(15, 92, 255, .08);
  font-size: 22px;
  font-weight: 800;
  transition: .2s ease;
}

.faq-tech__item[open] summary::after {
  content: "–";
  color: #fff;
  background: linear-gradient(135deg, #0f5cff, #00c2ff);
}

.faq-tech__item p {
  position: relative;
  z-index: 2;
  margin: -4px 58px 22px 74px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 980px) {
  .faq-tech__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-tech__copy {
    position: relative;
    top: auto;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .faq-tech__item {
    border-radius: 20px;
  }

  .faq-tech__item summary {
    min-height: auto;
    padding: 16px 52px 16px 16px;
    font-size: 14.5px;
    align-items: flex-start;
  }

  .faq-tech__item summary span {
    width: 34px;
    height: 34px;
    border-radius: 13px;
    font-size: 11px;
  }

  .faq-tech__item summary::after {
    right: 14px;
    width: 30px;
    height: 30px;
  }

  .faq-tech__item p {
    margin: -2px 18px 18px 66px;
    font-size: 14px;
  }

  .faq-tech__cta {
    width: 100%;
    justify-content: center;
  }
}

.floating-wa-tech {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow:
    0 22px 50px rgba(22, 163, 74, .34),
    inset 0 1px 0 rgba(255, 255, 255, .28);
  transition: .22s ease;
}

.floating-wa-tech:hover {
  transform: translateY(-3px);
  box-shadow:
    0 28px 64px rgba(22, 163, 74, .44),
    inset 0 1px 0 rgba(255, 255, 255, .34);
}

.floating-wa-tech__hot {
  padding: 5px 8px;
  border-radius: 999px;
  color: #16a34a;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
  background: #fff;
  animation: floatingHotPulse 1.8s ease-in-out infinite;
}

.floating-wa-tech__icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
}

.floating-wa-tech__icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@keyframes floatingHotPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

.site-footer-tech {
  position: relative;
  overflow: hidden;
  padding: 54px 0 26px;
  color: #cbd5e1;
  background:
    radial-gradient(circle at 14% 0%, rgba(0, 194, 255, .16), transparent 30%),
    radial-gradient(circle at 86% 0%, rgba(15, 92, 255, .18), transparent 34%),
    linear-gradient(135deg, #041020, #06142c 52%, #071a3d);
}

.site-footer-tech::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 52px 52px;
}

.site-footer-tech__glow {
  position: absolute;
  right: -140px;
  top: -140px;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  background: rgba(0, 194, 255, .18);
  filter: blur(36px);
  pointer-events: none;
}

.site-footer-tech__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 32px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.footer-brand-mark>span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg, #0f5cff, #00c2ff);
  box-shadow: 0 18px 42px rgba(0, 194, 255, .22);
}

.footer-brand-mark strong,
.footer-brand-mark small {
  display: block;
}

.footer-brand-mark strong {
  color: #fff;
  font-size: 18px;
  letter-spacing: -.03em;
}

.footer-brand-mark small {
  margin-top: 4px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
}

.site-footer-tech__brand p {
  max-width: 560px;
  margin: 18px 0 0;
  color: #94a3b8;
  line-height: 1.75;
}

.site-footer-tech__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-footer-tech__links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 850;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .10);
  transition: .22s ease;
}

.site-footer-tech__links a:hover {
  color: #fff;
  background: rgba(15, 92, 255, .45);
  border-color: rgba(0, 194, 255, .28);
}

.site-footer-tech__bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  color: #94a3b8;
  font-size: 13px;
}

.site-footer-tech__bottom p {
  margin: 0;
}

@media (max-width: 720px) {
  .floating-wa-tech {
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: center;
  }

  .site-footer-tech {
    padding-bottom: 90px;
  }

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

  .site-footer-tech__links {
    justify-content: flex-start;
  }

  .site-footer-tech__bottom {
    display: grid;
  }
}

.product-detail-main {
  background: #f8fbff;
}

.product-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  padding-top: 78px;
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 194, 255, .18), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(15, 92, 255, .20), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 52%, #eef6ff 100%);
}

.product-hero__grid-bg {
  position: absolute;
  inset: 0;
  opacity: .38;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 92, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 92, 255, .07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
}

.product-hero__orb {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(38px);
  opacity: .42;
  pointer-events: none;
}

.product-hero__orb--a {
  right: -130px;
  top: 120px;
  background: rgba(15, 92, 255, .28);
}

.product-hero__orb--b {
  left: -150px;
  bottom: 70px;
  background: rgba(0, 194, 255, .24);
}

.product-hero__wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .98fr;
  align-items: center;
  gap: 58px;
}

.product-back {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding: 10px 14px 10px 10px;
  border-radius: 999px;
  color: #06142c;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(219, 229, 243, .95);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
  backdrop-filter: blur(18px);
  transition: .22s ease;
}

.product-back:hover {
  transform: translateX(-4px);
  color: #0f5cff;
  border-color: rgba(15, 92, 255, .28);
}

.product-back>span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #06142c, #0f5cff);
}

.product-back small,
.product-back strong {
  display: block;
  line-height: 1.05;
}

.product-back small {
  color: #64748b;
  font-size: 11px;
  font-weight: 850;
}

.product-back strong {
  margin-top: 3px;
  font-size: 13px;
  font-weight: 950;
}

.product-hero__pill {
  margin-bottom: 18px;
}

.product-hero h1 {
  margin: 0 0 18px;
  color: #06142c;
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: .95;
  letter-spacing: -.07em;
}

.product-hero__copy>p {
  max-width: 660px;
  margin: 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.85;
}

.product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.product-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.product-hero__trust span {
  padding: 9px 12px;
  border-radius: 999px;
  color: #174ea6;
  font-size: 13px;
  font-weight: 900;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(219, 229, 243, .94);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}

.product-hero__visual {
  position: relative;
  min-height: 560px;
}

.product-hero__screen {
  position: absolute;
  inset: 28px 18px 62px 24px;
  overflow: hidden;
  border-radius: 38px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .88);
  box-shadow:
    0 34px 90px rgba(15, 36, 80, .20),
    inset 0 1px 0 rgba(255, 255, 255, .78);
  backdrop-filter: blur(20px);
}

.product-hero__screen-top {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  color: #fff;
  background: rgba(6, 20, 44, .94);
}

.product-hero__screen-top i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .34);
}

.product-hero__screen-top strong {
  margin-left: 8px;
  font-size: 13px;
  letter-spacing: .02em;
}

.product-hero__image {
  position: relative;
  height: calc(100% - 54px);
}

.product-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 20, 44, .04), rgba(6, 20, 44, .46)),
    radial-gradient(circle at 50% 20%, transparent 18%, rgba(0, 0, 0, .18));
}

.product-hero__scan {
  position: absolute;
  left: 0;
  right: 0;
  top: 18%;
  height: 2px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, .95), transparent);
  box-shadow: 0 0 22px rgba(0, 194, 255, .9);
  animation: productScan 3.8s ease-in-out infinite;
}

@keyframes productScan {

  0%,
  100% {
    transform: translateY(0);
    opacity: .35;
  }

  50% {
    transform: translateY(230px);
    opacity: 1;
  }
}

.product-hero__status {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 3;
  display: grid;
  gap: 3px;
  padding: 12px 15px;
  border-radius: 18px;
  color: #fff;
  background: rgba(6, 20, 44, .78);
  backdrop-filter: blur(14px);
}

.product-hero__status b {
  color: #22c55e;
  font-size: 12px;
  letter-spacing: .16em;
}

.product-hero__status small {
  color: #e2e8f0;
  font-size: 12px;
  font-weight: 750;
}

.product-floating {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 14px 15px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(219, 229, 243, .95);
  box-shadow: 0 22px 52px rgba(15, 23, 42, .14);
  backdrop-filter: blur(18px);
}

.product-floating span {
  width: 38px;
  height: 38px;
  border-radius: 15px;
  background:
    radial-gradient(circle at 35% 30%, #fff, transparent 38%),
    linear-gradient(135deg, #0f5cff, #00c2ff);
  box-shadow: 0 12px 26px rgba(15, 92, 255, .24);
}

.product-floating b,
.product-floating small {
  display: block;
}

.product-floating b {
  color: #06142c;
  font-size: 14px;
}

.product-floating small {
  margin-top: 3px;
  color: #64748b;
  font-size: 12px;
  font-weight: 750;
}

.product-floating--a {
  right: 0;
  top: 108px;
}

.product-floating--b {
  left: 0;
  bottom: 98px;
}

.product-nav {
  position: sticky;
  top: 78px;
  z-index: 42;
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(18px);
  border-block: 1px solid rgba(226, 232, 240, .76);
}

.product-nav__inner {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 13px 0;
  scrollbar-width: none;
}

.product-nav__inner::-webkit-scrollbar {
  display: none;
}

.product-nav__inner a {
  flex: 0 0 auto;
  padding: 10px 15px;
  border-radius: 999px;
  color: #334155;
  font-size: 13px;
  font-weight: 900;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(226, 232, 240, .92);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
  transition: .22s ease;
}

.product-nav__inner a:hover {
  color: #0f5cff;
  border-color: rgba(15, 92, 255, .35);
  background: rgba(15, 92, 255, .07);
}

.product-info {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.product-info__bg {
  position: absolute;
  inset: 0;
  opacity: .34;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 92, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 92, 255, .07) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 74%, transparent 100%);
}

.product-info__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 28px;
}

.product-info__panel,
.product-spec-card {
  border-radius: 34px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .76));
  border: 1px solid rgba(219, 229, 243, .92);
  box-shadow:
    0 24px 70px rgba(15, 36, 80, .11),
    inset 0 1px 0 rgba(255, 255, 255, .72);
  backdrop-filter: blur(18px);
}

.product-info__panel h2 {
  margin: 0 0 22px;
  color: #06142c;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.product-value-list {
  display: grid;
  gap: 12px;
}

.product-value-list div {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  background: #f8fbff;
  border: 1px solid rgba(219, 229, 243, .92);
}

.product-value-list span {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #15803d;
  font-weight: 950;
  background: #dcfce7;
}

.product-value-list p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.product-spec-card h3 {
  margin: 0 0 10px;
  color: #06142c;
  font-size: 28px;
  letter-spacing: -.04em;
}

.product-spec-card>p {
  margin: 0 0 22px;
  color: #64748b;
  line-height: 1.75;
}

.product-spec-group {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.product-spec-group small {
  color: #64748b;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.product-spec-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  background: linear-gradient(135deg, #0f5cff, #00c2ff);
  box-shadow: 0 12px 26px rgba(15, 92, 255, .18);
}

.product-spec-tags--soft span {
  color: #174ea6;
  background: #eef5ff;
  border: 1px solid rgba(219, 229, 243, .92);
  box-shadow: none;
}

.product-spec-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  background: linear-gradient(135deg, #06142c, #0f5cff);
  box-shadow: 0 18px 40px rgba(15, 92, 255, .22);
}

.product-spec-cta span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
}

.product-packages {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 194, 255, .16), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(15, 92, 255, .15), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 52%, #eef6ff 100%);
}

.product-packages__bg {
  position: absolute;
  inset: 0;
  opacity: .34;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 92, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 92, 255, .07) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 74%, transparent 100%);
}

.product-packages .container {
  position: relative;
}

.product-price-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.product-price-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .76));
  border: 1px solid rgba(219, 229, 243, .92);
  box-shadow:
    0 22px 60px rgba(15, 36, 80, .10),
    inset 0 1px 0 rgba(255, 255, 255, .72);
  backdrop-filter: blur(18px);
  transition: .28s ease;
}

.product-price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(15, 92, 255, .25);
  box-shadow:
    0 32px 84px rgba(15, 36, 80, .16),
    inset 0 1px 0 rgba(255, 255, 255, .82);
}

.product-price-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-chip {
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #0f5cff, #00c2ff);
}

.product-price-card__top small {
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
}

.product-price-card h3 {
  margin: 22px 0 10px;
  color: #06142c;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -.04em;
}

.product-price-card strong {
  display: block;
  color: #0f5cff;
  font-size: 28px;
  letter-spacing: -.04em;
}

.product-price-card p {
  flex: 1;
  margin: 14px 0 24px;
  color: #64748b;
  line-height: 1.72;
}

@media (max-width: 1080px) {

  .product-hero__wrap,
  .product-info__grid {
    grid-template-columns: 1fr;
  }

  .product-hero__copy {
    text-align: center;
    margin-inline: auto;
  }

  .product-back {
    margin-inline: auto;
  }

  .product-hero__actions,
  .product-hero__trust {
    justify-content: center;
  }

  .product-hero__visual {
    max-width: 660px;
    width: 100%;
    margin-inline: auto;
    min-height: 470px;
  }

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

@media (max-width: 720px) {
  .product-hero {
    min-height: auto;
    padding-top: 48px;
  }

  .product-hero h1 {
    font-size: 40px;
    line-height: .98;
    letter-spacing: -.055em;
  }

  .product-hero__copy>p {
    font-size: 15.5px;
    line-height: 1.75;
  }

  .product-hero__actions .btn {
    width: 100%;
  }

  .product-hero__visual {
    min-height: 390px;
  }

  .product-hero__screen {
    inset: 8px 0 52px;
    border-radius: 28px;
  }

  .product-hero__screen-top {
    height: 46px;
  }

  .product-hero__screen-top strong {
    font-size: 11px;
  }

  .product-floating {
    min-width: auto;
    padding: 11px 12px;
    border-radius: 18px;
  }

  .product-floating span {
    width: 32px;
    height: 32px;
    border-radius: 13px;
  }

  .product-floating b {
    font-size: 12.5px;
  }

  .product-floating small {
    font-size: 11px;
  }

  .product-floating--a {
    right: -4px;
    top: 70px;
  }

  .product-floating--b {
    left: -4px;
    bottom: 96px;
  }

  .product-nav {
    top: 72px;
  }

  .product-info__panel,
  .product-spec-card {
    border-radius: 26px;
    padding: 22px;
  }

  .product-price-grid {
    grid-template-columns: 1fr;
  }

  .product-price-card {
    border-radius: 26px;
  }
}

.vr-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
}

.vr-fab__panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: min(420px, calc(100vw - 32px));
  max-height: min(72vh, 620px);
  overflow: auto;
  padding: 18px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 194, 255, .14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 251, 255, .90));
  border: 1px solid rgba(219, 229, 243, .94);
  box-shadow:
    0 34px 90px rgba(15, 36, 80, .24),
    inset 0 1px 0 rgba(255, 255, 255, .82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.96);
  transform-origin: right bottom;
  transition: .24s ease;
}

.vr-fab.is-open .vr-fab__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.vr-fab__section-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.vr-fab__label {
  color: #06142c;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vr-fab__section-head small {
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
}

.vr-fab__quick-list {
  display: grid;
  gap: 10px;
}

.vr-fab__item {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(219, 229, 243, .92);
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .07);
  overflow: hidden;
}

.vr-fab__item--primary {
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 61, 127, .14), transparent 36%),
    linear-gradient(135deg, #06142c, #0f5cff);
  color: #fff;
}

.vr-fab__item--wa {
  background:
    radial-gradient(circle at 80% 0%, rgba(34, 197, 94, .16), transparent 36%),
    linear-gradient(135deg, #128c3a, #22c55e);
  color: #fff;
}

.vr-fab__badge {
  position: absolute;
  right: 14px;
  top: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  font-weight: 950;
  background: linear-gradient(135deg, #ff6a00, #ff3d7f);
  box-shadow: 0 10px 24px rgba(255, 61, 127, .38);
}

.vr-fab__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: rgba(255, 255, 255, .18);
  font-size: 20px;
}

.vr-fab__icon--wa svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.vr-fab__item strong,
.vr-fab__item small {
  display: block;
}

.vr-fab__item strong {
  font-size: 14px;
  font-weight: 950;
}

.vr-fab__item small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.vr-fab__item b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
}

.vr-fab__divider {
  height: 1px;
  margin: 16px 0;
  background: rgba(219, 229, 243, .92);
}

.vr-fab__nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.vr-fab__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 17px;
  color: #334155;
  font-size: 13px;
  font-weight: 900;
  background: #f8fbff;
  border: 1px solid rgba(219, 229, 243, .92);
  transition: .2s ease;
}

.vr-fab__nav span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr-fab__nav:hover {
  color: #0f5cff;
  border-color: rgba(15, 92, 255, .32);
  background: rgba(15, 92, 255, .07);
}

.vr-fab__nav--hot {
  color: #fff;
  background: linear-gradient(135deg, #ff6a00, #ff3d7f);
  border: 0;
}

.vr-fab__trigger {
  position: relative;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #06142c, #0f5cff 58%, #00c2ff);
  box-shadow:
    0 24px 54px rgba(15, 92, 255, .34),
    inset 0 1px 0 rgba(255, 255, 255, .32);
}

.vr-fab__pulse {
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(15, 92, 255, .28);
  animation: vrFabPulse 1.8s ease-in-out infinite;
}

.vr-fab__hint {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  padding: 9px 12px;
  border-radius: 999px;
  color: #06142c;
  font-size: 12px;
  font-weight: 950;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(219, 229, 243, .92);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .12);
}

.vr-fab__open,
.vr-fab__close {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 900;
  transition: .2s ease;
}

.vr-fab__close {
  opacity: 0;
  transform: rotate(-90deg) scale(.8);
}

.vr-fab.is-open .vr-fab__open {
  opacity: 0;
  transform: rotate(90deg) scale(.8);
}

.vr-fab.is-open .vr-fab__close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

@keyframes vrFabPulse {

  0%,
  100% {
    transform: scale(.96);
    opacity: .35;
  }

  50% {
    transform: scale(1.12);
    opacity: .9;
  }
}

@media (max-width: 720px) {
  .vr-fab {
    right: 16px;
    bottom: 16px;
  }

  .vr-fab__panel {
    right: -2px;
    bottom: 74px;
    width: calc(100vw - 32px);
    max-height: 68vh;
    border-radius: 24px;
  }

  .vr-fab__hint {
    display: none;
  }

  .vr-fab__nav-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer-clean {
  position: relative;
  overflow: hidden;
  padding: 54px 0 28px;
  color: #cbd5e1;
  background:
    radial-gradient(circle at 16% 0%, rgba(0, 194, 255, .16), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(15, 92, 255, .18), transparent 34%),
    linear-gradient(135deg, #041020, #06142c 52%, #071a3d);
}

.site-footer-clean__bg {
  position: absolute;
  inset: 0;
  opacity: .15;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 52px 52px;
}

.site-footer-clean__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.footer-brand-clean {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.footer-brand-clean>span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg, #0f5cff, #00c2ff);
  box-shadow: 0 18px 42px rgba(0, 194, 255, .22);
}

.footer-brand-clean strong,
.footer-brand-clean small {
  display: block;
}

.footer-brand-clean strong {
  color: #fff;
  font-size: 18px;
  letter-spacing: -.03em;
}

.footer-brand-clean small {
  margin-top: 4px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
}

.site-footer-clean__brand p {
  max-width: 560px;
  margin: 18px 0 0;
  color: #94a3b8;
  line-height: 1.75;
}

.site-footer-clean__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-footer-clean__nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 850;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .10);
  transition: .22s ease;
}

.site-footer-clean__nav a:hover {
  color: #fff;
  background: rgba(15, 92, 255, .45);
  border-color: rgba(0, 194, 255, .28);
}

.site-footer-clean__bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  color: #94a3b8;
  font-size: 13px;
}

.site-footer-clean__bottom p {
  margin: 0;
}

/* FLOATING CLEAN */
.vr-fab-clean {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 140;
}

.vr-fab-clean__panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: min(390px, calc(100vw - 32px));
  max-height: min(70vh, 620px);
  overflow: auto;
  padding: 16px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 0%, rgba(0, 194, 255, .14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .97), rgba(248, 251, 255, .92));
  border: 1px solid rgba(219, 229, 243, .95);
  box-shadow:
    0 34px 90px rgba(15, 36, 80, .24),
    inset 0 1px 0 rgba(255, 255, 255, .84);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.96);
  transform-origin: right bottom;
  transition: .24s ease;
}

.vr-fab-clean.is-open .vr-fab-clean__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.vr-fab-clean__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  margin-bottom: 12px;
}

.vr-fab-clean__head strong,
.vr-fab-clean__head small {
  display: block;
}

.vr-fab-clean__head strong {
  color: #06142c;
  font-size: 16px;
  font-weight: 950;
}

.vr-fab-clean__head small {
  margin-top: 3px;
  color: #64748b;
  font-size: 12px;
  font-weight: 750;
}

.vr-fab-clean__head>span {
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
  background: linear-gradient(135deg, #ff6a00, #ff3d7f);
  box-shadow: 0 10px 24px rgba(255, 61, 127, .36);
}

.vr-fab-clean__actions {
  display: grid;
  gap: 10px;
}

.vr-fab-clean__action {
  display: grid;
  grid-template-columns: 44px 1fr 30px;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 14px;
  border-radius: 22px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
}

.vr-fab-clean__action--primary {
  background: linear-gradient(135deg, #06142c, #0f5cff);
}

.vr-fab-clean__action--wa {
  background: linear-gradient(135deg, #128c3a, #22c55e);
}

.vr-fab-clean__action i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: rgba(255, 255, 255, .18);
  font-style: normal;
  font-size: 20px;
}

.vr-fab-clean__action svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.vr-fab-clean__action strong,
.vr-fab-clean__action small {
  display: block;
}

.vr-fab-clean__action strong {
  font-size: 14px;
  font-weight: 950;
}

.vr-fab-clean__action small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.vr-fab-clean__action b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
}

.vr-fab-clean__divider {
  height: 1px;
  margin: 14px 0;
  background: rgba(219, 229, 243, .92);
}

.vr-fab-clean__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.vr-fab-clean__nav a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 11px;
  border-radius: 16px;
  color: #334155;
  font-size: 12.5px;
  font-weight: 900;
  background: #f8fbff;
  border: 1px solid rgba(219, 229, 243, .92);
  transition: .2s ease;
}

.vr-fab-clean__nav a:hover {
  color: #0f5cff;
  background: rgba(15, 92, 255, .07);
  border-color: rgba(15, 92, 255, .32);
}

.vr-fab-clean__trigger {
  position: relative;
  min-width: 168px;
  height: 58px;
  padding: 0 58px 0 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #06142c, #0f5cff 60%, #00c2ff);
  box-shadow:
    0 24px 54px rgba(15, 92, 255, .34),
    inset 0 1px 0 rgba(255, 255, 255, .32);
}

.vr-fab-clean__ring {
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(15, 92, 255, .28);
  animation: vrFabCleanPulse 1.8s ease-in-out infinite;
}

.vr-fab-clean__text {
  position: relative;
  z-index: 2;
  font-size: 13px;
  font-weight: 950;
}

.vr-fab-clean__icon {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  font-size: 24px;
  transition: .2s ease;
}

.vr-fab-clean__icon--close {
  opacity: 0;
  transform: rotate(-90deg) scale(.8);
}

.vr-fab-clean.is-open .vr-fab-clean__icon--open {
  opacity: 0;
  transform: rotate(90deg) scale(.8);
}

.vr-fab-clean.is-open .vr-fab-clean__icon--close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

@keyframes vrFabCleanPulse {

  0%,
  100% {
    transform: scale(.96);
    opacity: .35;
  }

  50% {
    transform: scale(1.08);
    opacity: .85;
  }
}

@media (max-width: 720px) {
  .site-footer-clean {
    padding-bottom: 96px;
  }

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

  .site-footer-clean__nav {
    justify-content: flex-start;
  }

  .site-footer-clean__bottom {
    display: grid;
  }

  .vr-fab-clean {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .vr-fab-clean__panel {
    right: 0;
    bottom: 70px;
    width: 100%;
    border-radius: 24px;
  }

  .vr-fab-clean__trigger {
    width: 100%;
    min-width: 0;
  }

  .vr-fab-clean__nav {
    grid-template-columns: 1fr;
  }
}

.vr-fab-clean__nav a {
  gap: 8px;
}

.vr-fab-clean__nav-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  font-size: 14px;
  background: rgba(15, 92, 255, .08);
}

.vr-fab-clean__nav a:hover .vr-fab-clean__nav-icon {
  background: linear-gradient(135deg, #0f5cff, #00c2ff);
}