@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700&family=Manrope:wght@400;500;700;800&display=swap");

:root {
  --bg-0: #0d0705;
  --bg-1: #1a0e08;
  --bg-2: #2d1a12;
  --text: #f5e6d0;
  --muted: #c4a882;
  --line: rgba(201, 168, 76, 0.24);
  --card: rgba(26, 14, 8, 0.72);
  --rose: #8b4513;
  --cyan: #c9a84c;
  --violet: #8b5e3c;
  --gold: #c9a84c;
  --gold-bright: #d4b65a;
  --gold-dim: #a8873a;
  --amber: #8b5e3c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(80vw 50vh at 95% -10%, rgba(139, 94, 60, 0.28), transparent 70%),
    radial-gradient(90vw 56vh at -8% 12%, rgba(139, 69, 19, 0.28), transparent 68%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 46%, var(--bg-2));
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 80px;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -15% -15% auto -15%;
  height: 55vh;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    radial-gradient(45% 50% at 20% 20%, rgba(201, 168, 76, 0.18), transparent 70%),
    radial-gradient(38% 42% at 78% 40%, rgba(139, 94, 60, 0.18), transparent 72%);
  filter: blur(14px);
  animation: nebulaDrift 20s ease-in-out infinite alternate;
}

body::after {
  inset: auto -15% -20% -15%;
  height: 48vh;
  background:
    radial-gradient(42% 48% at 12% 65%, rgba(201, 168, 76, 0.14), transparent 70%),
    radial-gradient(46% 42% at 84% 72%, rgba(139, 94, 60, 0.14), transparent 72%);
  filter: blur(16px);
  animation: nebulaDrift 24s ease-in-out infinite alternate-reverse;
}

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

.t826__galaxy {
  opacity: 0.4;
}

.t826__galaxy-wrapper {
  animation: t826__galaxy-fadeIn 1.6s linear forwards;
}

.t826__galaxy-wrapper > div {
  position: absolute;
  top: 0;
  left: 0;
}

.t826__galaxy-far-rec78788520 {
  width: 1px;
  height: 1px;
}

.t826__galaxy-mid-rec78788520 {
  width: 2px;
  height: 2px;
}

.t826__galaxy-near-rec78788520 {
  width: 3px;
  height: 3px;
}

.fx,
.spark-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.fx-aurora {
  background:
    radial-gradient(45vw 30vh at 20% 10%, rgba(201, 168, 76, 0.18), transparent 70%),
    radial-gradient(50vw 36vh at 80% 22%, rgba(139, 69, 19, 0.14), transparent 72%);
  animation: auroraShift 14s ease-in-out infinite alternate;
}

.fx-smoke::before,
.fx-smoke::after {
  content: "";
  position: absolute;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  filter: blur(34px);
  opacity: 0.16;
}

.fx-smoke::before {
  left: -18vw;
  top: 26vh;
  background: rgba(201, 168, 76, 0.7);
  animation: smokeOne 18s ease-in-out infinite;
}

.fx-smoke::after {
  right: -22vw;
  top: 48vh;
  background: rgba(139, 94, 60, 0.65);
  animation: smokeTwo 20s ease-in-out infinite;
}

