/* ============================================================
   ACCOUNTITFAST (AIF) — Landing Page Stylesheet
   Theme: Orange & Grey · Futuristic · Professional
   ============================================================ */

/* ---------- 1. Design Tokens ---------- */
:root {
  --bg:        #07090d;
  --bg-2:      #0b0e14;
  --panel:     #0f131b;
  --panel-2:   #141925;
  --line:      rgba(255,255,255,.07);
  --line-2:    rgba(255,255,255,.14);
  --txt:       #eef1f6;
  --txt-2:     #a6adbd;
  --txt-3:     #6d7586;
  --orange:    #ff7a1a;
  --orange-2:  #ffa14d;
  --orange-hot:#ff5c00;
  --green:     #2ee6a8;
  --red:       #ff5d6c;
  --grad:      linear-gradient(135deg,#ffb25e 0%,#ff7a1a 48%,#ff5c00 100%);
  --grad-soft: linear-gradient(135deg,rgba(255,178,94,.16),rgba(255,92,0,.16));
  --radius:    18px;
  --radius-sm: 12px;
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --shadow-orange: 0 24px 80px -20px rgba(255,122,26,.35);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

::selection { background: rgba(255,122,26,.85); color: #fff; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #232a37; border-radius: 8px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

.container { width: min(1180px, 100% - 48px); margin-inline: auto; }

section { scroll-margin-top: 84px; }

/* Gradient text helper */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- 3. Scroll Progress Bar ---------- */
.progress-bar {
  position: fixed; top: 0; left: 0; z-index: 1000;
  height: 3px; width: 0%;
  background: var(--grad);
  box-shadow: 0 0 14px rgba(255,122,26,.8);
  transition: width .1s linear;
}

/* ---------- 4. Cursor Glow ---------- */
.cursor-glow {
  position: fixed; z-index: 1; pointer-events: none;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,26,.075) 0%, transparent 62%);
  transform: translate(-50%,-50%);
  mix-blend-mode: screen;
  transition: opacity .4s ease;
  opacity: 0;
}
@media (hover: none) { .cursor-glow { display: none; } }

/* ---------- 5. Navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 20px 0;
  transition: padding .35s var(--ease-out), background .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(7,9,13,.82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); }
.brand-mark {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--grad);
  box-shadow: 0 6px 22px -4px rgba(255,122,26,.55);
  animation: markPulse 3.2s ease-in-out infinite;
}
@keyframes markPulse {
  0%,100% { box-shadow: 0 6px 22px -4px rgba(255,122,26,.55); }
  50%     { box-shadow: 0 6px 30px -2px rgba(255,122,26,.85); }
}
.brand-name { font-weight: 800; font-size: 1.14rem; letter-spacing: -.02em; }
.brand-name em { font-style: normal; color: var(--orange); }
.brand-tag { display: block; font-family: var(--font-body); font-size: .62rem; font-weight: 600; letter-spacing: .34em; color: var(--txt-3); margin-top: -3px; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  position: relative;
  font-size: .92rem; font-weight: 500; color: var(--txt-2);
  transition: color .25s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0%; height: 2px; border-radius: 2px;
  background: var(--grad);
  transition: width .3s var(--ease-out);
}
.nav-links a:hover { color: var(--txt); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.btn-signin { font-size: .92rem; font-weight: 600; color: var(--txt-2); transition: color .25s ease; }
.btn-signin:hover { color: var(--txt); }

/* Hamburger */
.hamburger { display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line-2); place-items: center; background: var(--panel); }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--txt); border-radius: 2px; position: relative; transition: background .3s; }
.hamburger span::before, .hamburger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--txt); border-radius: 2px;
  transition: transform .3s var(--ease-out), top .3s var(--ease-out);
}
.hamburger span::before { top: -6px; }
.hamburger span::after  { top: 6px; }
.hamburger.open span { background: transparent; }
.hamburger.open span::before { top: 0; transform: rotate(45deg); background: var(--orange); }
.hamburger.open span::after  { top: 0; transform: rotate(-45deg); background: var(--orange); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 890;
  background: rgba(7,9,13,.96);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700;
  padding: 10px 24px; color: var(--txt-2);
  opacity: 0; transform: translateY(18px);
  transition: color .25s ease, opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.mobile-menu.open a { opacity: 1; transform: none; }
.mobile-menu a:hover { color: var(--orange); }

/* ---------- 6. Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head);
  font-weight: 700; font-size: .95rem;
  padding: 15px 30px;
  border-radius: 14px;
  overflow: hidden;
  transition: transform .3s var(--ease-out), box-shadow .3s ease, background .3s ease, border-color .3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: #1a0d02;
  box-shadow: 0 10px 34px -8px rgba(255,122,26,.55);
  animation: btnGlow 3s ease-in-out infinite;
}
@keyframes btnGlow {
  0%,100% { box-shadow: 0 10px 34px -8px rgba(255,122,26,.55); }
  50%     { box-shadow: 0 14px 44px -6px rgba(255,122,26,.8); }
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); }
.btn-primary:active { transform: translateY(-1px) scale(.99); }
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-24deg);
  animation: shine 4.5s ease-in-out infinite;
}
@keyframes shine {
  0%, 55% { left: -80%; }
  80%, 100% { left: 130%; }
}
.btn-ghost {
  border: 1px solid var(--line-2);
  color: var(--txt);
  background: rgba(255,255,255,.02);
}
.btn-ghost:hover { border-color: rgba(255,122,26,.6); background: rgba(255,122,26,.07); transform: translateY(-3px); }
.btn-sm { padding: 11px 22px; font-size: .86rem; border-radius: 11px; }
.btn-white { background: #fff; color: #17100a; font-weight: 700; }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -10px rgba(0,0,0,.5); }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  padding: 190px 0 60px;
  overflow: hidden;
}

/* background layers */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 72%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 72%);
}
.hero-floor {
  position: absolute; left: -40%; right: -40%; bottom: -340px; height: 480px;
  background-image:
    linear-gradient(rgba(255,122,26,.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,122,26,.22) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: perspective(600px) rotateX(62deg);
  -webkit-mask-image: linear-gradient(to top, #000 20%, transparent 85%);
  mask-image: linear-gradient(to top, #000 20%, transparent 85%);
  animation: floorMove 14s linear infinite;
}
@keyframes floorMove {
  from { background-position: 0 0; }
  to   { background-position: 0 44px; }
}
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; pointer-events: none; }
.orb-1 { width: 560px; height: 560px; top: -180px; left: -140px; background: radial-gradient(circle, rgba(255,122,26,.4), transparent 65%); animation: orbFloat 9s ease-in-out infinite; }
.orb-2 { width: 480px; height: 480px; top: 60px; right: -180px; background: radial-gradient(circle, rgba(255,161,77,.32), transparent 65%); animation: orbFloat 11s ease-in-out infinite reverse; }
.orb-3 { width: 380px; height: 380px; bottom: 40px; left: 34%; background: radial-gradient(circle, rgba(255,92,0,.22), transparent 65%); animation: orbFloat 13s ease-in-out infinite; }
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(40px,-30px) scale(1.06); }
  66%     { transform: translate(-30px,24px) scale(.96); }
}

