:root {
  --bg: #080d16;
  --bg-soft: #0e1624;
  --card: rgba(16, 24, 37, 0.72);
  --card-strong: rgba(18, 29, 45, 0.92);
  --text: #f6f9fb;
  --muted: #a2acb8;
  --line: rgba(255, 255, 255, 0.11);
  --gold: #f3ba25;
  --gold-2: #ffd65a;
  --green: #25d366;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: Sora, Inter, sans-serif; line-height: 1.08; letter-spacing: 0; margin: 0; }
p { margin: 0; color: var(--muted); }
button, input, select, textarea { font: inherit; }

.site-shell { position: relative; z-index: 1; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 850px; }
.section { padding: 110px 0; position: relative; }

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: min(var(--max), calc(100% - 28px));
  min-height: 68px;
  padding: 10px 12px 10px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  background: rgba(8, 13, 22, .68);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .3);
  animation: headerIn .75s cubic-bezier(.22, 1, .36, 1) both;
}
.site-header.is-scrolled { background: rgba(8, 13, 22, .9); border-color: rgba(243, 186, 37, .24); }
.brand img { height: 44px; width: auto; object-fit: contain; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.desktop-nav a,
.mobile-nav a:not(.button) {
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  border-radius: 999px;
}
.desktop-nav a {
  padding: 10px 9px;
  color: var(--muted);
  font-size: 13px;
  transition: color .42s ease, transform .42s cubic-bezier(.22,1,.36,1), filter .42s ease;
}
.desktop-nav a::before,
.mobile-nav a:not(.button)::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -2;
  border: 1px solid rgba(246,184,26,.42);
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255,255,255,.052), rgba(246,184,26,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045), 0 0 12px rgba(246,184,26,.035);
  transition: border-color .42s ease, background .42s ease, box-shadow .42s ease;
}
.desktop-nav a::after,
.mobile-nav a:not(.button)::after {
  content: "";
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -42%;
  z-index: -1;
  width: 32%;
  transform: skewX(-20deg) translateX(-220%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.48), transparent);
  opacity: 0;
}
.desktop-nav a:hover {
  z-index: 8;
  color: #fff;
  filter: brightness(1.18);
  transform: translateY(-3px) scale(1.075);
}
.desktop-nav a:hover::before,
.mobile-nav a:not(.button):hover::before {
  border-color: rgba(255,215,0,.92);
  background: linear-gradient(145deg, rgba(246,184,26,.15), rgba(255,255,255,.07));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 10px 26px rgba(246,184,26,.16), 0 0 20px rgba(255,215,0,.12);
}
.desktop-nav a:hover::after,
.mobile-nav a:not(.button):hover::after {
  opacity: .7;
  animation: navPillShine .9s cubic-bezier(.22,1,.36,1);
}
.desktop-nav a.is-active,
.mobile-nav a:not(.button).is-active { color: #fff; }
.desktop-nav a.is-active::before,
.mobile-nav a:not(.button).is-active::before {
  border-color: rgba(255,215,0,.88);
  background: linear-gradient(145deg, rgba(246,184,26,.14), rgba(255,255,255,.055));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 0 18px rgba(255,215,0,.16);
  animation: navActivePulse 2.8s ease-in-out infinite;
}
.desktop-nav a.is-active::after,
.mobile-nav a:not(.button).is-active::after {
  opacity: .34;
  animation: navPillShine 5s ease-in-out infinite;
}
.nav-cta, .button, .menu-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 21px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform .42s cubic-bezier(.22, 1, .36, 1),
    box-shadow .42s cubic-bezier(.22, 1, .36, 1),
    background .42s cubic-bezier(.22, 1, .36, 1),
    color .42s cubic-bezier(.22, 1, .36, 1),
    border-color .42s cubic-bezier(.22, 1, .36, 1);
}
.nav-cta::before, .button::before, .menu-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: inherit;
  background: linear-gradient(135deg, #D4AF37 0%, #FFD700 48%, #f2b100 100%);
  opacity: 0;
  transition: opacity .42s cubic-bezier(.22, 1, .36, 1);
}
.nav-cta::after, .button::after, .menu-button::after {
  content: "";
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -75%;
  z-index: -1;
  width: 48%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .56), transparent);
  opacity: 0;
}
.button.primary, .nav-cta {
  color: #09101a;
  background: linear-gradient(135deg, var(--gold-2), #e69a00);
  box-shadow: 0 14px 38px rgba(243, 186, 37, .28);
}
.button.ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, .05);
}
.button:hover, .nav-cta:hover, .menu-button:hover {
  color: #07101b;
  border-color: rgba(255, 215, 0, .72);
  background: linear-gradient(135deg, #D4AF37 0%, #FFD700 48%, #f2b100 100%);
  box-shadow: 0 18px 46px rgba(255, 215, 0, .34), 0 0 0 1px rgba(255, 215, 0, .2);
  transform: translateY(-3px) scale(1.03);
}
.button:hover::before, .nav-cta:hover::before, .menu-button:hover::before { opacity: 1; }
.button:hover::after, .nav-cta:hover::after, .menu-button:hover::after {
  opacity: .78;
  animation: buttonShine .95s cubic-bezier(.22, 1, .36, 1);
}
.menu-button { display: none; margin-left: auto; width: 46px; height: 46px; min-height: 46px; padding: 0; border-color: transparent; border-radius: 14px; background: rgba(255,255,255,.06); color: var(--text); }
.menu-button span { position: relative; z-index: 1; display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; transition: transform .32s cubic-bezier(.22, 1, .36, 1), opacity .32s cubic-bezier(.22, 1, .36, 1); }
.menu-button.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button.is-open span:nth-child(2) { opacity: 0; }
.menu-button.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  position: fixed;
  top: 94px;
  left: 20px;
  right: 20px;
  z-index: 19;
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(243, 186, 37, .22);
  border-radius: 18px;
  background: rgba(8, 13, 22, .96);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transform: translateY(-16px) scale(.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.mobile-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.mobile-nav a { padding: 12px 14px; color: var(--muted); border-radius: 12px; }
.mobile-nav a:not(.button) { transition: color .42s ease, transform .42s cubic-bezier(.22,1,.36,1), filter .42s ease; }
.mobile-nav a:not(.button):hover { z-index: 3; color: #fff; filter: brightness(1.15); transform: translateY(-2px) scale(1.015); }
.mobile-nav a.button:hover {
  color: #07101b;
  background: linear-gradient(135deg, #D4AF37 0%, #FFD700 48%, #f2b100 100%);
}

.hero {
  min-height: 100vh;
  padding-top: 155px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top left, rgba(37, 67, 145, .55), transparent 58%),
    radial-gradient(ellipse at bottom right, rgba(243, 186, 37, .13), transparent 50%);
}
.grid-lines {
  position: absolute;
  inset: 0;
  opacity: .07;
  background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 42%, transparent 75%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  animation: float 9s ease-in-out infinite;
}
.orb-one { width: 440px; height: 440px; top: -120px; left: -130px; background: #294ec2; }
.orb-two { width: 520px; height: 520px; right: -170px; top: 26%; background: rgba(243, 186, 37, .42); animation-delay: -2s; }
.orb-three { width: 360px; height: 360px; left: 35%; bottom: -130px; background: #0e358d; animation-delay: -4s; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: 70px; align-items: center; }
.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  border: 1px solid rgba(243, 186, 37, .2);
  background: rgba(243, 186, 37, .08);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(243,186,37,.12); }
.eyebrow.compact { text-transform: none; letter-spacing: 0; }
.hero h1 { margin-top: 24px; font-size: clamp(44px, 6vw, 82px); max-width: 780px; }
h1 span, h2 span, .stats-panel span, .grand b {
  color: transparent;
  background: linear-gradient(135deg, #fff0a8, var(--gold), #e28f00);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-text { margin-top: 24px; max-width: 640px; font-size: 18px; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.trust-pills { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 10px; }
.trust-pills span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: #dce3ec;
  font-size: 12px;
}

.dashboard-card, .tax-invoice, .contact-form, .service-card, .why-card, .price-card, .testimonial-grid article, .faq-list details, .module-grid article, .team-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.dashboard-card {
  position: relative;
  border-radius: 24px;
  padding: 20px;
  transform-style: preserve-3d;
  animation: dashboardIn .9s cubic-bezier(.22, 1, .36, 1) .15s both;
}
.window-bar { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; border-bottom: 1px solid var(--line); color: var(--muted); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; }
.window-bar div { display: flex; gap: 7px; }
.window-bar span { width: 11px; height: 11px; border-radius: 50%; background: #f05c67; }
.window-bar span:nth-child(2) { background: var(--gold); }
.window-bar span:nth-child(3) { background: #54d894; }
.metric-row, .invoice-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.metric-row article, .invoice-mini article, .chart-card { border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.035); padding: 14px; }
.metric-row small, .chart-head small, .invoice-mini span, .tax-invoice small, .tax-invoice span { color: var(--muted); }
.metric-row strong { display: block; margin-top: 4px; font-size: 18px; }
.metric-row em { color: #54d894; font-style: normal; font-size: 12px; }
.chart-card { margin-top: 14px; }
.chart-head { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 13px; }
.chart-line { fill: none; stroke: var(--gold); stroke-width: 3; stroke-dasharray: 500; stroke-dashoffset: 500; animation: drawLine 1.8s ease .7s forwards; }
.chart-fill { fill: url(#chartFill); opacity: 0; animation: fadeIn .8s ease 1.4s forwards; }
.invoice-mini { grid-template-columns: 1fr 1fr; }
.invoice-mini p { display: flex; justify-content: space-between; margin-top: 7px; font-size: 12px; }
.qr-box {
  min-height: 94px;
  background:
    linear-gradient(90deg, #fff 48%, transparent 0) 0 0/18px 18px,
    linear-gradient(#fff 48%, transparent 0) 0 0/18px 18px,
    #0a0f19;
  border-radius: 12px;
  border: 8px solid #eef4fb;
  opacity: .92;
}
.floating-note {
  position: absolute;
  padding: 10px 13px;
  border: 1px solid rgba(243, 186, 37, .22);
  border-radius: 14px;
  background: rgba(13, 20, 31, .88);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  color: #edf4fb;
  font-size: 12px;
  animation: float 5s ease-in-out infinite;
}
.note-one { top: -22px; left: -18px; }
.note-two { right: -20px; bottom: -20px; animation-delay: -1.5s; }
.note-three { right: -44px; top: 50%; animation-delay: -3s; }

/* Hero-only BlackCat voucher workflow */
.workflow-dashboard { min-height: 548px; overflow: visible; isolation: isolate; }
.workflow-dashboard::before {
  content: "";
  position: absolute;
  inset: 8% -8% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(243,186,37,.14);
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}
.workflow-dashboard .metric-row strong { position: relative; min-height: 22px; overflow: hidden; }
.workflow-dashboard .metric-row strong span { position: absolute; inset: 0 auto auto 0; white-space: nowrap; }
.workflow-dashboard .metric-row strong span:last-child { opacity: 0; color: #fff0a8; }
.workflow-dashboard .report-metric { position: relative; overflow: hidden; }
.workflow-dashboard .report-metric::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,215,0,.72);
  opacity: 0;
  box-shadow: inset 0 0 22px rgba(243,186,37,.18), 0 0 22px rgba(243,186,37,.12);
  pointer-events: none;
}
.workflow-dashboard .revenue-metric { animation: metricCardUpdate 9s 4.65s ease-in-out infinite; }
.workflow-dashboard .vat-metric { animation: metricCardUpdate 9s 5.15s ease-in-out infinite; }
.workflow-dashboard .invoice-metric { animation: metricCardUpdate 9s 5.65s ease-in-out infinite; }
.workflow-dashboard .revenue-metric::after,
.workflow-dashboard .revenue-metric strong span { animation: metricUpdate 9s 4.65s ease-in-out infinite; }
.workflow-dashboard .vat-metric::after,
.workflow-dashboard .vat-metric strong span { animation: metricUpdate 9s 5.15s ease-in-out infinite; }
.workflow-dashboard .invoice-metric::after,
.workflow-dashboard .invoice-metric strong span { animation: metricUpdate 9s 5.65s ease-in-out infinite; }
.workflow-dashboard .report-metric strong span:first-child { animation-name: metricValueOld; }
.workflow-dashboard .report-metric strong span:last-child { animation-name: metricValueNew; }
.workflow-dashboard .chart-line { animation: workflowChart 9s ease-in-out infinite; }
.workflow-dashboard .chart-fill { animation: workflowChartFill 9s ease-in-out infinite; }
.sync-report, .backup-report { position: relative; overflow: hidden; }
.status-swap { position: relative; min-width: 55px; min-height: 16px; color: var(--gold); font-style: normal; }
.status-swap i, .backup-status i { position: absolute; inset: 0 0 auto auto; white-space: nowrap; font-style: normal; }
.status-swap i:first-child { animation: syncOld 9s ease-in-out infinite; }
.status-swap i:last-child { color: #54d894; opacity: 0; animation: syncNew 9s ease-in-out infinite; }
.sync-report { animation: syncCard 9s ease-in-out infinite; }
.backup-report { display: flex; min-height: 94px; flex-direction: column; justify-content: center; align-items: flex-start; }
.backup-report .cloud-mark { color: var(--gold); font-size: 23px; line-height: 1; }
.backup-report strong { margin-top: 5px; }
.backup-status { position: relative; width: 100%; min-height: 17px; margin-top: 6px; }
.backup-status i { inset: 0 auto auto 0; }
.backup-status i:first-child { animation: backupOld 9s ease-in-out infinite; }
.backup-status i:last-child { color: #54d894; opacity: 0; animation: backupNew 9s ease-in-out infinite; }
.backup-progress { width: 100%; height: 3px; margin-top: 10px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.08); }
.backup-progress i { display: block; height: 100%; width: 0; border-radius: inherit; background: linear-gradient(90deg, var(--gold), #54d894); box-shadow: 0 0 10px rgba(243,186,37,.5); animation: backupBar 9s ease-in-out infinite; }
.backup-report { animation: backupCard 9s ease-in-out infinite; }

.voucher-card {
  position: absolute;
  z-index: 7;
  top: 69px;
  right: 18px;
  width: min(330px, calc(100% - 36px));
  padding: 17px;
  border: 1px solid rgba(243,186,37,.38);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(21,31,48,.98), rgba(9,16,27,.98));
  box-shadow: 0 28px 70px rgba(0,0,0,.58), 0 0 38px rgba(243,186,37,.12), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  transform-origin: 82% 16%;
  animation: voucherJourney 9s cubic-bezier(.22,1,.36,1) infinite;
}
.voucher-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.voucher-head small, .voucher-head strong { display: block; }
.voucher-head small { color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.voucher-head strong { margin-top: 2px; font-size: 16px; }
.voucher-head > span { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 9px; background: rgba(243,186,37,.13); color: var(--gold); font-size: 11px; font-weight: 900; }
.voucher-field { position: relative; display: grid; grid-template-columns: 42% 58%; gap: 7px; margin-top: 9px; padding: 9px 10px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); border-radius: 9px; background: rgba(255,255,255,.035); font-size: 11px; }
.voucher-field::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); animation: fieldLine 9s var(--field-delay) ease infinite; }
.voucher-field span { color: var(--muted); }
.voucher-field b { color: #edf4fb; opacity: 0; transform: translateX(10px); animation: fieldFill 9s var(--field-delay) ease infinite; }
.field-party { --field-delay: .95s; }
.field-ledger { --field-delay: 1.45s; }
.field-vat { --field-delay: 1.95s; }
.field-invoice { --field-delay: 2.45s; }
.field-amount { --field-delay: 2.95s; }
.voucher-post { display: flex; justify-content: center; align-items: center; gap: 7px; margin-top: 12px; padding: 9px; border-radius: 10px; background: linear-gradient(135deg, #D4AF37, #FFD700); color: #07101b; font-size: 11px; font-weight: 900; opacity: 0; animation: postConfirm 9s ease infinite; }
.voucher-post span { display: grid; width: 17px; height: 17px; place-items: center; border-radius: 50%; background: rgba(7,16,27,.15); }
.data-flow { position: absolute; z-index: 6; top: 49%; left: 33%; width: 52%; height: 2px; opacity: 0; transform: rotate(-15deg); transform-origin: left center; background: linear-gradient(90deg, rgba(243,186,37,0), rgba(243,186,37,.7), rgba(84,216,148,.6)); animation: dataFlowShow 9s ease infinite; }
.data-flow i { position: absolute; top: -4px; width: 10px; height: 10px; border-radius: 50%; background: #FFD700; box-shadow: 0 0 16px #FFD700; animation: dataPacket 9s ease infinite; }
.workflow-toast { position: absolute; z-index: 9; right: -18px; top: 46%; padding: 9px 12px; border: 1px solid rgba(243,186,37,.34); border-radius: 11px; background: rgba(8,15,25,.94); color: #f4f7fb; box-shadow: 0 15px 36px rgba(0,0,0,.42), 0 0 20px rgba(243,186,37,.1); font-size: 11px; font-weight: 700; opacity: 0; pointer-events: none; animation: toastCycle 9s ease-in-out infinite; }
.toast-posted { top: 24%; animation-delay: 3.65s; }
.toast-vat { top: 34%; animation-delay: 4.45s; }
.toast-invoice { top: 65%; animation-delay: 5.65s; }
.toast-report { top: 17%; animation-delay: 6.35s; }
.toast-backup { top: auto; bottom: -16px; animation-delay: 7.15s; }

.bc-app-bar {
  display: grid;
  grid-template-columns: 104px 1fr;
  min-height: 44px;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid rgba(243,186,37,.2);
  border-radius: 9px 9px 0 0;
  background: linear-gradient(90deg, #101b2d, #16243a);
}
.bc-app-brand { display: flex; flex-direction: column; justify-content: center; padding: 7px 11px; border-right: 1px solid rgba(243,186,37,.18); }
.bc-app-brand strong { color: var(--gold); font-family: Sora, sans-serif; font-size: 13px; }
.bc-app-brand small { margin-top: 1px; color: #aeb9c8; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.bc-command-strip { display: flex; align-items: center; justify-content: space-around; gap: 5px; padding: 0 8px; }
.bc-command-strip span { color: #eaf0f8; font-size: 9px; white-space: nowrap; }
.bc-command-strip b { color: var(--gold); }
.bc-screen-stack { position: relative; height: 418px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-top: 0; border-radius: 0 0 10px 10px; background: #0b111b; }
.bc-voucher-screen, .bc-report-screen { position: absolute; inset: 0; background: linear-gradient(145deg, #101827, #0a1019); }
.bc-voucher-screen { z-index: 2; animation: bcVoucherScreen 9s ease-in-out infinite; }
.bc-report-screen { z-index: 1; opacity: 0; animation: bcReportScreen 9s ease-in-out infinite; }
.bc-screen-title { display: flex; justify-content: space-between; align-items: center; height: 25px; padding: 0 9px; border-bottom: 1px solid rgba(255,255,255,.12); background: rgba(243,186,37,.1); color: #eff4fb; font-size: 9px; }
.bc-screen-title span { color: var(--gold); font-weight: 800; }
.bc-voucher-layout { display: grid; grid-template-columns: minmax(0,1fr) 88px; height: calc(100% - 49px); }
.bc-voucher-main { position: relative; min-width: 0; padding: 9px 10px 31px; }
.bc-voucher-meta { display: grid; grid-template-columns: 1fr .8fr; gap: 14px; padding-bottom: 7px; border-bottom: 1px solid rgba(255,255,255,.1); }
.bc-voucher-meta div, .bc-entry-line { display: grid; grid-template-columns: 46% 54%; align-items: center; min-width: 0; }
.bc-voucher-meta span, .bc-entry-line span { color: #9fabbc; font-size: 8px; }
.bc-voucher-meta b, .bc-entry-line b { overflow: hidden; color: #f2f5f9; font-size: 9px; white-space: nowrap; }
.bc-entry-line { min-height: 26px; border-bottom: 1px solid rgba(255,255,255,.07); }
.bc-particular-head { display: grid; grid-template-columns: 1fr 44px 66px; gap: 6px; margin-top: 7px; padding: 5px 6px; border-block: 1px solid rgba(243,186,37,.22); background: rgba(243,186,37,.075); color: #dce3ed; font-size: 8px; font-weight: 800; }
.bc-particular-head span:nth-child(n+2) { text-align: right; }
.bc-ledger-line { display: grid; grid-template-columns: 1fr 44px 66px; gap: 6px; align-items: center; min-height: 30px; padding: 0 6px; border-bottom: 1px solid rgba(255,255,255,.055); font-size: 9px; }
.bc-ledger-line strong { min-width: 0; overflow: hidden; color: #eef4fb; white-space: nowrap; }
.bc-ledger-line span { color: #9fabbc; text-align: right; }
.bc-ledger-line b { color: #eef4fb; text-align: right; }
.bc-ledger-line.vat-line strong, .bc-ledger-line.vat-line b { color: #ffd454; }
.bc-total-line { display: flex; justify-content: flex-end; gap: 20px; margin-top: 7px; padding: 7px 6px; border-block: 1px double rgba(243,186,37,.3); font-size: 10px; }
.bc-total-line span { color: #aab5c4; }
.bc-total-line b, .bc-total-line i { color: #fff0a8; font-style: normal; }
.bc-narration { position: absolute; left: 10px; right: 10px; bottom: 6px; display: grid; grid-template-columns: 64px 1fr; gap: 8px; padding-top: 6px; border-top: 1px solid rgba(255,255,255,.08); font-size: 8px; }
.bc-narration span { color: #9fabbc; }
.bc-narration b { min-width: 0; overflow: hidden; color: #dfe6ee; white-space: nowrap; }
.bc-function-rail { display: flex; flex-direction: column; border-left: 1px solid rgba(255,255,255,.11); background: #111e30; }
.bc-function-rail span { padding: 7px 6px; border-bottom: 1px solid rgba(255,255,255,.08); color: #cbd5e2; font-size: 8px; white-space: nowrap; }
.bc-function-rail b { color: #7cb8ff; }
.bc-function-rail span.active { background: linear-gradient(90deg, rgba(243,186,37,.22), rgba(243,186,37,.08)); color: #fff; box-shadow: inset 2px 0 0 var(--gold); }
.bc-function-rail span.active b { color: var(--gold); }
.bc-function-rail span:last-child { margin-top: auto; border-top: 1px solid rgba(255,255,255,.08); }
.bc-key-strip { position: absolute; z-index: 3; left: 0; right: 88px; bottom: 0; display: grid; grid-template-columns: repeat(4,1fr); height: 24px; border-top: 1px solid rgba(255,255,255,.12); background: #142238; }
.bc-key-strip span { padding: 6px; border-right: 1px solid rgba(255,255,255,.08); color: #cbd5e2; font-size: 7px; }
.bc-key-strip b { color: var(--gold); }
.bc-autofill { opacity: 0; transform: translateX(8px); animation: bcFieldFill 9s var(--fill-delay, .5s) ease-in-out infinite; }
.fill-number { --fill-delay: .55s; }
.fill-party { --fill-delay: 1s; }
.fill-invoice { --fill-delay: 1.45s; }
.fill-ledger { --fill-delay: 1.9s; }
.fill-amount { --fill-delay: 2.35s; }
.fill-vat { --fill-delay: 2.75s; }
.fill-vat-value { --fill-delay: 2.9s; }
.fill-total { --fill-delay: 3.25s; }
.fill-narration { --fill-delay: 3.55s; }

.bc-report-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; height: 320px; padding: 9px; }
.bc-report-tile { position: relative; min-width: 0; overflow: hidden; padding: 11px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.035); }
.bc-report-tile::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(243,186,37,.65); opacity: 0; box-shadow: inset 0 0 20px rgba(243,186,37,.1); animation: bcTileGlow 9s var(--tile-delay) ease-in-out infinite; }
.bc-report-tile small, .bc-report-tile strong, .bc-report-tile > span { display: block; }
.bc-report-tile small { color: #dce4ee; font-size: 9px; font-weight: 800; }
.bc-report-tile strong { position: relative; min-height: 20px; margin-top: 8px; font-size: 14px; }
.bc-report-tile strong i { position: absolute; inset: 0 auto auto 0; color: #f3f6fa; font-style: normal; }
.bc-report-tile strong i:last-child { color: #ffe07b; opacity: 0; animation: bcReportValueNew 9s var(--tile-delay) ease-in-out infinite; }
.bc-report-tile strong i:first-child { animation: bcReportValueOld 9s var(--tile-delay) ease-in-out infinite; }
.bc-report-tile > span { margin-top: 5px; color: #54d894; font-size: 8px; }
.sales-tile { --tile-delay: 5s; }
.vat-tile { --tile-delay: 5.5s; }
.outstanding-tile { --tile-delay: 6s; }
.cash-tile { --tile-delay: 6.5s; }
.sales-tile svg { width: 100%; height: 35px; margin-top: 9px; }
.sales-tile path { fill: none; stroke: var(--gold); stroke-width: 2; stroke-dasharray: 180; stroke-dashoffset: 180; animation: bcMiniLine 9s 5s ease-in-out infinite; }
.bc-cash-bars { display: flex; align-items: end; gap: 4px; height: 38px; margin-top: 8px; }
.bc-cash-bars i { flex: 1; height: 10%; background: linear-gradient(#ffd454, #a66d00); animation: bcCashBar 9s 6.5s ease-in-out infinite; }
.bc-cash-bars i:nth-child(2) { --bar-height: 38%; }
.bc-cash-bars i:nth-child(3) { --bar-height: 58%; }
.bc-cash-bars i:nth-child(4) { --bar-height: 76%; }
.bc-cash-bars i:nth-child(5) { --bar-height: 100%; }
.bc-final-status { display: flex; gap: 7px; padding: 0 9px; }
.bc-final-status span { flex: 1; padding: 9px 7px; border: 1px solid rgba(84,216,148,.26); background: rgba(84,216,148,.07); color: #89e7ae; font-size: 8px; font-weight: 800; text-align: center; opacity: 0; transform: translateY(7px); animation: bcBadgeIn 9s var(--badge-delay) ease-in-out infinite; }
.bc-sync-badge { --badge-delay: 7s; }
.bc-backup-badge { --badge-delay: 7.5s; }
.bc-posted-toast, .bc-flow-label { position: absolute; z-index: 9; left: 50%; padding: 9px 13px; border: 1px solid rgba(243,186,37,.38); border-radius: 10px; background: rgba(7,14,24,.96); box-shadow: 0 16px 38px rgba(0,0,0,.42), 0 0 24px rgba(243,186,37,.12); color: #f5f7fa; font-size: 10px; font-weight: 800; opacity: 0; pointer-events: none; transform: translate(-50%,8px); }
.bc-posted-toast { top: 48%; animation: bcPostedToast 9s ease-in-out infinite; }
.bc-flow-label { top: 54%; color: var(--gold); animation: bcFlowLabel 9s ease-in-out infinite; }

.stats-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 88px;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(16px);
}
.stats-panel article { padding: 28px 18px; text-align: center; border-right: 1px solid var(--line); }
.stats-panel article:last-child { border-right: 0; }
.stats-panel span { display: block; font-family: Sora, sans-serif; font-size: clamp(34px, 4vw, 50px); font-weight: 800; }
.stats-panel small { display: block; margin-top: 4px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; }

.client-strip { padding: 44px 0; border-block: 1px solid var(--line); background: rgba(255,255,255,.035); overflow: hidden; }
.client-strip p { text-align: center; text-transform: uppercase; letter-spacing: .18em; font-size: 12px; }
.marquee { margin-top: 26px; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee div { display: flex; gap: 14px; width: max-content; animation: marquee 26s linear infinite; }
.marquee span { white-space: nowrap; padding: 11px 22px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.045); color: #dce4ed; }

.product-showcase {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 52%, rgba(243,186,37,.09), transparent 30%),
    radial-gradient(circle at 88% 42%, rgba(37,67,145,.24), transparent 34%);
}
.product-visual-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 22px; align-items: stretch; }
.product-side { display: grid; grid-template-rows: minmax(0, 1fr) auto; gap: 22px; }
.product-photo-card {
  position: relative;
  margin: 0;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  background: #0b111b;
  box-shadow: 0 30px 80px rgba(0,0,0,.42);
  transform-style: preserve-3d;
  transition: transform .45s cubic-bezier(.22,1,.36,1), border-color .45s ease, box-shadow .45s ease;
}
.product-photo-main { min-height: 580px; }
.product-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(3,8,15,.82) 100%);
}
.product-photo-card:hover { transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-5px) scale(1.008); border-color: rgba(243,186,37,.44); box-shadow: 0 34px 90px rgba(0,0,0,.5), 0 0 38px rgba(243,186,37,.08); }
.product-photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.22,1,.36,1), filter .45s ease; }
.product-photo-main img { object-position: center; animation: visualDrift 12s ease-in-out infinite alternate; }
.product-photo-cloud img { object-position: 42% center; }
.product-photo-card:hover img { transform: scale(1.035); filter: saturate(1.06) contrast(1.02); }
.product-photo-card figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-photo-card figcaption strong, .product-photo-card figcaption small { display: block; }
.product-photo-card figcaption strong { color: #fff; font-family: Sora, sans-serif; font-size: 17px; }
.product-photo-card figcaption small { margin-top: 4px; color: #bdc7d5; }
.visual-pulse { width: 10px; height: 10px; flex: 0 0 auto; border-radius: 50%; background: #54d894; box-shadow: 0 0 0 0 rgba(84,216,148,.55); animation: statusPulse 2s ease-out infinite; }
.visual-chip {
  position: absolute;
  z-index: 3;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 12px;
  background: rgba(7,14,25,.78);
  backdrop-filter: blur(14px);
  color: #edf4fb;
  box-shadow: 0 16px 38px rgba(0,0,0,.32);
  font-size: 12px;
  font-weight: 700;
  animation: chipFloat 5s ease-in-out infinite;
}
.visual-chip span { display: inline-grid; width: 18px; height: 18px; margin-right: 5px; place-items: center; border-radius: 50%; background: #54d894; color: #07101b; }
.chip-sync { top: 24px; right: 22px; }
.chip-vat { top: 84px; right: 22px; color: var(--gold); animation-delay: -2.4s; }
.live-flow {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
  overflow: hidden;
}
.live-flow div { min-width: 0; }
.live-flow span, .live-flow strong, .live-flow small { display: block; }
.live-flow span { color: var(--gold); font-size: 10px; font-weight: 800; }
.live-flow strong { margin-top: 5px; color: #eef4fb; font-size: 13px; }
.live-flow small { margin-top: 3px; color: var(--muted); font-size: 10px; }
.live-flow i { position: relative; height: 1px; overflow: hidden; background: rgba(255,255,255,.12); }
.live-flow i::after { content: ""; position: absolute; top: -1px; width: 10px; height: 3px; border-radius: 999px; background: var(--gold); box-shadow: 0 0 10px var(--gold); animation: flowDot 2s linear infinite; }

.section-heading { text-align: center; max-width: 780px; margin: 0 auto 56px; }
.section-heading h2, .two-column h2, .contact h2 { margin-top: 18px; font-size: clamp(36px, 5vw, 62px); }
.section-heading p:not(.kicker), .two-column > div > p, .contact-grid > div > p { margin: 18px auto 0; max-width: 690px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.services-grid { grid-template-columns: repeat(4, 1fr); }
.service-card, .why-card { border-radius: var(--radius); padding: 26px; min-height: 250px; transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.service-card { position: relative; }
.service-card:has(a[data-service-modal]) { cursor: pointer; }
.service-card a[data-service-modal]::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.why-card { position: relative; cursor: pointer; }
.why-card-trigger { position: absolute; inset: 0; z-index: 2; border: 0; border-radius: inherit; background: transparent; cursor: pointer; }
.why-card-trigger:focus-visible { outline: 2px solid #FFD700; outline-offset: 3px; box-shadow: 0 0 24px rgba(255,215,0,.2); }
.service-card:hover, .why-card:hover, .module-grid article:hover, .testimonial-grid article:hover { transform: translateY(-8px); border-color: rgba(243,186,37,.42); background: linear-gradient(145deg, rgba(243,186,37,.1), rgba(255,255,255,.035)); }
.service-card .icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: rgba(243,186,37,.11); border: 1px solid rgba(243,186,37,.22); color: var(--gold); font-weight: 900; }
.service-card h3, .why-card h3 { margin-top: 20px; font-size: 19px; }
.service-card p, .why-card p { margin-top: 12px; font-size: 14px; }
.service-card a { display: inline-flex; margin-top: 22px; color: var(--gold); font-weight: 800; font-size: 14px; }

.compliance, .modules, .contact { background: radial-gradient(ellipse at center, rgba(26, 57, 125, .36), transparent 70%); }
.two-column, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; }
.feature-list span { padding: 13px 14px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.045); font-size: 14px; }
.tax-invoice {
  max-width: 448px;
  margin-inline: auto;
  border-color: rgba(128, 151, 190, .22);
  border-radius: 22px;
  padding: 28px;
  background:
    radial-gradient(circle at 26% 22%, rgba(29, 58, 126, .28), transparent 38%),
    linear-gradient(145deg, rgba(18, 31, 58, .98), rgba(11, 20, 38, .98));
  box-shadow: 0 28px 70px rgba(0, 0, 0, .46), inset 0 1px 0 rgba(255,255,255,.04);
  animation: float 6s ease-in-out infinite;
}
.invoice-head, .invoice-foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.invoice-head small {
  display: block;
  color: #8f9db1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.invoice-head strong {
  display: block;
  margin-top: 2px;
  color: #f4f7fb;
  font-family: Sora, Inter, sans-serif;
  font-size: 22px;
  line-height: 1.1;
}
.invoice-head span {
  display: block;
  margin-top: 5px;
  color: #9ba8bb;
  font-size: 12px;
  font-weight: 700;
}
.invoice-head em {
  display: block;
  margin-top: 16px;
  color: #a4afc0;
  font-size: 11px;
  font-style: italic;
  font-weight: 700;
}
.invoice-number {
  padding-top: 17px;
  text-align: right;
}
.invoice-number strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0;
}
.tax-invoice ul {
  list-style: none;
  padding: 24px 0 0;
  margin: 0;
}
.tax-invoice li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.tax-invoice li span {
  color: #d5dce7;
  font-size: 15px;
  font-weight: 800;
}
.tax-invoice li b, .total-lines b {
  color: #f7f9fc;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  letter-spacing: .01em;
  white-space: nowrap;
}
.total-lines {
  padding-top: 11px;
}
.total-lines p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 2px 0;
  border-bottom: 0;
}
.total-lines span {
  color: #9ba8bb;
  font-size: 16px;
  font-weight: 700;
}
.total-lines .grand span {
  color: #b9c2cf;
  font-size: 17px;
  font-weight: 900;
}
.grand b {
  color: #ffb400;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  font-size: 15px;
  font-weight: 900;
}
.invoice-foot {
  align-items: end;
  margin-top: 23px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.invoice-foot span {
  color: #a3aebe;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.55;
}
.invoice-foot .qr-box {
  width: 80px;
  min-height: 80px;
  flex: 0 0 auto;
  border-width: 5px;
  border-radius: 5px;
  background-size: 13px 13px;
}

.module-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.module-grid article { min-height: 150px; border-radius: 17px; padding: 25px; font-family: Sora, sans-serif; font-weight: 800; transition: transform .25s ease, border-color .25s ease; }
.module-grid small { display: block; margin-top: 12px; color: var(--muted); font-family: Inter, sans-serif; font-weight: 600; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card { position: relative; border-radius: 22px; padding: 30px; display: flex; flex-direction: column; }
.price-card.featured { border-color: rgba(243,186,37,.5); background: linear-gradient(160deg, rgba(243,186,37,.14), rgba(255,255,255,.04)); }
.popular { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); padding: 7px 14px; border-radius: 999px; background: var(--gold); color: #09101a; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.price-card h3 { color: var(--muted); font-size: 15px; }
.price-card strong { margin-top: 16px; font-family: Sora, sans-serif; font-size: 42px; }
.price-card small { color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.price-card p { margin-top: 12px; }
.price-card ul { padding: 0; margin: 24px 0 28px; list-style: none; flex: 1; }
.price-card li { padding: 8px 0 8px 24px; position: relative; color: #dfe6ee; font-size: 14px; }
.price-card li::before { content: ""; position: absolute; left: 0; top: 15px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

.team-section {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 40% 40%, rgba(255, 215, 0, .08), transparent 35%),
    radial-gradient(ellipse at 50% 15%, rgba(28, 61, 136, .42), transparent 62%);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  position: relative;
  min-height: 360px;
  padding: 28px 24px;
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
  transition:
    transform .42s cubic-bezier(.22, 1, .36, 1),
    border-color .42s cubic-bezier(.22, 1, .36, 1),
    background .42s cubic-bezier(.22, 1, .36, 1),
    box-shadow .42s cubic-bezier(.22, 1, .36, 1);
}
.team-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, .16), transparent 42%);
  opacity: 0;
  transition: opacity .42s cubic-bezier(.22, 1, .36, 1);
}
.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, .38);
  background: linear-gradient(145deg, rgba(255, 215, 0, .095), rgba(255,255,255,.032));
  box-shadow: 0 24px 70px rgba(0,0,0,.42), 0 0 42px rgba(255, 215, 0, .12);
}
.team-card:hover::before { opacity: 1; }
.team-avatar {
  position: relative;
  z-index: 1;
  width: 114px;
  height: 114px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  color: #FFD700;
  font-family: Sora, Inter, sans-serif;
  font-size: 31px;
  font-weight: 800;
  background: linear-gradient(135deg, #f1a000 0%, #f0a000 48%, #7e8bb2 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 20px 45px rgba(0,0,0,.22);
}
.team-card h3, .team-card strong, .team-card p, .team-social { position: relative; z-index: 1; }
.team-card h3 {
  font-size: 20px;
  color: #f5f8fd;
}
.team-card strong {
  display: block;
  min-height: 42px;
  margin-top: 8px;
  color: #FFD700;
  font-size: 12px;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.team-card p {
  max-width: 245px;
  margin: 14px auto 0;
  font-size: 15px;
}
.team-social {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-top: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: #f6f9fb;
  font-size: 13px;
  font-weight: 900;
  transition:
    transform .42s cubic-bezier(.22, 1, .36, 1),
    box-shadow .42s cubic-bezier(.22, 1, .36, 1),
    background .42s cubic-bezier(.22, 1, .36, 1),
    color .42s cubic-bezier(.22, 1, .36, 1);
}
.team-social:hover {
  color: #07101b;
  background: linear-gradient(135deg, #D4AF37 0%, #FFD700 48%, #f2b100 100%);
  box-shadow: 0 14px 34px rgba(255, 215, 0, .3);
  transform: translateY(-3px) scale(1.03);
}

.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.testimonial-grid article { border-radius: 20px; padding: 28px; transition: transform .25s ease, border-color .25s ease; }
.testimonial-grid strong { color: var(--gold); letter-spacing: .1em; }
.testimonial-grid p { margin-top: 16px; color: #eef3f8; }
.testimonial-grid small { display: block; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); }
.faq-list { display: grid; gap: 13px; }
.faq-list details { border-radius: 16px; overflow: hidden; }
.faq-list summary { cursor: pointer; list-style: none; padding: 20px 24px; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details[open] { border-color: rgba(243,186,37,.36); }
.faq-list p { padding: 0 24px 22px; }

.contact-grid { align-items: start; }
.contact-cards { display: grid; gap: 14px; margin-top: 30px; }
.contact-cards a, .contact-cards div {
  display: block;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.045);
  transition: border-color .2s ease, transform .2s ease;
}
.contact-cards a:hover { border-color: rgba(243,186,37,.36); transform: translateY(-2px); }
.contact-cards small { display: block; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-size: 10px; }
.contact-cards b { display: block; margin-top: 4px; font-size: 14px; }
iframe { width: 100%; height: 260px; margin-top: 22px; border: 1px solid var(--line); border-radius: 18px; filter: saturate(.9) contrast(1.02); }
.contact-form { border-radius: 24px; padding: 30px; display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.05);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
select option { background: #101825; }
textarea { resize: vertical; min-height: 130px; }
input:focus, select:focus, textarea:focus { border-color: rgba(243,186,37,.62); box-shadow: 0 0 0 4px rgba(243,186,37,.1); }
.form-status { min-height: 22px; font-size: 14px; color: #77e0a1; }

.site-footer { padding: 70px 0 28px; border-top: 1px solid var(--line); background: rgba(255,255,255,.035); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-grid h3 { margin-bottom: 14px; color: var(--gold); font-size: 13px; text-transform: uppercase; letter-spacing: .16em; }
.footer-logo {
  width: 118px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}
.footer-grid a, .footer-grid p { display: block; margin-top: 10px; color: var(--muted); font-size: 14px; }
.footer-grid a:hover { color: var(--text); }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 18px; color: var(--muted); font-size: 12px; }
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 18;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(37,211,102,.45);
  animation: popIn .7s cubic-bezier(.22,1,.36,1) 1s both;
  transition:
    transform .42s cubic-bezier(.22, 1, .36, 1),
    box-shadow .42s cubic-bezier(.22, 1, .36, 1),
    background .42s cubic-bezier(.22, 1, .36, 1),
    color .42s cubic-bezier(.22, 1, .36, 1);
}
.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transform: scale(1.52);
}
.whatsapp-float::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: var(--green); opacity: .42; animation: ping 1.8s ease-out infinite; z-index: -1; }
.whatsapp-float:hover {
  color: #07101b;
  background: linear-gradient(135deg, #D4AF37 0%, #FFD700 48%, #f2b100 100%);
  box-shadow: 0 18px 46px rgba(255, 215, 0, .34), 0 0 0 1px rgba(255, 215, 0, .2);
  transform: translateY(-3px) scale(1.03);
}
.whatsapp-float:hover::after { background: #FFD700; }

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .38s ease, visibility .38s ease;
}
.service-modal.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.service-modal-backdrop { position: absolute; inset: 0; background: rgba(2,7,14,.76); backdrop-filter: blur(14px); }
.service-modal-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 38px;
  border: 1px solid rgba(243,186,37,.42);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 8%, rgba(243,186,37,.13), transparent 27%),
    linear-gradient(145deg, rgba(22,31,47,.98), rgba(8,14,24,.98));
  box-shadow: 0 38px 100px rgba(0,0,0,.65), 0 0 48px rgba(243,186,37,.12), inset 0 1px 0 rgba(255,255,255,.07);
  opacity: 0;
  transform: translateY(24px) scale(.93);
  transition: opacity .4s ease, transform .42s cubic-bezier(.22,1,.36,1);
}
.service-modal-panel::before { content: ""; position: absolute; top: 0; left: 14%; right: 14%; height: 1px; background: linear-gradient(90deg, transparent, #FFD700, transparent); box-shadow: 0 0 18px rgba(255,215,0,.7); }
.service-modal.is-open .service-modal-panel { opacity: 1; transform: translateY(0) scale(1); }
.service-modal-close {
  position: absolute;
  top: 17px;
  right: 17px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  background: rgba(255,255,255,.055);
  color: #f1f5fa;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: transform .3s ease, color .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.service-modal-close:hover { transform: rotate(90deg) scale(1.05); border-color: rgba(255,215,0,.55); background: rgba(255,215,0,.12); color: #FFD700; box-shadow: 0 0 24px rgba(255,215,0,.14); }
.service-modal-dots { display: flex; gap: 8px; margin-bottom: 18px; }
.service-modal-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px rgba(243,186,37,.65); animation: modalDotPulse 1.8s ease-in-out infinite; }
.service-modal-dots span:nth-child(2) { animation-delay: -.6s; opacity: .7; }
.service-modal-dots span:nth-child(3) { animation-delay: -1.2s; opacity: .45; }
.service-modal-kicker { color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.service-modal-panel h2 { max-width: calc(100% - 50px); margin-top: 10px; font-size: clamp(30px, 5vw, 48px); }
.service-modal-description { max-width: 620px; margin-top: 15px; color: #b8c2d0; font-size: 15px; }
.service-modal-details { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; margin-top: 28px; }
.service-modal-details > div { padding: 21px; border: 1px solid rgba(255,255,255,.1); border-radius: 15px; background: rgba(255,255,255,.035); }
.service-modal-details h3 { color: #f2f5f9; font-size: 15px; }
.service-modal-details ul { display: grid; gap: 10px; margin-top: 16px; }
.service-modal-details li { position: relative; padding-left: 19px; color: #c7d0dc; font-size: 13px; }
.service-modal-details li::before { content: ""; position: absolute; top: .52em; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px rgba(243,186,37,.55); }
.service-modal-best p { margin-top: 16px; color: #c7d0dc; font-size: 13px; }
.service-modal-best > span { display: flex; align-items: center; gap: 8px; margin-top: 22px; color: #e4eaf1; font-size: 11px; font-weight: 700; }
.service-modal-best > span i { width: 8px; height: 8px; border-radius: 50%; background: #54d894; box-shadow: 0 0 12px rgba(84,216,148,.65); animation: modalDotPulse 2s ease-in-out infinite; }
.service-modal-cta { margin-top: 25px; }
body.modal-open { overflow: hidden; }


.reveal { opacity: 0; transform: translateY(34px); transition: opacity .72s ease, transform .72s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes headerIn { from { opacity: 0; transform: translate(-50%, -24px); } to { opacity: 1; transform: translate(-50%, 0); } }
@keyframes dashboardIn { from { opacity: 0; transform: translateY(30px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes popIn { from { opacity: 0; transform: scale(.4); } to { opacity: 1; transform: scale(1); } }
@keyframes ping { 75%,100% { transform: scale(1.8); opacity: 0; } }
@keyframes buttonShine { from { left: -75%; } to { left: 128%; } }
@keyframes navPillShine { 0%, 68% { transform: skewX(-20deg) translateX(-220%); } 88%,100% { transform: skewX(-20deg) translateX(520%); } }
@keyframes navActivePulse { 0%,100% { box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 0 14px rgba(255,215,0,.11); } 50% { box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 0 24px rgba(255,215,0,.25); } }
@keyframes modalDotPulse { 0%,100% { transform: scale(.8); opacity: .45; } 50% { transform: scale(1.18); opacity: 1; } }
@keyframes visualDrift { from { transform: scale(1.015) translate3d(-.4%, 0, 0); } to { transform: scale(1.045) translate3d(.4%, -.35%, 0); } }
@keyframes statusPulse { 70%,100% { box-shadow: 0 0 0 10px rgba(84,216,148,0); } }
@keyframes chipFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes flowDot { from { left: -10px; } to { left: calc(100% + 2px); } }
@keyframes voucherJourney {
  0%, 3% { opacity: 0; transform: translateX(112%) scale(.96); }
  10%, 45% { opacity: 1; transform: translateX(0) scale(1); }
  51% { opacity: 0; transform: translate(-62%, -26%) scale(.26); filter: blur(1px); }
  52%, 100% { opacity: 0; transform: translate(-62%, -26%) scale(.26); }
}
@keyframes fieldFill {
  0%, 4% { opacity: 0; transform: translateX(10px); }
  9%, 47% { opacity: 1; transform: translateX(0); }
  53%, 100% { opacity: 0; transform: translateX(0); }
}
@keyframes fieldLine {
  0%, 3% { width: 0; opacity: 0; }
  10%, 44% { width: 100%; opacity: 1; }
  50%, 100% { width: 100%; opacity: 0; }
}
@keyframes postConfirm {
  0%, 37% { opacity: 0; transform: translateY(7px); }
  41%, 48% { opacity: 1; transform: translateY(0); box-shadow: 0 0 24px rgba(255,215,0,.24); }
  52%, 100% { opacity: 0; transform: translateY(-3px); }
}
@keyframes dataFlowShow {
  0%, 46% { opacity: 0; }
  50%, 65% { opacity: 1; }
  69%, 100% { opacity: 0; }
}
@keyframes dataPacket {
  0%, 47% { left: 0; opacity: 0; }
  50% { left: 0; opacity: 1; }
  64% { left: calc(100% - 10px); opacity: 1; }
  68%, 100% { left: calc(100% - 10px); opacity: 0; }
}
@keyframes metricUpdate {
  0%, 3% { transform: scale(1); opacity: 0; box-shadow: none; }
  8%, 18% { transform: scale(1.02); opacity: 1; box-shadow: 0 0 24px rgba(243,186,37,.13); }
  28%, 100% { transform: scale(1); opacity: 0; box-shadow: none; }
}
@keyframes metricCardUpdate {
  0%, 3%, 28%, 100% { transform: scale(1); }
  8%, 18% { transform: scale(1.02); }
}
@keyframes metricValueOld {
  0%, 3% { opacity: 1; transform: translateY(0); }
  9%, 43% { opacity: 0; transform: translateY(-8px); }
  51%, 100% { opacity: 1; transform: translateY(0); }
}
@keyframes metricValueNew {
  0%, 3% { opacity: 0; transform: translateY(8px); }
  9%, 43% { opacity: 1; transform: translateY(0); }
  51%, 100% { opacity: 0; transform: translateY(8px); }
}
@keyframes workflowChart {
  0%, 57% { stroke-dashoffset: 500; }
  74%, 92% { stroke-dashoffset: 0; filter: drop-shadow(0 0 5px rgba(243,186,37,.5)); }
  100% { stroke-dashoffset: 500; }
}
@keyframes workflowChartFill {
  0%, 59% { opacity: 0; }
  74%, 92% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes syncOld { 0%, 67% { opacity: 1; } 72%, 93% { opacity: 0; } 100% { opacity: 1; } }
@keyframes syncNew { 0%, 67% { opacity: 0; } 72%, 93% { opacity: 1; } 100% { opacity: 0; } }
@keyframes syncCard { 0%, 67%, 78%, 100% { border-color: var(--line); } 72% { border-color: rgba(84,216,148,.65); box-shadow: 0 0 22px rgba(84,216,148,.12); } }
@keyframes backupOld { 0%, 75% { opacity: 1; } 81%, 94% { opacity: 0; } 100% { opacity: 1; } }
@keyframes backupNew { 0%, 75% { opacity: 0; } 81%, 94% { opacity: 1; } 100% { opacity: 0; } }
@keyframes backupBar { 0%, 69% { width: 0; } 82%, 94% { width: 100%; } 100% { width: 0; } }
@keyframes backupCard { 0%, 76%, 88%, 100% { border-color: var(--line); } 82% { border-color: rgba(84,216,148,.65); box-shadow: 0 0 22px rgba(84,216,148,.12); } }
@keyframes toastCycle {
  0%, 2% { opacity: 0; transform: translateX(12px) scale(.96); }
  6%, 12% { opacity: 1; transform: translateX(0) scale(1); }
  17%, 100% { opacity: 0; transform: translateX(-7px) scale(.98); }
}
@keyframes bcVoucherScreen {
  0%, 47% { opacity: 1; transform: translateX(0); }
  52%, 96% { opacity: 0; transform: translateX(-4%); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes bcReportScreen {
  0%, 48% { opacity: 0; transform: translateX(4%); }
  54%, 94% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(4%); }
}
@keyframes bcFieldFill {
  0%, 3% { opacity: 0; transform: translateX(8px); }
  8%, 39% { opacity: 1; transform: translateX(0); text-shadow: 0 0 10px rgba(243,186,37,.18); }
  47%, 100% { opacity: 0; transform: translateX(0); }
}
@keyframes bcPostedToast {
  0%, 40% { opacity: 0; transform: translate(-50%,8px) scale(.96); }
  44%, 49% { opacity: 1; transform: translate(-50%,0) scale(1); }
  53%, 100% { opacity: 0; transform: translate(-50%,-7px) scale(.98); }
}
@keyframes bcFlowLabel {
  0%, 49% { opacity: 0; transform: translate(-50%,8px); }
  53%, 59% { opacity: 1; transform: translate(-50%,0); }
  63%, 100% { opacity: 0; transform: translate(-50%,-6px); }
}
@keyframes bcTileGlow {
  0%, 3%, 24%, 100% { opacity: 0; }
  8%, 16% { opacity: 1; }
}
@keyframes bcReportValueOld {
  0%, 4% { opacity: 1; transform: translateY(0); }
  10%, 38% { opacity: 0; transform: translateY(-7px); }
  46%, 100% { opacity: 1; transform: translateY(0); }
}
@keyframes bcReportValueNew {
  0%, 4% { opacity: 0; transform: translateY(7px); }
  10%, 38% { opacity: 1; transform: translateY(0); }
  46%, 100% { opacity: 0; transform: translateY(7px); }
}
@keyframes bcMiniLine {
  0%, 5% { stroke-dashoffset: 180; }
  14%, 39% { stroke-dashoffset: 0; }
  47%, 100% { stroke-dashoffset: 180; }
}
@keyframes bcCashBar {
  0%, 5% { height: 10%; }
  14%, 39% { height: var(--bar-height, 24%); }
  47%, 100% { height: 10%; }
}
@keyframes bcBadgeIn {
  0%, 4% { opacity: 0; transform: translateY(7px); }
  10%, 34% { opacity: 1; transform: translateY(0); box-shadow: 0 0 20px rgba(84,216,148,.08); }
  42%, 100% { opacity: 0; transform: translateY(4px); }
}

@media (max-width: 1100px) {
  .desktop-nav, .nav-cta { display: none; }
  .menu-button { display: block; }
  .hero-grid, .two-column, .contact-grid { grid-template-columns: 1fr; }
  .product-visual-grid { grid-template-columns: 1fr; }
  .product-photo-main { min-height: 500px; }
  .product-side { grid-template-columns: 1fr; grid-template-rows: auto; }
  .dashboard-card { width: 100%; max-width: 680px; margin: 0 auto; }
  .services-grid, .card-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .note-three { display: none; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 78px 0; }
  .site-header { top: 10px; width: calc(100% - 20px); min-height: 62px; border-radius: 18px; }
  .brand img { height: 38px; }
  .hero { padding-top: 118px; }
  .hero h1 { font-size: clamp(39px, 12vw, 58px); }
  .hero-actions .button { width: 100%; }
  .workflow-dashboard { min-height: 500px; padding: 13px; border-radius: 20px; }
  .workflow-dashboard .window-bar { padding-bottom: 11px; }
  .workflow-dashboard .metric-row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; margin-top: 10px; }
  .workflow-dashboard .metric-row article { padding: 9px 7px; border-radius: 10px; }
  .workflow-dashboard .metric-row small { font-size: 9px; }
  .workflow-dashboard .metric-row strong { min-height: 18px; font-size: 12px; }
  .workflow-dashboard .metric-row em { font-size: 9px; }
  .workflow-dashboard .chart-card { margin-top: 9px; padding: 10px; }
  .workflow-dashboard .invoice-mini { gap: 7px; margin-top: 9px; }
  .workflow-dashboard .invoice-mini article { padding: 10px; border-radius: 10px; }
  .workflow-dashboard .invoice-mini p { font-size: 9px; }
  .workflow-dashboard .backup-report strong { font-size: 12px; }
  .bc-app-bar { grid-template-columns: 82px 1fr; min-height: 38px; margin-top: 7px; }
  .bc-app-brand { padding: 5px 7px; }
  .bc-app-brand strong { font-size: 11px; }
  .bc-command-strip { padding: 0 5px; }
  .bc-command-strip span { font-size: 7px; }
  .bc-command-strip span:nth-child(2), .bc-command-strip span:nth-child(4) { display: none; }
  .bc-screen-stack { height: 399px; }
  .bc-screen-title { height: 23px; padding-inline: 7px; font-size: 8px; }
  .bc-voucher-layout { grid-template-columns: minmax(0,1fr) 74px; height: calc(100% - 45px); }
  .bc-voucher-main { padding: 7px 7px 29px; }
  .bc-voucher-meta { gap: 7px; }
  .bc-voucher-meta span, .bc-entry-line span, .bc-voucher-meta b, .bc-entry-line b { font-size: 7px; }
  .bc-particular-head, .bc-ledger-line { grid-template-columns: 1fr 28px 48px; gap: 3px; padding-inline: 4px; font-size: 7px; }
  .bc-ledger-line { min-height: 27px; }
  .bc-narration { left: 7px; right: 7px; grid-template-columns: 47px 1fr; font-size: 7px; }
  .bc-function-rail span { padding: 6px 4px; font-size: 7px; }
  .bc-key-strip { right: 74px; }
  .bc-key-strip span { padding: 6px 3px; font-size: 6px; }
  .bc-report-grid { height: 307px; gap: 5px; padding: 7px; }
  .bc-report-tile { padding: 8px; }
  .bc-report-tile small { font-size: 8px; }
  .bc-report-tile strong { margin-top: 6px; font-size: 11px; }
  .bc-final-status { gap: 5px; padding-inline: 7px; }
  .bc-final-status span { padding: 8px 4px; font-size: 7px; }
  .bc-posted-toast, .bc-flow-label { max-width: calc(100% - 28px); padding: 8px 10px; font-size: 8px; white-space: nowrap; }
  .voucher-card { top: 55px; right: 9px; width: calc(100% - 18px); padding: 13px; border-radius: 14px; }
  .voucher-field { margin-top: 7px; padding: 7px 8px; }
  .voucher-post { margin-top: 9px; padding: 7px; }
  .workflow-toast { right: 7px; max-width: calc(100% - 14px); }
  .toast-backup { bottom: 7px; }
  .metric-row, .stats-panel, .pricing-grid, .testimonial-grid, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .workflow-dashboard .metric-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stats-panel article { border-right: 0; border-bottom: 1px solid var(--line); }
  .stats-panel article:last-child { border-bottom: 0; }
  .services-grid, .card-grid, .module-grid, .feature-list, .team-grid { grid-template-columns: 1fr; }
  .floating-note { position: static; display: inline-block; margin: 12px 8px 0 0; }
  .invoice-head, .invoice-foot, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .tax-invoice, .contact-form { padding: 22px; border-radius: 20px; }
  .client-strip { padding: 34px 0; }
  .product-photo-main { min-height: 390px; }
  .product-photo-cloud { min-height: 310px; }
  .visual-chip { padding: 8px 10px; }
  .chip-sync { top: 14px; right: 14px; }
  .chip-vat { top: 64px; right: 14px; }
  .live-flow { grid-template-columns: 1fr; gap: 13px; }
  .live-flow i { width: 1px; height: 16px; margin-left: 8px; }
  .live-flow i::after { top: -4px; left: -1px; width: 3px; height: 9px; animation: flowDotVertical 2s linear infinite; }
}

@keyframes flowDotVertical { from { top: -7px; } to { top: 17px; } }

@media (max-width: 760px) {
  .service-modal { padding: 14px; }
  .service-modal-panel { max-height: calc(100vh - 28px); padding: 29px 22px 24px; border-radius: 18px; }
  .service-modal-close { top: 12px; right: 12px; width: 34px; height: 34px; font-size: 21px; }
  .service-modal-panel h2 { font-size: 30px; }
  .service-modal-description { font-size: 14px; }
  .service-modal-details { grid-template-columns: 1fr; gap: 12px; margin-top: 22px; }
  .service-modal-details > div { padding: 17px; border-radius: 13px; }
  .service-modal-cta { width: 100%; }
}

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