.spark {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #ffd700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.9);
  animation-name: sparkle;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

main,
.topbar {
  width: min(720px, calc(100% - 20px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.topbar {
  margin-top: 12px;
  border: 1px solid rgba(201, 168, 76, 0.34);
  border-radius: 0;
  padding: 16px 18px 14px;
  text-align: center;
  background:
    linear-gradient(165deg, rgba(26, 14, 8, 0.88), rgba(18, 10, 6, 0.75)),
    radial-gradient(90% 130% at 50% -50%, rgba(201, 168, 76, 0.12), transparent);
  box-shadow:
    0 0 16px rgba(201, 168, 76, 0.1),
    inset 0 0 12px rgba(201, 168, 76, 0.08);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.topbar::before,
.topbar::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.topbar::before {
  width: 62%;
  height: 160%;
  left: -18%;
  top: -64%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.2), transparent 68%);
  filter: blur(9px);
  animation: candleFlicker 6s ease-in-out infinite;
}

.topbar::after {
  width: 56%;
  height: 130%;
  right: -20%;
  top: -48%;
  background: radial-gradient(circle, rgba(139, 94, 60, 0.18), transparent 72%);
  filter: blur(7px);
  animation: candleFlicker 7s ease-in-out infinite reverse;
}

/* ── SVG ornamental corner ── */
.topbar-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  border: 0;
  box-shadow: none;
}

.topbar-frame::before {
  content: none;
}

.topbar-frame .corner {
  position: absolute;
  width: 44px;
  height: 44px;
  border: none;
  filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.45));
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'%3E%3Cpath d='M2 2v24c0-8 4-14 10-18s14-6 22-6' fill='none' stroke='%23c9a84c' stroke-width='1.2' opacity='.85'/%3E%3Cpath d='M6 2c0 6 2 11 6 15s9 6 16 7' fill='none' stroke='%23c9a84c' stroke-width='.8' opacity='.5'/%3E%3Cpath d='M2 6c4 2 7 5 10 10' fill='none' stroke='%23c9a84c' stroke-width='.8' opacity='.5'/%3E%3Ccircle cx='2' cy='2' r='1.8' fill='%23c9a84c' opacity='.9'/%3E%3Ccircle cx='8' cy='4' r='1' fill='%23c9a84c' opacity='.6'/%3E%3Ccircle cx='4' cy='9' r='1' fill='%23c9a84c' opacity='.6'/%3E%3Cpath d='M14 2a22 22 0 0 0-12 12' fill='none' stroke='%23d4b65a' stroke-width='.6' opacity='.35' stroke-dasharray='2 3'/%3E%3C/svg%3E") no-repeat center/contain;
}

.topbar-frame .corner-1 {
  top: 6px;
  left: 6px;
}

.topbar-frame .corner-2 {
  top: 6px;
  right: 6px;
  transform: scaleX(-1);
}

.topbar-frame .corner-3 {
  bottom: 6px;
  left: 6px;
  transform: scaleY(-1);
}

.topbar-frame .corner-4 {
  bottom: 6px;
  right: 6px;
  transform: scale(-1);
}

.brand {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(20px, 6.2vw, 28px);
  letter-spacing: 0.055em;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}

.subtitle {
  margin: 9px auto 0;
  color: var(--muted);
  font-size: 13px;
  max-width: 286px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.topbar-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.topbar-orbit span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ffd700;
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.9);
  animation: orbitFloat 4.3s ease-in-out infinite;
}

.topbar-orbit span:nth-child(1) {
  left: 12%;
  top: 24%;
  animation-delay: 0s;
}

.topbar-orbit span:nth-child(2) {
  right: 13%;
  top: 28%;
  animation-delay: 0.9s;
}

.topbar-orbit span:nth-child(3) {
  left: 28%;
  bottom: 16%;
  animation-delay: 1.7s;
}

.topbar-orbit span:nth-child(4) {
  right: 27%;
  bottom: 14%;
  animation-delay: 2.5s;
}

.shimmer {
  background: linear-gradient(110deg, #a8873a 25%, #faf0e0 46%, #d4b65a 62%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 230% 100%;
  animation: shimmer 4s linear infinite;
}

.hero,
.section,
.final-cta {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  padding: 16px;
  backdrop-filter: blur(2px);
  box-shadow: 0 8px 26px rgba(5, 3, 1, 0.4), inset 0 0 22px rgba(201, 168, 76, 0.05);
  position: relative;
}

/* ── Section ornament corners ── */
.hero::before,
.section::before,
.final-cta::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 18px;
  pointer-events: none;
  z-index: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath d='M1 1v14c0-4 2-8 6-10s8-4 14-4' fill='none' stroke='%23c9a84c' stroke-width='.8' opacity='.4'/%3E%3Ccircle cx='1.5' cy='1.5' r='1.2' fill='%23c9a84c' opacity='.5'/%3E%3C/svg%3E") no-repeat top left/28px 28px,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath d='M39 1v14c0-4-2-8-6-10s-8-4-14-4' fill='none' stroke='%23c9a84c' stroke-width='.8' opacity='.4'/%3E%3Ccircle cx='38.5' cy='1.5' r='1.2' fill='%23c9a84c' opacity='.5'/%3E%3C/svg%3E") no-repeat top right/28px 28px,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath d='M1 39v-14c0 4 2 8 6 10s8 4 14 4' fill='none' stroke='%23c9a84c' stroke-width='.8' opacity='.4'/%3E%3Ccircle cx='1.5' cy='38.5' r='1.2' fill='%23c9a84c' opacity='.5'/%3E%3C/svg%3E") no-repeat bottom left/28px 28px,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath d='M39 39v-14c0 4-2 8-6 10s-8 4-14 4' fill='none' stroke='%23c9a84c' stroke-width='.8' opacity='.4'/%3E%3Ccircle cx='38.5' cy='38.5' r='1.2' fill='%23c9a84c' opacity='.5'/%3E%3C/svg%3E") no-repeat bottom right/28px 28px;
}

.kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cinzel", serif;
}

h1 {
  font-size: clamp(29px, 9vw, 44px);
  line-height: 1.06;
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(20px, 6vw, 32px);
  margin-bottom: 12px;
}

h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.utp-badge {
  margin: 0 0 10px;
  padding: 10px 11px;
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.38);
  background:
    radial-gradient(110% 90% at 10% 0%, rgba(201, 168, 76, 0.15), transparent 58%),
    linear-gradient(180deg, rgba(30, 16, 8, 0.96), rgba(22, 12, 6, 0.96));
  box-shadow: inset 0 0 12px rgba(201, 168, 76, 0.08), 0 0 14px rgba(201, 168, 76, 0.12);
}

.utp-badge strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
  color: #faf0e0;
  font-weight: 800;
}

.utp-badge span {
  display: block;
  margin-top: 4px;
  color: #c4a882;
  font-size: 12px;
  line-height: 1.35;
}

.utp-strip {
  margin-top: 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.44);
  background: linear-gradient(90deg, rgba(80, 52, 20, 0.95), rgba(101, 68, 30, 0.9));
  color: #faf0e0;
  text-align: center;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 0 14px rgba(201, 168, 76, 0.22);
  animation: utpPulse 2.8s ease-in-out infinite;
}

.hero-photo {
  margin: 14px 0 0;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-photo::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8%;
  width: 100%;
  height: 78%;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at center, rgba(201, 168, 76, 0.45) 0%, rgba(201, 168, 76, 0.15) 38%, rgba(201, 168, 76, 0) 72%),
    radial-gradient(ellipse at center, rgba(139, 94, 60, 0.35) 0%, rgba(139, 94, 60, 0.1) 46%, rgba(139, 94, 60, 0) 74%);
  filter: blur(16px);
  z-index: 0;
  pointer-events: none;
  animation: heroAuraPulse 3.4s ease-in-out infinite;
}

.hero-photo::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3%;
  width: 100%;
  height: 34%;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at 20% 40%, rgba(201, 168, 76, 0.4) 0%, rgba(201, 168, 76, 0.06) 42%, rgba(201, 168, 76, 0) 70%),
    radial-gradient(ellipse at 75% 60%, rgba(168, 135, 58, 0.35) 0%, rgba(168, 135, 58, 0.06) 40%, rgba(168, 135, 58, 0) 72%);
  filter: blur(22px);
  opacity: 0.9;
  z-index: 2;
  pointer-events: none;
  animation: heroFogDrift 5.6s ease-in-out infinite;
}

.hero-photo img {
  display: block;
  width: 100%;
  border-radius: 0;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  object-position: center top;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 26px rgba(201, 168, 76, 0.35));
}

.quick-actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 11px 12px;
  border-radius: 11px;
  color: #f5e6d0;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: linear-gradient(180deg, rgba(35, 20, 10, 0.95), rgba(22, 12, 6, 0.95));
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  animation: btnBreath 3.4s ease-in-out infinite;
}

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

.btn-ico {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.35);
}

.btn-ico img {
  width: 12px;
  height: 12px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.92);
}

.btn-ico-brand img,
.btn-ico-max img {
  width: 16px;
  height: 16px;
  filter: none;
}

.btn-call {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.2);
}

.btn-wa {
  border-color: rgba(114, 183, 152, 0.5);
  box-shadow: 0 0 10px rgba(71, 145, 114, 0.18);
}

.btn-tg {
  border-color: rgba(150, 140, 120, 0.5);
  box-shadow: 0 0 10px rgba(100, 130, 180, 0.18);
}

