:root {
  --bg: #050709;
  --bg-soft: #090d11;
  --charcoal: #101418;
  --charcoal-2: #171b20;
  --card: rgba(18, 23, 28, 0.86);
  --card-hover: rgba(24, 30, 36, 0.95);
  --white: #ffffff;
  --muted: #b7bdc6;
  --muted-2: #87909c;
  --gold: #e7b540;
  --gold-2: #f4ce72;
  --gold-dark: #9f7420;
  --border: rgba(231, 181, 64, 0.32);
  --border-soft: rgba(255, 255, 255, 0.11);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  --gold-glow: 0 0 0 1px rgba(231, 181, 64, 0.15), 0 20px 50px rgba(231, 181, 64, 0.16);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1440px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 10%, rgba(231, 181, 64, 0.11), transparent 30%),
    radial-gradient(circle at 86% 16%, rgba(231, 181, 64, 0.08), transparent 28%),
    linear-gradient(135deg, #1b1f24 0%, #0a0d10 42%, #050709 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 70%, transparent);
}

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

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

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

.container {
  width: min(var(--container), calc(100% - clamp(32px, 7vw, 112px)));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 99;
  padding: 10px 14px;
  background: var(--gold);
  color: #100b03;
  border-radius: 999px;
  font-weight: 800;
  transition: top .25s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(5, 7, 9, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 7, 9, 0.94);
  border-color: rgba(231, 181, 64, 0.16);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand__mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 22px rgba(231, 181, 64, .22));
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__text {
  display: grid;
  line-height: 1.02;
  letter-spacing: .2px;
}

.brand__text strong {
  color: #f7f9fb;
  font-size: 1.05rem;
  font-weight: 800;
}

.brand__text span {
  color: var(--gold);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .7px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  color: #eff2f6;
  font-size: .92rem;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
  color: rgba(255,255,255,.88);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  border-radius: 99px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--gold-2);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 850;
  letter-spacing: -.01em;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn--gold {
  color: #161004;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 10px 26px rgba(231, 181, 64, .22), inset 0 1px 0 rgba(255,255,255,.45);
}

.btn--gold:hover,
.btn--gold:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(231, 181, 64, .3), inset 0 1px 0 rgba(255,255,255,.55);
}

.btn--outline {
  color: #fff;
  border-color: rgba(231, 181, 64, .55);
  background: rgba(5, 7, 9, .42);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  color: var(--gold-2);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
}

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

.nav-cta {
  min-height: 44px;
  padding-inline: 20px;
  font-size: .88rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 999px;
  transition: transform .22s ease, opacity .22s ease;
}

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

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

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

.mobile-menu {
  display: none;
}

.section-frame {
  width: 100%;
  max-width: none;
  margin: 0;
  border-top: 1px solid rgba(231, 181, 64, .28);
  border-bottom: 1px solid rgba(231, 181, 64, .18);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(13,16,20,.98), rgba(5,7,9,.98));
}

.hero {
  position: relative;
  min-height: clamp(720px, calc(100vh - var(--header-height)), 900px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,7,9,.94) 0%, rgba(5,7,9,.88) 44%, rgba(5,7,9,.38) 72%, rgba(5,7,9,.78) 100%),
    radial-gradient(circle at 32% 28%, rgba(231,181,64,.1), transparent 28%),
    linear-gradient(140deg, #06090d, #15191e 55%, #050709);
}

.hero__grid {
  position: relative;
  min-height: clamp(720px, calc(100vh - var(--header-height)), 900px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr);
  gap: clamp(42px, 5vw, 82px);
  align-items: center;
  padding-top: clamp(54px, 6vw, 86px);
  padding-bottom: clamp(54px, 6vw, 86px);
}

.hero__content {
  max-width: 760px;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: .82rem;
  line-height: 1.3;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .065em;
}

.hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(3.15rem, 5.1vw, 5.65rem);
  line-height: 1.08;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.hero h1 span,
.section-heading h2,
.package-card--featured h3,
.preview-copy h2 span {
  color: var(--gold);
}