.hero-inner { position: relative; z-index: 5; text-align: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,122,26,.35);
  background: rgba(255,122,26,.08);
  font-size: .82rem; font-weight: 600; letter-spacing: .06em; color: var(--orange-2);
  animation: fadeDown .8s var(--ease-out) both;
}
.hero-badge .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255,122,26,.7);
  animation: ping 1.8s cubic-bezier(0,0,.2,1) infinite;
}
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(255,122,26,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(255,122,26,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,122,26,0); }
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5.6vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 26px auto 0;
  max-width: 900px;
  animation: fadeUp .9s var(--ease-out) .1s both;
}
.hero-sub {
  max-width: 640px; margin: 22px auto 0;
  font-size: 1.13rem; color: var(--txt-2);
  animation: fadeUp .9s var(--ease-out) .22s both;
}
.typeword { color: var(--orange-2); font-weight: 600; }
.type-caret {
  display: inline-block; width: 2px; height: 1.05em; margin-left: 3px;
  background: var(--orange); vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-actions {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  margin-top: 38px;
  animation: fadeUp .9s var(--ease-out) .34s both;
}
.hero-trust {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  margin-top: 30px;
  animation: fadeUp .9s var(--ease-out) .46s both;
}
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--bg);
  display: grid; place-items: center;
  font-size: .68rem; font-weight: 700; color: #fff;
  margin-left: -10px;
}
.avatar-stack span:first-child { margin-left: 0; }
.av-1 { background: linear-gradient(135deg,#ff7a1a,#ffb25e); }
.av-2 { background: linear-gradient(135deg,#3b82f6,#22d3ee); }
.av-3 { background: linear-gradient(135deg,#8b5cf6,#d946ef); }
.av-4 { background: linear-gradient(135deg,#10b981,#2ee6a8); }
.hero-trust .stars { color: var(--orange); letter-spacing: 2px; font-size: .85rem; }
.hero-trust p { font-size: .86rem; color: var(--txt-3); }

.hero-flags {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin-top: 34px;
  font-size: .82rem; color: var(--txt-3); letter-spacing: .04em;
  animation: fadeUp .9s var(--ease-out) .58s both;
}
.hero-flags b { color: var(--txt-2); font-weight: 600; }
.hero-flags .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--orange); }

@keyframes fadeDown { from { opacity: 0; transform: translateY(-24px); } to { opacity: 1; transform: none; } }
@keyframes fadeUp   { from { opacity: 0; transform: translateY(30px); }  to { opacity: 1; transform: none; } }

/* ---------- 8. Hero Mockup ---------- */
.hero-visual {
  position: relative; z-index: 6;
  margin: 78px auto 0;
  max-width: 980px;
  perspective: 1400px;
  animation: fadeUp 1.1s var(--ease-out) .7s both;
}
.mockup {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 60px 140px -30px rgba(0,0,0,.8), 0 30px 90px -30px rgba(255,122,26,.22);
  transform: rotateX(6deg);
  transition: transform .5s var(--ease-out);
  will-change: transform;
}
.hero-visual:hover .mockup { transform: rotateX(0deg); }

.mockup-topbar {
  display: flex; align-items: center; gap: 16px;
  padding: 13px 18px;
  background: var(--panel-2);
  border-bottom: 1px solid var(--line);
}
.mockup-dots { display: flex; gap: 7px; }
.mockup-dots i { width: 11px; height: 11px; border-radius: 50%; }
.mockup-dots i:nth-child(1) { background: #ff5f57; }
.mockup-dots i:nth-child(2) { background: #febc2e; }
.mockup-dots i:nth-child(3) { background: #28c840; }
.mockup-url {
  flex: 1; max-width: 340px; margin-inline: auto;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 7px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: .74rem; color: var(--txt-3);
}
.mockup-url .lock { color: var(--green); }

.mockup-body { display: flex; min-height: 460px; }
.mockup-side {
  width: 178px; flex: none;
  padding: 18px 12px;
  background: var(--bg-2);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
.mockup-side .side-logo { display: flex; align-items: center; gap: 8px; padding: 2px 10px 16px; font-family: var(--font-head); font-weight: 800; font-size: .8rem; }
.mockup-side .side-logo i { width: 20px; height: 20px; border-radius: 6px; background: var(--grad); }
.side-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px;
  border-radius: 9px;
  font-size: .76rem; color: var(--txt-3);
}
.side-item svg { width: 15px; height: 15px; flex: none; }
.side-item.active { background: rgba(255,122,26,.12); color: var(--orange-2); }
.side-item.active svg { stroke: var(--orange); }
.side-upgrade {
  margin-top: auto;
  padding: 13px;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid rgba(255,122,26,.3);
  text-align: center;
}
.side-upgrade b { display: block; font-family: var(--font-head); font-size: .74rem; }
.side-upgrade span { font-size: .64rem; color: var(--txt-2); }

.mockup-main { flex: 1; padding: 20px 22px; min-width: 0; }
.mockup-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.mockup-head h4 { font-family: var(--font-head); font-size: .95rem; font-weight: 700; }
.mockup-head p { font-size: .7rem; color: var(--txt-3); }
.live-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(46,230,168,.1);
  border: 1px solid rgba(46,230,168,.3);
  font-size: .66rem; font-weight: 700; letter-spacing: .12em; color: var(--green);
}
.live-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pingGreen 1.6s infinite; }
@keyframes pingGreen {
  0%   { box-shadow: 0 0 0 0 rgba(46,230,168,.6); }
  70%  { box-shadow: 0 0 0 7px rgba(46,230,168,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,230,168,0); }
}

.kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }
.kpi {
  padding: 13px 15px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 13px;
}
.kpi .kpi-label { font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; color: var(--txt-3); }
.kpi .kpi-value { font-family: var(--font-head); font-weight: 700; font-size: 1.06rem; margin-top: 3px; }
.kpi .kpi-delta { display: inline-block; font-size: .64rem; font-weight: 700; margin-top: 3px; }
.delta-up { color: var(--green); }
.delta-down { color: var(--red); }

.charts-row { display: grid; grid-template-columns: 1.6fr 1fr; gap: 12px; margin-bottom: 16px; }
.chart-card {
  padding: 15px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 13px;
}
.chart-card h5 { font-size: .72rem; font-weight: 600; color: var(--txt-2); margin-bottom: 12px; }

.bar-chart { display: flex; align-items: flex-end; gap: 9px; height: 110px; }
.bar-chart .bar {
  flex: 1;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(to top, rgba(255,122,26,.25), rgba(255,122,26,.55));
  height: var(--h);
  transform-origin: bottom;
  transform: scaleY(0);
  animation: barGrow 1s var(--ease-out) forwards;
  animation-delay: var(--d);
  position: relative;
}
.bar-chart .bar.hot { background: var(--grad); box-shadow: 0 0 18px rgba(255,122,26,.5); }
@keyframes barGrow { to { transform: scaleY(1); } }

.donut-wrap { display: flex; align-items: center; gap: 14px; }
.donut { width: 92px; height: 92px; flex: none; transform: rotate(-90deg); }
.donut circle { fill: none; stroke-width: 11; stroke-linecap: round; }
.donut .track { stroke: #1c2330; }
.donut .seg { transition: stroke-dashoffset 1.6s var(--ease-out); }
.donut-legend { font-size: .68rem; color: var(--txt-2); display: grid; gap: 7px; }
.donut-legend i { display: inline-block; width: 9px; height: 9px; border-radius: 3px; margin-right: 7px; }
.legend-1 { background: var(--orange); }
.legend-2 { background: #3a4356; }

.tx-list { display: grid; gap: 7px; }
.tx {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 13px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 11px;
  opacity: 0; transform: translateX(-14px);
  animation: txIn .7s var(--ease-out) forwards;
  animation-delay: var(--d);
}
@keyframes txIn { to { opacity: 1; transform: none; } }
.tx-icon {
  width: 34px; height: 34px; flex: none;
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: .8rem;
}
.tx-icon.credit { background: rgba(46,230,168,.12); }
.tx-icon.debit  { background: rgba(255,93,108,.12); }
.tx-icon.fx     { background: rgba(255,122,26,.14); }
.tx-meta { flex: 1; min-width: 0; }
.tx-meta b { display: block; font-size: .76rem; font-weight: 600; }
.tx-meta span { font-size: .66rem; color: var(--txt-3); }
.tx-chip {
  font-size: .62rem; font-weight: 600;
  padding: 3px 9px; border-radius: 100px;
  background: rgba(255,255,255,.06);
  color: var(--txt-2);
  white-space: nowrap;
}
.tx-amt { font-family: var(--font-head); font-size: .78rem; font-weight: 700; white-space: nowrap; }
.tx-amt.pos { color: var(--green); }
.tx-amt.neg { color: var(--txt-2); }

/* floating chips */
.float-chip {
  position: absolute; z-index: 7;
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px;
  background: rgba(15,19,27,.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  box-shadow: 0 18px 50px -12px rgba(0,0,0,.7);
  font-size: .8rem; font-weight: 600;
  will-change: transform;
}
.float-chip .fc-icon {
  width: 30px; height: 30px; border-radius: 9px;
  display: grid; place-items: center;
  font-size: .85rem;
}
.float-chip small { display: block; font-size: .64rem; font-weight: 500; color: var(--txt-3); }
.fc-green { background: rgba(46,230,168,.14); color: var(--green); }
.fc-orange { background: rgba(255,122,26,.15); color: var(--orange); }
.fc-blue { background: rgba(59,130,246,.15); color: #60a5fa; }
.chip-1 { top: 8%; left: -46px; animation: floatY 5.5s ease-in-out infinite; }
.chip-2 { top: 40%; right: -52px; animation: floatY 6.5s ease-in-out .8s infinite; }
.chip-3 { bottom: 6%; left: -30px; animation: floatY 6s ease-in-out .4s infinite; }
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}

/* ---------- 9. Logo Marquee ---------- */
.logos { padding: 54px 0 30px; position: relative; }
.logos-label { text-align: center; font-size: .78rem; letter-spacing: .28em; text-transform: uppercase; color: var(--txt-3); margin-bottom: 30px; }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex; align-items: center; gap: 64px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  color: var(--txt-3);
  transition: color .3s ease;
  white-space: nowrap;
}
.marquee-item:hover { color: var(--orange-2); }
.marquee-item svg { width: 20px; height: 20px; opacity: .55; }

/* ---------- 10. Section Header ---------- */
.sec { padding: 110px 0; position: relative; }
.sec-head { text-align: center; max-width: 660px; margin: 0 auto 64px; }
.sec-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .78rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  color: var(--orange-2);
}
.sec-tag::before, .sec-tag::after { content: ""; width: 26px; height: 1px; background: linear-gradient(90deg, transparent, var(--orange)); }
.sec-tag::after { background: linear-gradient(90deg, var(--orange), transparent); }
.sec-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.14;
  margin-top: 16px;
}
.sec-head p { margin-top: 18px; color: var(--txt-2); font-size: 1.05rem; }

/* ---------- 11. Stats Band ---------- */
.stats-band {
  padding: 70px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat .stat-num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.02em;
}
.stat .stat-label { margin-top: 6px; font-size: .88rem; color: var(--txt-3); }
.stat { position: relative; }
.stat:not(:last-child)::after {
  content: ""; position: absolute; right: -15px; top: 18%; height: 64%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line-2), transparent);
}

/* ---------- 12. Features ---------- */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature {
  position: relative;
  padding: 28px 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .4s var(--ease-out), border-color .4s ease, box-shadow .4s ease, background .4s ease;
  overflow: hidden;
}
.feature::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx,50%) var(--my,0%), rgba(255,122,26,.14), transparent 45%);
  opacity: 0; transition: opacity .4s ease;
  pointer-events: none;
}
.feature:hover::before { opacity: 1; }
.feature:hover {
  transform: translateY(-7px);
  border-color: rgba(255,122,26,.45);
  box-shadow: 0 26px 60px -24px rgba(0,0,0,.8), 0 18px 50px -24px rgba(255,122,26,.3);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--grad-soft);
  border: 1px solid rgba(255,122,26,.3);
  margin-bottom: 20px;
  transition: transform .4s var(--ease-out);
}
.feature:hover .feature-icon { transform: scale(1.08) rotate(-4deg); }
.feature-icon svg { width: 24px; height: 24px; stroke: var(--orange-2); }
.feature h3 { font-family: var(--font-head); font-size: 1.02rem; font-weight: 700; margin-bottom: 9px; }
.feature p { font-size: .87rem; color: var(--txt-2); }
.feature .soon {
  position: absolute; top: 18px; right: 18px;
  font-size: .6rem; font-weight: 800; letter-spacing: .1em;
  color: var(--orange-2);
  padding: 4px 9px; border-radius: 100px;
  border: 1px solid rgba(255,122,26,.4);
  background: rgba(255,122,26,.1);
}