.btn-max {
  border-color: rgba(170, 140, 110, 0.5);
  box-shadow: 0 0 10px rgba(130, 100, 80, 0.2);
}

.pulse-shell {
  animation: pulseShell 2.6s ease-in-out infinite;
}

.grid {
  display: grid;
  gap: 10px;
}

.section-lead {
  margin: -2px 0 12px;
  color: #c4a882;
  font-size: 15px;
  line-height: 1.45;
}

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

.req-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(26, 14, 8, 0.92), rgba(20, 11, 6, 0.92)),
    rgba(22, 12, 6, 0.74);
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: inset 0 0 14px rgba(201, 168, 76, 0.05);
}

.req-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(212, 182, 90, 0.9), rgba(168, 135, 58, 0.75));
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
}

.req-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.req-icon {
  color: var(--gold-bright);
  font-size: 14px;
  line-height: 1;
  text-shadow: 0 0 10px rgba(212, 182, 90, 0.5);
}

.formats-road {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% -18%, rgba(201, 168, 76, 0.1), transparent 64%),
    linear-gradient(180deg, rgba(22, 12, 6, 0.9), rgba(18, 10, 6, 0.9));
}

.format-track {
  position: absolute;
  right: 33px;
  left: auto;
  top: 124px;
  bottom: 36px;
  width: 2px;
  background: linear-gradient(180deg, rgba(212, 182, 90, 0.7), rgba(168, 135, 58, 0.5));
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.3);
  animation: trackFlow 3.6s linear infinite;
}

.format-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 36px;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.format-item:first-of-type {
  margin-top: 6px;
}

.fi-dot {
  order: 2;
  justify-self: center;
  align-self: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-family: "Cinzel", serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #1a0e08;
  background: linear-gradient(145deg, #d4b65a, #a8873a);
  border: 1px solid rgba(250, 240, 224, 0.5);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.35);
  z-index: 1;
  animation: dotPulse 2.2s ease-in-out infinite;
}

.fi-body {
  order: 1;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px;
  padding: 12px;
  background: rgba(22, 12, 6, 0.88);
  box-shadow: inset 0 0 14px rgba(201, 168, 76, 0.04);
}

.fi-body h3 {
  margin: 0;
  font-size: 18px;
}

.fi-meta {
  margin: 5px 0 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gold);
}

.fi-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.fi-2 .fi-body {
  border-color: rgba(201, 168, 76, 0.38);
  box-shadow: inset 0 0 16px rgba(201, 168, 76, 0.07), 0 0 18px rgba(201, 168, 76, 0.08);
}

.fi-3 .fi-dot {
  background: linear-gradient(145deg, #c9a84c, #8b5e3c);
}

.card,
.review,
.faq {
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 13px;
  background: rgba(22, 12, 6, 0.74);
}

.card p,
.review p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.workflow-arc {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 15% -18%, rgba(201, 168, 76, 0.12), transparent 58%),
    radial-gradient(100% 80% at 85% 110%, rgba(139, 94, 60, 0.1), transparent 62%),
    linear-gradient(180deg, rgba(22, 12, 6, 0.92), rgba(16, 9, 5, 0.92));
  border-color: rgba(201, 168, 76, 0.26);
}

.workflow-line {
  display: none;
}

.wf-step {
  position: relative;
  margin-top: 12px;
}

.wf-step:first-of-type {
  margin-top: 10px;
}

.wf-card {
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px;
  padding: 10px 12px 10px 54px;
  background: linear-gradient(180deg, rgba(26, 14, 8, 0.92), rgba(22, 12, 6, 0.88));
  box-shadow: inset 0 0 12px rgba(201, 168, 76, 0.04), 0 0 10px rgba(201, 168, 76, 0.04);
}

.wf-card::after {
  display: none;
}

.wf-kicker {
  margin: 0 0 3px;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
}

.wf-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
}

.wf-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.4;
}

.wf-mark {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  color: #1a0e08;
  border: 1px solid rgba(250, 240, 224, 0.5);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.28);
  z-index: 1;
}