.hero__lead {
  margin: 22px 0 0;
  max-width: 650px;
  color: #d4d8dd;
  font-size: 1.1rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__actions .btn {
  min-height: 56px;
  padding-inline: 24px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 36px;
  max-width: 840px;
}

.benefit-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding: 12px 13px;
  border: 1px solid rgba(231, 181, 64, .25);
  border-radius: 10px;
  background: rgba(10, 13, 16, .58);
  color: #f3f5f7;
  font-size: .79rem;
  font-weight: 750;
  line-height: 1.25;
}

.benefit-card svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  fill: var(--gold);
}

.hero__visual {
  position: relative;
  min-height: 650px;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  z-index: 1;
}

.hero-device {
  position: relative;
  width: min(620px, 100%);
  height: 100%;
  min-height: 650px;
  overflow: hidden;
  border-left: 1px solid rgba(231,181,64,.18);
  border-right: 1px solid rgba(255,255,255,.08);
  box-shadow: -44px 0 96px rgba(0,0,0,.5);
  isolation: isolate;
}

.hero-device::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(5,7,9,.05), transparent 38%, rgba(231,181,64,.15) 74%, rgba(5,7,9,.18));
  pointer-events: none;
}

.hero-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.03);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(28px);
  opacity: .8;
  pointer-events: none;
}

.hero-glow--one {
  right: 14%;
  bottom: 18%;
  width: 120px;
  height: 120px;
  background: rgba(231,181,64,.18);
}

.hero-glow--two {
  top: 18%;
  left: 14%;
  width: 90px;
  height: 90px;
  background: rgba(255,255,255,.08);
}

.problem-solution {
  margin-top: 0;
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr 42px 1fr;
  align-items: stretch;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  background: #f6f7f8;
  color: #111419;
  box-shadow: 0 18px 58px rgba(0,0,0,.35);
  overflow: hidden;
}

.split-panel__block {
  padding: 28px 36px 30px;
  background: linear-gradient(135deg, #ffffff, #f4f5f6);
}

.split-panel__block--solution {
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
}

.split-panel h2 {
  margin: 0 0 22px;
  text-align: center;
  color: #15171a;
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.02em;
}

.mini-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
}

.mini-list article {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.mini-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(12,17,22,.08);
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}

.mini-icon svg {
  width: 24px;
  height: 24px;
  fill: #111419;
}

.mini-list--solution .mini-icon {
  border-color: rgba(231,181,64,.42);
}

.mini-list--solution .mini-icon svg {
  fill: #161719;
}

.mini-list p {
  margin: 0;
  font-size: .86rem;
  line-height: 1.28;
  font-weight: 750;
}

.split-arrow {
  position: relative;
  background: linear-gradient(90deg, #f3f4f5, #fff);
}

.split-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-8px, -50%);
  width: 0;
  height: 0;
  border-top: 36px solid transparent;
  border-bottom: 36px solid transparent;
  border-left: 36px solid rgba(18,23,28,.18);
}

.section {
  padding: 72px 0;
}

.section--dark {
  background:
    radial-gradient(circle at 50% 0%, rgba(231,181,64,.1), transparent 34%),
    linear-gradient(180deg, rgba(5,7,9,.98), rgba(8,11,14,.98));
}

.section-heading {
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  max-width: 720px;
  text-align: center;
}

.section-heading p {
  grid-column: 1 / -1;
  margin: -10px auto 0;
  max-width: 620px;
  color: var(--muted);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  letter-spacing: -.035em;
  line-height: 1.1;
}

.line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231,181,64,.65), transparent);
}

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

.service-card {
  position: relative;
  min-height: 220px;
  padding: 26px 18px 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 14px 38px rgba(0,0,0,.28);
  text-align: center;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(231,181,64,.15), transparent 45%);
  opacity: 0;
  transition: opacity .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(231,181,64,.48);
  box-shadow: 0 22px 54px rgba(0,0,0,.38), 0 0 0 1px rgba(231,181,64,.08);
}

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

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card__icon {
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  width: 58px;
  height: 58px;
  color: var(--gold);
}

.service-card__icon svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: currentColor;
  stroke-width: .85;
}

.service-card h3 {
  margin: 0 auto 10px;
  max-width: 160px;
  color: #fff;
  font-size: .98rem;
  line-height: 1.25;
  letter-spacing: -.02em;
}