/* ---------- 13. Product Tabs ---------- */
.product-panel { background: var(--bg-2); }
.tabs {
  display: flex; justify-content: center; gap: 6px; flex-wrap: wrap;
  margin-bottom: 56px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--panel);
  width: max-content; max-width: 100%;
  margin-inline: auto;
}
.tab-btn {
  padding: 12px 26px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: .88rem; font-weight: 600;
  color: var(--txt-2);
  transition: color .3s ease, background .3s ease, box-shadow .3s ease;
}
.tab-btn:hover { color: var(--txt); }
.tab-btn.active {
  background: var(--grad);
  color: #1a0d02;
  box-shadow: 0 8px 26px -6px rgba(255,122,26,.6);
}
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: center; animation: panelIn .6s var(--ease-out); }
@keyframes panelIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.tab-copy h3 { font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; letter-spacing: -.01em; line-height: 1.2; }
.tab-copy > p { margin-top: 14px; color: var(--txt-2); font-size: .98rem; }
.tab-list { margin-top: 26px; display: grid; gap: 13px; }
.tab-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; color: var(--txt); }
.tab-list .check {
  flex: none; width: 22px; height: 22px; margin-top: 1px;
  border-radius: 7px;
  display: grid; place-items: center;
  background: rgba(255,122,26,.14);
  color: var(--orange-2);
  font-size: .72rem; font-weight: 800;
}