.wf-step-1 .wf-mark {
  background: linear-gradient(145deg, #d4b65a, #c9a84c);
}

.wf-step-2 .wf-mark {
  background: linear-gradient(145deg, #dac26a, #b89940);
}

.wf-step-3 .wf-mark {
  background: linear-gradient(145deg, #c9a84c, #a8873a);
}

.wf-step-4 .wf-mark {
  background: linear-gradient(145deg, #b89940, #8b5e3c);
}

.quote {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(130% 90% at 10% -22%, rgba(201, 168, 76, 0.12), transparent 58%),
    radial-gradient(110% 80% at 100% 120%, rgba(139, 94, 60, 0.12), transparent 62%),
    linear-gradient(180deg, rgba(22, 12, 6, 0.92), rgba(16, 9, 5, 0.94));
}

/* ── Quote ornamental corners ── */
.quote::before,
.quote::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  pointer-events: none;
  border: none;
  filter: drop-shadow(0 0 4px rgba(201, 168, 76, 0.35));
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath d='M2 2v16c0-5 3-9 7-12s9-4 13-4' fill='none' stroke='%23c9a84c' stroke-width='1' opacity='.7'/%3E%3Cpath d='M5 2c0 4 1.5 7 4 10s6 5 11 5' fill='none' stroke='%23c9a84c' stroke-width='.7' opacity='.4'/%3E%3Ccircle cx='2' cy='2' r='1.5' fill='%23c9a84c' opacity='.8'/%3E%3Ccircle cx='6' cy='3.5' r='.8' fill='%23d4b65a' opacity='.5'/%3E%3Ccircle cx='3' cy='7' r='.8' fill='%23d4b65a' opacity='.5'/%3E%3C/svg%3E") no-repeat center/contain;
}

.quote::before {
  top: 10px;
  left: 10px;
}

.quote::after {
  right: 10px;
  bottom: 10px;
  transform: scale(-1);
}

.quote-shell {
  min-height: 232px;
  position: relative;
  padding: 8px 4px 2px;
}

.quote-shell::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 2px;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.18), rgba(201, 168, 76, 0) 70%);
  filter: blur(16px);
  pointer-events: none;
  animation: quoteAura 6.2s ease-in-out infinite;
}

.quote-slide {
  position: absolute;
  inset: 8px 4px auto;
  margin: 0;
  font-size: 22px;
  line-height: 1.32;
  font-family: "Cinzel", serif;
  letter-spacing: 0.01em;
  color: #faf0e0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  text-shadow: 0 0 18px rgba(201, 168, 76, 0.12);
}

.quote-slide.is-active {
  opacity: 1;
  transform: translateY(0);
}

.quote-label {
  margin: 0;
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 18px;
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #a8873a;
}

.quote-author {
  margin: 0;
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #d4c4a0;
}

.quote-dots {
  margin-top: 10px;
  display: flex;
  gap: 7px;
  justify-content: center;
}

.quote-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.35);
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.18);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.quote-dots span.is-active {
  transform: scale(1.25);
  background: var(--gold-bright);
  box-shadow: 0 0 10px rgba(212, 182, 90, 0.5);
}

.toolkit {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 0% -24%, rgba(201, 168, 76, 0.1), transparent 60%),
    radial-gradient(100% 80% at 100% 120%, rgba(139, 94, 60, 0.1), transparent 64%),
    linear-gradient(180deg, rgba(22, 12, 6, 0.92), rgba(16, 9, 5, 0.94));
}

.toolkit::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.05), rgba(201, 168, 76, 0.65), rgba(168, 135, 58, 0.05));
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.2);
}

.tool-group + .tool-group {
  margin-top: 12px;
}

.tool-group-title {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--gold);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-list-magic .chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: linear-gradient(180deg, rgba(30, 16, 8, 0.92), rgba(22, 12, 6, 0.9));
  color: #f0dfc8;
  font-size: 14px;
  line-height: 1.2;
  box-shadow: inset 0 0 10px rgba(201, 168, 76, 0.06), 0 0 10px rgba(201, 168, 76, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chip-list-magic .chip i {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-style: normal;
  font-size: 10px;
  color: #1a0e08;
  border: 1px solid rgba(250, 240, 224, 0.45);
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.25);
}

.chip-list-magic .chip-cyan {
  border-color: rgba(212, 182, 90, 0.38);
  box-shadow: inset 0 0 10px rgba(201, 168, 76, 0.08), 0 0 12px rgba(201, 168, 76, 0.1);
}