.service-card p {
  margin: 0;
  color: #c3c9d0;
  font-size: .84rem;
  line-height: 1.55;
}

.package-section {
  padding-top: 10px;
}

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

.package-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 26px;
  border: 1px solid rgba(231,181,64,.34);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.03));
  box-shadow: 0 16px 42px rgba(0,0,0,.34);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.package-card:hover {
  transform: translateY(-5px);
  border-color: rgba(231,181,64,.66);
  box-shadow: 0 26px 64px rgba(0,0,0,.44), 0 0 32px rgba(231,181,64,.08);
}

.package-card--featured {
  border-color: rgba(231,181,64,.8);
  box-shadow: 0 0 0 1px rgba(231,181,64,.16), 0 22px 62px rgba(231,181,64,.12);
}

.popular-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(231,181,64,.1);
  border: 1px solid rgba(231,181,64,.26);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.popular-badge::before {
  content: "★";
}

.package-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--gold);
}

.package-card__icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-width: .72;
}

.package-card__icon--diamond svg {
  fill: none;
}

.package-card h3 {
  margin: 0 0 4px;
  font-size: 1.2rem;
  line-height: 1.15;
}

.package-card p {
  margin: 0;
  color: #c4c9cf;
  font-size: .92rem;
}

.package-card ul {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  padding: 18px 0 0 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #d3d8df;
  font-size: .9rem;
}

.package-card li + li {
  margin-top: 6px;
}

.package-card a {
  grid-column: 1 / -1;
  display: block;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #f1f4f7;
  font-weight: 750;
  text-align: center;
  line-height: 1.35;
}

.package-card a:hover,
.package-card a:focus-visible {
  color: var(--gold-2);
}

.product-preview {
  background: linear-gradient(180deg, #050709, #0b0f13 62%, #050709);
}

.preview-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 42px;
  align-items: center;
}

.preview-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.preview-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #c5cbd2;
  max-width: 560px;
}

.preview-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.preview-points span {
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(231,181,64,.32);
  background: rgba(231,181,64,.07);
  color: var(--gold-2);
  font-size: .85rem;
  font-weight: 800;
}

.preview-visual {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(231,181,64,.25);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  box-shadow: var(--shadow);
}

.preview-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,7,9,.55), transparent 48%, rgba(231,181,64,.08)),
    radial-gradient(circle at 82% 28%, rgba(231,181,64,.12), transparent 28%);
  pointer-events: none;
}

.preview-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.faq-section {
  background: #f5f6f7;
  color: #101318;
}

.faq-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 46px;
  align-items: start;
}

.faq-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.05em;
}

.faq-copy p:not(.eyebrow) {
  color: #545b66;
}

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

.faq-item {
  border: 1px solid rgba(13,18,24,.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: #12161b;
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(231,181,64,.5);
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 2px;
  border-radius: 99px;
  background: #191d22;
  transform: translate(-50%, -50%);
}

.faq-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .22s ease;
}

.faq-item.active button span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.faq-content p {
  margin: 0;
  padding: 0 22px 20px;
  color: #5b626d;
}

.final-cta {
  padding: 74px 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(231,181,64,.16), transparent 32%),
    linear-gradient(135deg, #050709, #11161b);
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 42px;
  border: 1px solid rgba(231,181,64,.35);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    radial-gradient(circle at 82% 18%, rgba(231,181,64,.18), transparent 28%);
  box-shadow: var(--shadow);
}

.cta-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -.052em;
}

.cta-card p:not(.eyebrow) {
  color: #c7cdd4;
  margin: 14px 0 0;
  max-width: 680px;
}

.site-footer {
  padding: 44px 0 24px;
  background: #050709;
  border-top: 1px solid rgba(231,181,64,.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .9fr .8fr;
  gap: 40px;
  color: #c2c8d0;
}

.brand--footer {
  margin-bottom: 14px;
}

.site-footer h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1rem;
}

.site-footer p {
  margin: 0;
  color: #aeb5be;
}

.site-footer a:not(.brand) {
  color: var(--gold-2);
  font-weight: 780;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #818a95;
  font-size: .9rem;
}