/* panel visuals */
.panel-visual {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.7), 0 20px 60px -30px rgba(255,122,26,.15);
  overflow: hidden;
}
.panel-visual::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(300px circle at 85% 0%, rgba(255,122,26,.1), transparent 60%);
  pointer-events: none;
}

/* invoice doc */
.invoice-doc {
  background: #f7f8fa; color: #20242d;
  border-radius: 14px; padding: 22px;
  font-size: .8rem;
  transform: rotate(-1.2deg);
  transition: transform .5s var(--ease-out);
  box-shadow: 0 24px 50px -20px rgba(0,0,0,.6);
}
.panel-visual:hover .invoice-doc { transform: rotate(0deg) translateY(-4px); }
.inv-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.inv-brand { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 800; font-size: .85rem; }
.inv-brand i { width: 22px; height: 22px; border-radius: 6px; background: var(--grad); }
.inv-right { text-align: right; }
.inv-right b { display: block; font-size: 1rem; }
.inv-right span { color: #6b7280; font-size: .7rem; }
.inv-table { width: 100%; border-collapse: collapse; margin: 12px 0; }
.inv-table th { text-align: left; font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; color: #9aa1ac; padding: 7px 6px; border-bottom: 1px solid #e5e7eb; }
.inv-table td { padding: 8px 6px; border-bottom: 1px solid #eef0f3; font-weight: 500; }
.inv-table td:last-child, .inv-table th:last-child { text-align: right; }
.inv-total { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; }
.inv-total b { font-size: 1.05rem; font-family: var(--font-head); }
.inv-paid {
  padding: 7px 14px;
  border: 2px solid #16a34a; border-radius: 8px;
  color: #16a34a; font-weight: 800; letter-spacing: .14em; font-size: .72rem;
  transform: rotate(-7deg);
  text-transform: uppercase;
}
.float-doc { position: absolute; top: -16px; right: -12px; animation: floatY 6s ease-in-out infinite; }

/* reports visual */
.report-chart { height: 150px; margin-top: 8px; }
.report-chart svg { width: 100%; height: 100%; overflow: visible; }
.report-line {
  fill: none; stroke: url(#lineGrad);
  stroke-width: 3; stroke-linecap: round;
  stroke-dasharray: 1; stroke-dashoffset: 1;
  transition: stroke-dashoffset 2s var(--ease-out);
}
.report-line.drawn { stroke-dashoffset: 0; }
.report-area { fill: url(#areaGrad); opacity: 0; transition: opacity 1.2s ease .6s; }
.report-area.drawn { opacity: 1; }
.report-rows { display: grid; gap: 8px; margin-top: 16px; }
.report-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: .8rem;
}
.report-row span { color: var(--txt-3); }
.report-row b { font-family: var(--font-head); }
.report-row b.up { color: var(--green); }

/* banking visual */
.bank-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.bank-card {
  padding: 16px;
  border-radius: 14px;
  color: #fff;
  position: relative; overflow: hidden;
}
.bank-card::after {
  content: ""; position: absolute; width: 130px; height: 130px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  top: -50px; right: -40px;
}
.bank-1 { background: linear-gradient(135deg, #ff7a1a, #c2410c); }
.bank-2 { background: linear-gradient(135deg, #2b3446, #171c27); border: 1px solid var(--line-2); }
.bank-card small { font-size: .62rem; opacity: .85; letter-spacing: .1em; text-transform: uppercase; }
.bank-card b { display: block; font-family: var(--font-head); font-size: 1.15rem; margin-top: 10px; }
.bank-feed { display: grid; gap: 8px; }

/* invoice panel visual (send invoice) */
.inv-send { display: grid; gap: 12px; }
.inv-field { background: var(--panel-2); border: 1px solid var(--line); border-radius: 10px; padding: 11px 14px; font-size: .76rem; color: var(--txt-3); display: flex; justify-content: space-between; align-items: center; }
.inv-field b { color: var(--txt); font-weight: 600; }

/* ---------- 14. Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.steps-grid::before {
  content: ""; position: absolute; top: 44px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,122,26,.5), transparent);
}
.step { text-align: center; padding: 0 14px; position: relative; }
.step-num {
  width: 88px; height: 88px; margin: 0 auto 24px;
  border-radius: 26px;
  display: grid; place-items: center;
  font-family: var(--font-head); font-size: 1.7rem; font-weight: 800;
  color: var(--orange-2);
  background: var(--panel);
  border: 1px solid rgba(255,122,26,.35);
  position: relative;
  transition: transform .45s var(--ease-out), box-shadow .45s ease;
}
.step:hover .step-num {
  transform: translateY(-6px) rotate(3deg);
  box-shadow: 0 22px 50px -16px rgba(255,122,26,.45);
}
.step-num::after {
  content: ""; position: absolute; inset: -6px;
  border-radius: 30px;
  border: 1px dashed rgba(255,122,26,.3);
  animation: spinSlow 14s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.step h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: .9rem; color: var(--txt-2); }

/* ---------- 15. Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card {
  position: relative;
  padding: 34px 30px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease-out), border-color .45s ease, box-shadow .45s ease;
}
.price-card:hover { transform: translateY(-8px); border-color: rgba(255,122,26,.4); box-shadow: 0 30px 70px -30px rgba(0,0,0,.8); }
.price-card.featured {
  background: linear-gradient(180deg, rgba(255,122,26,.1), var(--panel) 38%);
  border-color: rgba(255,122,26,.55);
  box-shadow: 0 34px 90px -30px rgba(255,122,26,.35);
}
.price-card.featured:hover { box-shadow: 0 40px 100px -30px rgba(255,122,26,.5); }
.featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 7px 18px;
  border-radius: 100px;
  background: var(--grad);
  color: #1a0d02;
  font-family: var(--font-head);
  font-size: .7rem; font-weight: 800; letter-spacing: .14em;
  box-shadow: 0 10px 26px -6px rgba(255,122,26,.6);
  white-space: nowrap;
  animation: badgeFloat 3.4s ease-in-out infinite;
}
@keyframes badgeFloat { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-5px); } }
.price-name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.price-desc { font-size: .83rem; color: var(--txt-3); margin-top: 5px; min-height: 38px; }
.price-tag { margin: 22px 0 6px; font-family: var(--font-head); display: flex; align-items: baseline; gap: 8px; }
.price-tag .amount { font-size: 2.6rem; font-weight: 800; letter-spacing: -.03em; transition: opacity .3s ease, transform .3s var(--ease-out); }
.price-tag .period { font-size: .9rem; color: var(--txt-3); }
.price-note { font-size: .78rem; color: var(--txt-3); margin-bottom: 24px; }
.price-feats { display: grid; gap: 12px; margin-bottom: 30px; flex: 1; }
.price-feats li { display: flex; align-items: center; gap: 11px; font-size: .89rem; color: var(--txt-2); }
.price-feats .pf-check { color: var(--orange-2); font-weight: 800; font-size: .72rem; width: 20px; height: 20px; border-radius: 6px; background: rgba(255,122,26,.13); display: grid; place-items: center; flex: none; }
.price-feats li.off { opacity: .4; text-decoration: line-through; }
.price-feats .pf-x { color: var(--txt-3); font-weight: 800; font-size: .72rem; width: 20px; height: 20px; border-radius: 6px; background: rgba(255,255,255,.06); display: grid; place-items: center; flex: none; }

.bill-toggle { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 40px 0 54px; font-size: .92rem; font-weight: 600; color: var(--txt-2); }
.bill-toggle .save {
  font-size: .68rem; font-weight: 800; color: var(--green);
  padding: 4px 10px; border-radius: 100px;
  background: rgba(46,230,168,.1);
  border: 1px solid rgba(46,230,168,.3);
}
.switch {
  width: 58px; height: 31px;
  border-radius: 100px;
  background: var(--panel-2);
  border: 1px solid var(--line-2);
  position: relative;
  transition: background .3s ease;
  flex: none;
}
.switch::after {
  content: ""; position: absolute; top: 3px; left: 3px;
  width: 23px; height: 23px; border-radius: 50%;
  background: var(--txt-3);
  transition: transform .35s var(--ease-out), background .3s ease;
}
.switch.annual { background: rgba(255,122,26,.18); border-color: rgba(255,122,26,.5); }
.switch.annual::after { transform: translateX(27px); background: var(--grad); }
.bill-toggle .opt { cursor: pointer; transition: color .3s; }
.bill-toggle .opt.active { color: var(--orange-2); }
.bill-toggle .opt.dim { color: var(--txt-3); }

/* ---------- 16. Testimonials ---------- */
.testimonial-slider { position: relative; max-width: 780px; margin: 0 auto; }
.testi-viewport { overflow: hidden; border-radius: 24px; }
.testi-track { display: flex; transition: transform .7s var(--ease-out); }
.testi-slide { flex: 0 0 100%; padding: 8px; }
.testi-card {
  padding: 44px 46px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  text-align: center;
  position: relative;
}
.testi-card .quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem; line-height: 1;
  height: 44px;
  color: rgba(255,122,26,.55);
  position: absolute; top: 22px; left: 34px;
}
.testi-stars { color: var(--orange); letter-spacing: 3px; margin-bottom: 20px; }
.testi-text { font-size: 1.12rem; line-height: 1.65; color: var(--txt); max-width: 620px; margin: 0 auto; }
.testi-person { margin-top: 26px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: .9rem; color: #fff;
  border: 2px solid rgba(255,122,26,.5);
}
.testi-person b { display: block; font-size: .94rem; }
.testi-person span { font-size: .8rem; color: var(--txt-3); }
.testi-dots { display: flex; justify-content: center; gap: 9px; margin-top: 28px; }
.testi-dots button {
  width: 9px; height: 9px; border-radius: 100px;
  background: var(--panel-2);
  border: 1px solid var(--line-2);
  transition: all .35s var(--ease-out);
  padding: 0;
}
.testi-dots button.active { width: 30px; background: var(--grad); border-color: transparent; }

/* ---------- 17. FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 13px; }
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .35s ease, box-shadow .35s ease;
}
.faq-item.open { border-color: rgba(255,122,26,.45); box-shadow: 0 20px 50px -24px rgba(255,122,26,.25); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 26px;
  text-align: left;
  font-family: var(--font-head);
  font-size: .98rem; font-weight: 600;
  color: var(--txt);
}
.faq-q:hover { color: var(--orange-2); }
.faq-icon {
  flex: none; width: 30px; height: 30px;
  border-radius: 9px;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  font-size: 1.1rem; font-weight: 500; color: var(--orange-2);
  transition: transform .4s var(--ease-out), background .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(255,122,26,.14); border-color: rgba(255,122,26,.45); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease-out); }
.faq-a-inner { padding: 0 26px 24px; font-size: .92rem; color: var(--txt-2); }

/* ---------- 18. CTA ---------- */
.cta-band {
  position: relative;
  padding: 84px 60px;
  border-radius: 30px;
  background: var(--grad);
  overflow: hidden;
  text-align: center;
  color: #1a0d02;
  box-shadow: var(--shadow-orange);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000, transparent 70%);
  mask-image: radial-gradient(ellipse at 50% 0%, #000, transparent 70%);
}
.cta-band::after {
  content: ""; position: absolute; top: 0; left: -70%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-24deg);
  animation: ctaShine 5s ease-in-out infinite;
}
@keyframes ctaShine {
  0%, 60% { left: -70%; }
  90%, 100% { left: 140%; }
}
.cta-band h2 {
  position: relative; z-index: 2;
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 800; letter-spacing: -.02em;
}
.cta-band p { position: relative; z-index: 2; margin-top: 14px; font-size: 1.05rem; font-weight: 500; opacity: .85; }
.cta-actions { position: relative; z-index: 2; display: flex; justify-content: center; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.cta-band .btn-white { animation: none; }
.btn-dark {
  background: rgba(26,13,2,.92); color: #ffb25e;
  border: 1px solid rgba(26,13,2,.35);
}
.btn-dark:hover { transform: translateY(-3px); background: #1a0d02; }

/* ---------- 19. Footer ---------- */
footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 80px 0 0; position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; }
.footer-brand p { margin-top: 18px; font-size: .9rem; color: var(--txt-3); max-width: 300px; }
.footer-socials { display: flex; gap: 11px; margin-top: 24px; }
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 11px;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  color: var(--txt-2);
  transition: all .3s var(--ease-out);
}
.footer-socials a:hover {
  color: #1a0d02; background: var(--grad); border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -8px rgba(255,122,26,.5);
}
.footer-socials svg { width: 17px; height: 17px; }
.footer-col h4 { font-family: var(--font-head); font-size: .88rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--txt); margin-bottom: 22px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: .9rem; color: var(--txt-2); transition: color .25s ease, padding-left .3s var(--ease-out); }
.footer-col a:hover { color: var(--orange-2); padding-left: 5px; }
.newsletter { margin-top: 22px; }
.newsletter p { font-size: .86rem; color: var(--txt-3); margin-bottom: 12px; }
.newsletter form { display: flex; gap: 8px; }
.newsletter input {
  flex: 1; min-width: 0;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  background: var(--panel);
  color: var(--txt);
  font-family: inherit; font-size: .88rem;
  outline: none;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.newsletter input:focus { border-color: rgba(255,122,26,.6); box-shadow: 0 0 0 3px rgba(255,122,26,.15); }
.newsletter .btn { padding: 13px 18px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .82rem; color: var(--txt-3);
}
.footer-bottom .langs { display: flex; gap: 14px; }
.footer-bottom .langs span { cursor: pointer; transition: color .25s; }
.footer-bottom .langs span:hover, .footer-bottom .langs span.on { color: var(--orange-2); }

/* ---------- 20. To Top ---------- */
.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 800;
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  color: var(--orange-2);
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: all .4s var(--ease-out);
  box-shadow: 0 16px 40px -12px rgba(0,0,0,.7);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--grad); color: #1a0d02; transform: translateY(-4px); }

/* ---------- 21. Reveal Animations ---------- */
html.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s var(--ease-out); transition-delay: var(--d, 0s); }
html.js .reveal-left { transform: translateX(-40px); }
html.js .reveal-right { transform: translateX(40px); }
html.js .reveal-zoom { transform: scale(.92); }
html.js .reveal.in { opacity: 1; transform: none; }

/* ---------- 22. Responsive ---------- */
@media (max-width: 1080px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-panel.active { grid-template-columns: 1fr; gap: 40px; }
  .float-chip { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mockup-side { display: none; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: grid; }
  .nav-cta .btn-signin { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .stat:nth-child(2)::after { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .charts-row { grid-template-columns: 1fr; }
  .hero { padding-top: 150px; }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .kpi-row { grid-template-columns: 1fr; }
  .cta-band { padding: 60px 26px; }
  .testi-card { padding: 36px 24px; }
  .hero-actions .btn { width: 100%; }
}

/* ---------- 23. Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; }
}