.chip-list-magic .chip-cyan i {
  background: linear-gradient(145deg, #d4b65a, #a8873a);
}

.chip-list-magic .chip-violet {
  border-color: rgba(168, 135, 58, 0.38);
  box-shadow: inset 0 0 10px rgba(139, 94, 60, 0.06), 0 0 12px rgba(139, 94, 60, 0.1);
}

.chip-list-magic .chip-violet i {
  background: linear-gradient(145deg, #c9a84c, #8b5e3c);
}

.review b {
  display: block;
  margin-top: 8px;
  color: #f0dfc8;
}

.client-results .section-lead {
  margin-bottom: 9px;
}

.reviews-track {
  --scroll-shift: 0px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(80%, 80%);
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 2px 2px 6px;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.reviews-track .review {
  --parallax-factor: 1;
  scroll-snap-align: start;
  min-height: 100%;
  border-color: rgba(201, 168, 76, 0.28);
  background: linear-gradient(180deg, rgba(26, 14, 8, 0.92), rgba(22, 12, 6, 0.92));
  box-shadow: inset 0 0 12px rgba(201, 168, 76, 0.05), 0 0 12px rgba(201, 168, 76, 0.06);
  transform: translateY(calc(var(--scroll-shift) * var(--parallax-factor)));
  transition: transform 0.2s linear;
}

.testimonials-list {
  display: grid;
  gap: 9px;
}

.testimonial {
  position: relative;
  padding-bottom: 11px;
}

.testimonial-text {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  line-height: 1.5;
}

.testimonial:not(.is-open)::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 44px;
  height: 30px;
  background: linear-gradient(180deg, rgba(22, 12, 6, 0), rgba(22, 12, 6, 0.96));
  pointer-events: none;
}

.testimonial.is-open .testimonial-text {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.review-more {
  margin-top: 9px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 999px;
  background: rgba(30, 16, 8, 0.78);
  color: #d4c4a0;
  font-size: 13px;
  line-height: 1;
  padding: 8px 11px;
}

.review-more:active {
  transform: translateY(1px);
}

.fi-body,
.wf-card,
.review,
.faq,
.chip-list-magic .chip,
.btn,
.dock a {
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fi-body:active,
.wf-card:active,
.review:active,
.faq:active,
.chip-list-magic .chip:active {
  transform: translateY(1px) scale(0.997);
}

.tap-glow {
  position: relative;
  overflow: hidden;
}

.tap-glow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 168, 76, 0.7), rgba(201, 168, 76, 0));
  animation: tapFlash 0.48s ease-out forwards;
  pointer-events: none;
}

.faq {
  margin-bottom: 8px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(26, 14, 8, 0.92), rgba(22, 12, 6, 0.92));
  box-shadow: inset 0 0 10px rgba(201, 168, 76, 0.04);
  overflow: hidden;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  padding: 12px 44px 12px 12px;
  position: relative;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 14px;
  color: #1a0e08;
  background: linear-gradient(145deg, #d4b65a, #a8873a);
  border: 1px solid rgba(250, 240, 224, 0.5);
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.28);
}

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

.faq p {
  margin: 0;
  padding: 0 12px 12px;
  color: var(--muted);
  line-height: 1.45;
}

.final-cta {
  margin-bottom: 16px;
  background:
    radial-gradient(100% 60% at 50% 0%, rgba(201, 168, 76, 0.2), transparent 72%),
    var(--card);
}

.final-cta p {
  margin: 8px 0 0;
  color: var(--muted);
}

.dock {
  position: fixed;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 9;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  background: rgba(13, 7, 5, 0.94);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.12);
}

.dock a {
  border-radius: 8px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
  position: relative;
}

.dock a:active {
  transform: translateY(1px);
}

.dock a:hover {
  transform: translateY(-1px);
}

.dock-ico {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  position: relative;
  z-index: 2;
}

.dock-ico img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.94);
  position: relative;
  z-index: 2;
}

.dock-ico-brand img {
  width: 22px;
  height: 22px;
  filter: saturate(1.08) contrast(1.08) brightness(1.05);
}