.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: #fff;
  background: #22c55e;
  box-shadow: 0 14px 38px rgba(34,197,94,.38), 0 0 0 7px rgba(34,197,94,.1);
  transition: transform .22s ease, box-shadow .22s ease;
}

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

.floating-wa:hover,
.floating-wa:focus-visible {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 44px rgba(34,197,94,.5), 0 0 0 9px rgba(34,197,94,.12);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

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

@media (max-width: 1180px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  :root {
    --header-height: 76px;
    --container: 100%;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(231,181,64,.25);
    border-radius: 18px;
    background: rgba(7, 10, 13, .98);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  }

  .mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu a:not(.btn) {
    padding: 12px 14px;
    border-radius: 12px;
    color: #f2f5f7;
    font-weight: 800;
  }

  .mobile-menu a:not(.btn):hover,
  .mobile-menu a:not(.btn):focus-visible {
    background: rgba(255,255,255,.06);
    color: var(--gold-2);
  }

  .section-frame {
    width: 100%;
    margin-top: 0;
  }

  .hero,
  .hero__grid {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    padding-top: 42px;
    gap: 22px;
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5,7,9,.96) 0%, rgba(5,7,9,.92) 56%, rgba(5,7,9,.58) 100%),
      radial-gradient(circle at 50% 0%, rgba(231,181,64,.13), transparent 35%),
      linear-gradient(140deg, #06090d, #15191e 55%, #050709);
  }

  .hero__content {
    max-width: none;
  }

  .hero__visual {
    min-height: 390px;
    align-items: end;
  }

  .hero-device {
    height: 390px;
    width: 100%;
    border-top: 1px solid rgba(231,181,64,.16);
    border-left: 0;
    border-right: 0;
    border-radius: 18px;
  }

  .hero-device img {
    object-position: center 38%;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .split-panel {
    grid-template-columns: 1fr;
    width: 100%;
    border-radius: 0;
  }

  .split-arrow {
    display: none;
  }

  .package-grid,
  .preview-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767px) {
  .container {
    width: calc(100% - 28px);
  }

  .brand__mark {
    width: 46px;
    height: 46px;
  }

  .brand__text strong {
    font-size: .9rem;
  }

  .brand__text span {
    font-size: .76rem;
  }

  .section-frame {
    border-radius: 0;
    width: 100%;
  }

  .hero__grid {
    padding: 28px 14px 14px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 10.4vw, 3rem);
    letter-spacing: -.052em;
  }

  .hero__lead {
    font-size: .96rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 26px;
  }

  .hero__actions .btn,
  .final-cta .btn {
    width: 100%;
    min-height: 52px;
  }

  .benefit-grid {
    gap: 8px;
    margin-top: 26px;
  }

  .benefit-card {
    min-height: 66px;
    padding: 10px;
    font-size: .72rem;
  }

  .benefit-card svg {
    width: 22px;
    height: 22px;
  }

  .hero__visual {
    min-height: 320px;
  }

  .hero-device {
    height: 318px;
  }

  .split-panel {
    width: 100%;
  }

  .split-panel__block {
    padding: 30px 18px;
  }

  .mini-list {
    gap: 18px;
  }

  .mini-icon {
    width: 44px;
    height: 44px;
  }

  .mini-list p {
    font-size: .74rem;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    grid-template-columns: 52px auto 52px;
    gap: 12px;
    margin-bottom: 26px;
  }

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

  .service-card {
    min-height: unset;
    padding: 24px 20px;
  }

  .service-card h3 {
    max-width: none;
  }

  .package-grid {
    gap: 16px;
  }

  .package-card {
    grid-template-columns: auto 1fr;
    padding: 22px;
  }

  .preview-grid,
  .faq-grid {
    gap: 28px;
  }

  .preview-visual,
  .preview-visual img {
    min-height: 330px;
  }

  .faq-item button {
    padding: 18px 16px;
    font-size: .96rem;
  }

  .faq-content p {
    padding-inline: 16px;
  }

  .final-cta {
    padding: 56px 0;
  }

  .cta-card {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .footer-grid {
    gap: 24px;
  }

  .floating-wa {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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