.dock-call {
  background: linear-gradient(180deg, #8b6e30, #6b5220);
  border-color: rgba(212, 182, 90, 0.5);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.3);
}

.dock-wa {
  background: linear-gradient(180deg, #2a9c69, #1f7a51);
  border-color: rgba(150, 233, 196, 0.45);
  box-shadow: 0 0 12px rgba(46, 160, 109, 0.28);
}

.dock-tg {
  background: linear-gradient(180deg, #3a7ed8, #2d62b4);
  border-color: rgba(173, 207, 255, 0.45);
  box-shadow: 0 0 12px rgba(71, 132, 218, 0.28);
}

.dock-max {
  background: linear-gradient(180deg, #6f5ac4, #5a45a7);
  border-color: rgba(210, 191, 255, 0.45);
  box-shadow: 0 0 12px rgba(118, 95, 201, 0.28);
}

.reveal {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(18px) scale(0.992);
  transition: opacity 0.62s ease, transform 0.62s ease, filter 0.62s ease;
}

.reveal.in-view {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

/* ── Ornament corners animate in with reveal ── */
.reveal .corner {
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.7s ease 0.3s, transform 0.5s ease 0.3s;
}

.reveal.in-view .corner {
  opacity: 1;
  transform: scale(1);
}

.reveal .corner-2.in-view-ready,
.reveal.in-view .corner-2 {
  transform: scaleX(-1);
}

.reveal.in-view .corner-3 {
  transform: scaleY(-1);
}

.reveal.in-view .corner-4 {
  transform: scale(-1);
}

.floaty {
  animation: floaty 6s ease-in-out infinite;
}

/* ── Keyframes ── */

@keyframes shimmer {
  from {
    background-position: 220% 0;
  }
  to {
    background-position: -220% 0;
  }
}

@keyframes utpPulse {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.18);
  }
  50% {
    box-shadow: 0 0 18px rgba(201, 168, 76, 0.32);
  }
}

@keyframes nebulaDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate3d(2%, -1.6%, 0) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: translate3d(-1.6%, 1.2%, 0) scale(1.03);
    opacity: 0.84;
  }
}

@keyframes btnBreath {
  0%,
  100% {
    box-shadow: 0 0 8px rgba(201, 168, 76, 0.12);
  }
  50% {
    box-shadow: 0 0 16px rgba(201, 168, 76, 0.24);
  }
}

@keyframes trackFlow {
  0% {
    box-shadow: 0 0 8px rgba(201, 168, 76, 0.18);
  }
  50% {
    box-shadow: 0 0 16px rgba(201, 168, 76, 0.42);
  }
  100% {
    box-shadow: 0 0 8px rgba(201, 168, 76, 0.18);
  }
}

@keyframes dotPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes quoteAura {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes tapFlash {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@keyframes candleFlicker {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.85;
  }
  20% {
    opacity: 0.92;
  }
  40% {
    transform: translate3d(0, 4px, 0) scale(1.05);
    opacity: 0.7;
  }
  60% {
    opacity: 0.95;
  }
  80% {
    transform: translate3d(0, 2px, 0) scale(1.02);
    opacity: 0.78;
  }
}

@keyframes orbitFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.8);
    opacity: 0.2;
  }
  45% {
    transform: translate3d(0, -9px, 0) scale(1.2);
    opacity: 1;
  }
  75% {
    transform: translate3d(0, 3px, 0) scale(0.95);
    opacity: 0.55;
  }
}

@keyframes auroraShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -2%, 0) scale(1.03);
  }
  100% {
    transform: translate3d(0, 1%, 0) scale(1.02);
  }
}

@keyframes smokeOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(14vw, -6vh, 0) scale(1.2);
  }
}

@keyframes smokeTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-13vw, 8vh, 0) scale(1.22);
  }
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.6);
  }
  50% {
    opacity: 1;
    transform: scale(1.35);
  }
}

@keyframes pulseShell {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.015);
  }
}

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

@keyframes heroAuraPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.06);
  }
}

@keyframes heroFogDrift {
  0%,
  100% {
    opacity: 0.85;
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    opacity: 1;
    transform: translateX(-48%) translateY(-6px);
  }
}

@media (max-width: 430px) {
  .btn {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal,
  .reveal.in-view {
    filter: none;
    transform: none;
  }
}
