/* =========================================================
   LedgeraX — Dark / Orange full landing (mock Image #5)
   ========================================================= */

:root {
  --orange: #ff6a00;
  --orange-600: #e55e00;
  --orange-700: #c44f00;
  --orange-50: #fff4ec;
  --orange-glow: rgb(255 106 0 / 0.28);

  --navy: #0b1220;
  --navy-2: #111827;
  --navy-3: #1a2332;
  --card-dark: #151d2e;

  --ink: #0f172a;
  --body: #3d4a5c;
  --muted: #64748b;
  --faint: #94a3b8;

  --line: #e8edf5;
  --line-2: #d5dde9;
  --bg: #ffffff;
  --soft: #f6f8fc;

  --ok: #0f8a5f;
  --ok-bg: #e6f7f0;
  --warn: #c2410c;
  --warn-bg: #fff4ed;

  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
  --nav: 68px;
  --r: 10px;
  --r-lg: 16px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 8px 28px rgb(15 23 42 / 0.08);
  --shadow-lg: 0 24px 64px rgb(15 23 42 / 0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav) + 12px); }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; border: 0; background: none; }
button { cursor: pointer; }
ul, ol { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
::selection { background: rgb(255 106 0 / 0.18); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  padding: 12px 16px; background: var(--orange); color: #fff; font-weight: 600;
}
.skip-link:focus { left: 0; }

.container { width: min(100% - 32px, var(--max)); margin-inline: auto; }
@media (min-width: 768px) { .container { width: min(100% - 48px, var(--max)); } }

/* Preloader */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center; background: #fff;
  transition: opacity .35s, visibility .35s;
}
.preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.preloader-logo {
  width: 80px;
  height: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
  animation: pulse 1.1s ease-in-out infinite;
}
.preloader-bar {
  width: 96px; height: 3px; border-radius: 99px; background: var(--line); overflow: hidden;
}
.preloader-bar span {
  display: block; height: 100%; width: 40%;
  background: var(--orange); border-radius: 99px;
  animation: load 0.9s ease infinite;
}
@keyframes pulse { 50% { opacity: .75; transform: scale(.96); } }
@keyframes load { to { transform: translateX(280%); } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 20px; border-radius: 8px;
  font-size: 15px; font-weight: 600; line-height: 1;
  border: 1.5px solid transparent;
  transition: .15s var(--ease); white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-600); box-shadow: 0 8px 24px var(--orange-glow); }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn-secondary:hover { background: var(--soft); }
.btn-ghost { height: 40px; color: var(--body); padding: 0 14px; font-weight: 500; }
.btn-ghost:hover { color: var(--ink); background: var(--soft); }
.header .btn-ghost {
  border: 1.5px solid var(--line-2);
  border-radius: 8px;
  height: 40px;
  padding: 0 16px;
}
.header .btn-ghost:hover {
  border-color: #c5d0e0;
  background: var(--soft);
  color: var(--ink);
}
.btn-outline {
  background: transparent; color: #fff; border-color: rgb(255 255 255 / .28);
}
.btn-outline:hover { background: rgb(255 255 255 / .08); border-color: rgb(255 255 255 / .45); }
.btn-outline-light {
  background: transparent; color: #fff; border-color: rgb(255 255 255 / .3);
}
.btn-outline-light:hover { background: rgb(255 255 255 / .08); }
.btn-lg { height: 50px; padding: 0 26px; font-size: 16px; border-radius: 10px; }
.btn-block { width: 100%; }
.btn-nav { height: 40px; padding: 0 18px; font-size: 14px; }

.link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--orange); font-weight: 600; font-size: 14px;
}
.link:hover { text-decoration: underline; text-underline-offset: 3px; }
.link svg { flex-shrink: 0; }

/* Header — white */
.header {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav);
  background: rgb(255 255 255 / .96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header.scrolled {
  box-shadow: 0 4px 20px rgb(15 23 42 / 0.06);
  background: rgb(255 255 255 / .98);
}
.header-inner {
  height: var(--nav);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand img {
  height: 30px; width: auto; max-width: 148px; object-fit: contain;
  filter: none;
}
.menu-btn {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 8px; color: var(--ink);
  background: #fff;
}
.menu-btn:hover { background: var(--soft); }
.menu-btn svg { width: 18px; height: 18px; }
.menu-btn .icon-close { display: none; }
.menu-btn[aria-expanded="true"] .icon-open { display: none; }
.menu-btn[aria-expanded="true"] .icon-close { display: block; }
@media (min-width: 1024px) { .menu-btn { display: none; } }

.nav {
  display: none; position: absolute; top: var(--nav); left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 12px 20px 20px; flex-direction: column; gap: 4px;
  box-shadow: 0 12px 32px rgb(15 23 42 / 0.08);
}
.nav.open { display: flex; }
@media (min-width: 1024px) {
  .nav {
    position: static; display: flex; flex-direction: row; align-items: center;
    flex: 1; padding: 0; border: 0; margin-left: 28px; background: transparent;
    box-shadow: none;
  }
}
.nav-links { display: flex; flex-direction: column; }
@media (min-width: 1024px) {
  .nav-links { flex-direction: row; align-items: center; flex: 1; gap: 2px; }
}
.nav-links a {
  padding: 10px 12px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--body);
}
.nav-links a:hover { color: var(--ink); background: var(--soft); }
.nav-actions {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 8px; padding-top: 14px; border-top: 1px solid var(--line);
}
@media (min-width: 1024px) {
  .nav-actions {
    flex-direction: row; align-items: center; margin: 0 0 0 auto;
    padding: 0; border: 0; gap: 10px;
  }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: 48px 0 0;
  overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 85% 40%, rgb(255 106 0 / .18), transparent 55%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgb(42 103 244 / .08), transparent 50%);
}
.hero-grid {
  position: relative;
  display: grid; gap: 40px; align-items: center;
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: 36px 28px; min-height: 440px; padding-bottom: 48px;
  }
}

.hero-copy { max-width: 480px; z-index: 2; }
.hero h1 {
  font-size: clamp(36px, 5.2vw, 54px);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.05;
  color: #fff; margin-bottom: 18px;
}
.hero h1 em { font-style: normal; color: var(--orange); }

.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 7px; height: 34px; padding: 0 12px 0 10px;
  border-radius: 999px; font-size: 12.5px; font-weight: 600;
  background: rgb(255 255 255 / .08); border: 1px solid rgb(255 255 255 / .1);
  color: rgb(255 255 255 / .88);
}
.hero-pill svg { color: var(--orange); flex-shrink: 0; }
.hero-lead {
  font-size: 16px; color: rgb(255 255 255 / .65); line-height: 1.65;
  max-width: 40ch; margin-bottom: 24px;
}
.hero-lead strong { color: #fff; font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.hero-proof {
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  font-size: 12.5px; font-weight: 500; color: rgb(255 255 255 / .55);
}
.hero-proof li {
  display: inline-flex; align-items: center; gap: 6px;
}
.hero-proof li svg { color: var(--orange); flex-shrink: 0; }

/* Dashboard mock */
.hero-visual { position: relative; min-height: 340px; }
.hero-portrait-side {
  position: absolute;
  right: -4px;
  bottom: 0;
  z-index: 3;
  width: min(34%, 200px);
  height: 88%;
  pointer-events: none;
}
.hero-portrait-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 100%);
  filter: drop-shadow(0 12px 28px rgb(0 0 0 / 0.35));
}
@media (max-width: 900px) {
  .hero-portrait-side { display: none; }
}
.dash {
  display: grid; grid-template-columns: 120px 1fr;
  background: #fff; border-radius: 14px;
  box-shadow: 0 28px 70px rgb(0 0 0 / .45);
  overflow: hidden; min-height: 360px; color: var(--body);
}
@media (max-width: 560px) {
  .dash { grid-template-columns: 48px 1fr; }
  .dash-side a { justify-content: center; padding: 10px 6px; }
  .dash-side a span { display: none; }
  .dash-brand { font-size: 0; height: 20px; overflow: hidden; }
}

.dash-side {
  background: linear-gradient(180deg, #121a2b, #0a101c);
  padding: 12px 8px; color: rgb(255 255 255 / .65); font-size: 11px;
}
.dash-brand {
  color: #fff; font-weight: 800; font-size: 12px;
  padding: 4px 8px 12px; letter-spacing: -.02em;
}
.dash-side a {
  display: flex; align-items: center; gap: 7px;
  padding: 8px; border-radius: 7px; margin-bottom: 2px; color: inherit;
}
.dash-side a svg { width: 14px; height: 14px; flex-shrink: 0; }
.dash-side a.on { background: var(--orange); color: #fff; }
.dash-side a:hover:not(.on) { background: rgb(255 255 255 / .06); color: #fff; }

.dash-main {
  padding: 10px; background: #f5f7fb;
  display: flex; flex-direction: column; gap: 8px; min-width: 0;
}
.dash-top { display: flex; align-items: center; gap: 8px; }
.dash-top strong { font-size: 13px; color: var(--ink); }
.dash-search {
  flex: 1; height: 30px; border-radius: 7px; border: 1px solid var(--line);
  background: #fff; padding: 0 10px; font-size: 11px; color: var(--faint);
  display: flex; align-items: center; gap: 6px;
}
.dash-search svg { color: var(--faint); flex-shrink: 0; opacity: .7; }
.dash-user {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 600; color: var(--body); white-space: nowrap;
}
.avatar-sm {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #ff9a4d);
  color: #fff; font-size: 8px; font-weight: 700;
  display: grid; place-items: center;
}

.dash-kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
@media (min-width: 700px) { .dash-kpis { grid-template-columns: repeat(4, 1fr); } }
.dk {
  background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 8px;
  display: flex; flex-direction: column; gap: 1px;
}
.dk .l { font-size: 9px; color: var(--muted); font-weight: 500; }
.dk .v { font-size: 13px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.dk .t { font-size: 9px; color: var(--muted); }
.dk .t.up { color: var(--ok); }

.dash-panel {
  background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; flex: 1;
}
.dp-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; font-weight: 700; color: var(--ink); margin-bottom: 6px;
}
.linkish { font-size: 10px; font-weight: 600; color: var(--orange); }
.chip {
  font-size: 9px; font-weight: 600; color: var(--orange);
  background: var(--orange-50); padding: 2px 7px; border-radius: 999px;
}

.dash-table { width: 100%; border-collapse: collapse; font-size: 10.5px; }
.dash-table th {
  text-align: left; font-size: 9px; text-transform: uppercase; letter-spacing: .04em;
  color: var(--muted); font-weight: 700; padding: 0 0 5px;
}
.dash-table td {
  padding: 6px 3px 6px 0; border-top: 1px solid var(--line);
  color: var(--body); white-space: nowrap;
}
.dash-table td.accent { color: var(--orange); font-weight: 600; }
@media (max-width: 700px) {
  .dash-table th:nth-child(5), .dash-table td:nth-child(5),
  .dash-table th:nth-child(2), .dash-table td:nth-child(2) { display: none; }
}

.badge {
  display: inline-flex; padding: 2px 7px; border-radius: 999px;
  font-size: 9px; font-weight: 700;
}
.badge.ok { background: var(--ok-bg); color: var(--ok); }
.badge.due { background: var(--warn-bg); color: var(--warn); }

.dash-bottom { display: grid; grid-template-columns: 1.2fr 1fr; gap: 6px; }
@media (max-width: 560px) { .dash-bottom { grid-template-columns: 1fr; } }
.dash-chart, .dash-topc {
  background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px;
}
.spark { width: 100%; height: 48px; display: block; }
.dash-topc ul { display: flex; flex-direction: column; gap: 6px; }
.dash-topc li {
  display: flex; align-items: center; gap: 6px;
  font-size: 10.5px; color: var(--body); font-weight: 500;
}
.dash-topc li b { margin-left: auto; color: var(--ink); font-weight: 700; }
.dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dot.c1 { background: #10b981; }
.dot.c2 { background: #f59e0b; }
.dot.c3 { background: #ef4444; }

.float-share {
  position: absolute; right: max(8px, 18%); bottom: 10%; z-index: 4;
  width: 148px; padding: 12px 14px;
  background: #fff; border-radius: 12px;
  box-shadow: 0 16px 40px rgb(0 0 0 / .2);
  color: var(--body);
  animation: floaty 5s ease-in-out infinite;
}
@keyframes floaty { 50% { transform: translateY(-6px); } }
.fs-title {
  font-size: 12px; font-weight: 800; letter-spacing: -.02em;
  color: var(--ink); margin-bottom: 10px; line-height: 1.2;
}
.float-share ul { display: flex; flex-direction: column; gap: 8px; }
.float-share li {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
}
.ic-wrap {
  width: 26px; height: 26px; border-radius: 7px; flex-shrink: 0;
  display: grid; place-items: center; color: #fff;
}
.ic-wrap.wa { background: #25d366; }
.ic-wrap.mail { background: #3b82f6; }
.ic-wrap.pdf { background: #ef4444; }
.ic-wrap.link { background: #64748b; }
.ic-wrap svg { display: block; }
@media (max-width: 639px) { .float-share { display: none; } }

/* Product bar on dark hero */
.product-bar {
  border-top: 1px solid rgb(255 255 255 / .08);
  background: rgb(0 0 0 / .25);
  padding: 12px 0 14px;
}
.product-bar-inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px;
}
.product-bar-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: rgb(255 255 255 / .7); white-space: nowrap;
}
.product-bar-label svg { color: var(--orange); flex-shrink: 0; }
.product-chips { display: flex; flex-wrap: wrap; gap: 8px; flex: 1; }
.chip-pill {
  display: inline-flex; align-items: center; gap: 7px; height: 36px; padding: 0 14px;
  border-radius: 999px; font-size: 13px; font-weight: 600;
  background: rgb(255 255 255 / .08); color: rgb(255 255 255 / .85);
  border: 1px solid rgb(255 255 255 / .08);
  transition: .15s;
}
.chip-pill svg { flex-shrink: 0; opacity: .9; }
.chip-pill:hover { background: rgb(255 255 255 / .14); color: #fff; }
.chip-pill.muted { color: rgb(255 255 255 / .5); }

/* Trust band */
.trust-band {
  background: #fff; border-bottom: 1px solid var(--line); padding: 32px 0 36px;
}
.trust-label {
  text-align: center; font-size: 13px; font-weight: 500; color: var(--muted); margin-bottom: 20px;
}
.trust-band-grid { display: grid; gap: 24px; }
@media (min-width: 960px) {
  .trust-band-grid { grid-template-columns: 1.1fr 1fr; gap: 28px; align-items: center; }
}
.trust-logos {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px; opacity: .5;
}
@media (min-width: 960px) { .trust-logos { justify-content: flex-start; } }
.trust-logos span {
  font-weight: 700; font-size: 13px; color: var(--ink); letter-spacing: -.02em;
}
.trust-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 10px; text-align: center;
}
@media (min-width: 720px) { .trust-stats { grid-template-columns: repeat(4, 1fr); } }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-icon {
  width: 36px; height: 36px; border-radius: 10px; margin-bottom: 8px;
  display: grid; place-items: center;
  background: var(--orange-50); color: var(--orange);
}
.stat-num {
  font-size: clamp(22px, 2.8vw, 28px); font-weight: 800; letter-spacing: -.03em;
  line-height: 1.1; margin-bottom: 4px; color: var(--ink);
}
.stat-label { font-size: 11.5px; color: var(--muted); font-weight: 500; }
.stat-stars {
  display: flex; gap: 2px; justify-content: center; margin-top: 4px;
}

/* Sections */
.section { padding: 72px 0; }
@media (min-width: 960px) { .section { padding: 96px 0; } }
.section-soft { background: var(--soft); }
.section-dark {
  background: var(--navy);
  color: rgb(255 255 255 / .7);
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow { color: var(--orange); }

.section-head { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.section-head h2 {
  font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; margin-bottom: 12px;
}
.section-head h2 em, .features-intro h2 em, .step-num,
.section-head em { font-style: normal; color: var(--orange); }
.section-head p {
  font-size: 16px; color: var(--muted); line-height: 1.65;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px;
}
.section-head p .link { font-size: 15px; }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px;
}

/* Features dark strip */
.features-layout {
  display: grid; gap: 36px;
}
@media (min-width: 960px) {
  .features-layout {
    grid-template-columns: minmax(220px, .7fr) 1fr;
    gap: 48px; align-items: start;
  }
}
.features-intro h2 {
  font-size: clamp(28px, 3.2vw, 36px); font-weight: 800; margin-bottom: 12px;
}
.features-intro p { font-size: 15px; line-height: 1.65; max-width: 36ch; }

.feat-grid {
  display: grid; gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .feat-grid { grid-template-columns: repeat(3, 1fr); } }

.feat {
  background: var(--card-dark); border: 1px solid rgb(255 255 255 / .06);
  border-radius: 12px; padding: 22px 18px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.feat:hover {
  border-color: rgb(255 106 0 / .4);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgb(0 0 0 / .25);
}
.feat-ic {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 14px;
  background: linear-gradient(145deg, rgb(255 106 0 / .18), rgb(255 106 0 / .08));
  color: var(--orange);
  border: 1px solid rgb(255 106 0 / .15);
}
.feat-ic svg { display: block; }
.feat h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; letter-spacing: -.015em; }
.feat p { font-size: 13px; line-height: 1.55; color: rgb(255 255 255 / .5); }

/* Product cards */
.product-cards { display: flex; flex-direction: column; gap: 24px; }
.product-card {
  display: grid; gap: 28px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 28px; box-shadow: var(--shadow);
}
@media (min-width: 900px) {
  .product-card { grid-template-columns: 1fr 1fr; gap: 36px; padding: 36px; }
  .product-card.reverse .product-card-copy { order: 2; }
}
.product-card-visual {
  position: relative;
  min-height: 240px;
}
.product-photo {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
  background: linear-gradient(160deg, #f8fafc, #eef2f7);
  display: grid;
  place-items: center;
}
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.invoice-float {
  position: absolute;
  right: 8px;
  bottom: -12px;
  width: min(92%, 300px);
  z-index: 2;
  box-shadow: 0 16px 40px rgb(15 23 42 / 0.18);
}
@media (max-width: 559px) {
  .invoice-float {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }
}
.inv-overlay {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
}
.inv-overlay .inv-kpis {
  margin: 0;
  backdrop-filter: blur(10px);
}
.inv-overlay .inv-kpis > div {
  background: rgb(255 255 255 / 0.94);
  box-shadow: 0 8px 20px rgb(15 23 42 / 0.12);
}
.pc-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--orange);
  background: var(--orange-50); padding: 5px 10px; border-radius: 999px;
  margin-bottom: 12px;
}
.pc-badge svg { flex-shrink: 0; }
.product-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.product-card > .product-card-copy > p {
  font-size: 14.5px; color: var(--muted); margin-bottom: 14px; line-height: 1.6;
}
.check-list { margin-bottom: 20px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--body);
  margin-bottom: 10px; font-weight: 500;
}
.check-list li svg {
  color: var(--orange); flex-shrink: 0; margin-top: 2px;
}
.copy-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.invoice-mock {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 16px; box-shadow: var(--shadow);
}
.inv-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.inv-logo {
  display: flex; align-items: center; gap: 8px;
}
.inv-logo strong { font-size: 12px; letter-spacing: .06em; color: var(--orange); }
.inv-head span { font-size: 11px; color: var(--muted); }
.inv-meta {
  display: flex; justify-content: space-between; gap: 12px; margin-bottom: 12px;
}
.inv-meta small { display: block; font-size: 10px; color: var(--faint); }
.inv-meta b { display: block; font-size: 13px; color: var(--ink); }
.inv-meta span { font-size: 11px; color: var(--muted); }
.inv-meta .big { font-size: 20px; color: var(--orange); font-weight: 800; }
.inv-meta .right { text-align: right; }
.invoice-mock table { width: 100%; border-collapse: collapse; font-size: 11px; margin-bottom: 10px; }
.invoice-mock th {
  text-align: left; font-size: 9px; text-transform: uppercase; color: var(--muted);
  padding-bottom: 6px;
}
.invoice-mock td { padding: 6px 0; border-top: 1px solid var(--line); color: var(--body); }
.inv-total {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 8px; border-top: 2px solid var(--ink);
  font-size: 13px; font-weight: 700; color: var(--ink);
}

.inv-kpis {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 10px;
}
.inv-kpis > div {
  background: var(--soft); border: 1px solid var(--line); border-radius: 10px; padding: 12px;
}
.inv-kpis .l { display: block; font-size: 11px; color: var(--muted); margin-bottom: 2px; }
.inv-kpis b { font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.inv-kpis b.warn { color: var(--warn); }
.inv-kpis small { display: block; font-size: 10px; color: var(--faint); margin-top: 2px; }
.inv-bars-wrap {
  background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 12px;
}
.inv-bars {
  display: flex; align-items: flex-end; gap: 6px; height: 100px; margin-top: 8px;
}
.inv-bars i {
  flex: 1; height: var(--h, 50%); border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #ff9a4d, var(--orange));
}

/* Steps */
.steps {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; align-items: stretch;
}
.step {
  flex: 1 1 220px; max-width: 300px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 28px 22px; text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.step:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.step-icon {
  width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 14px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--orange-50), #ffe8d6);
  color: var(--orange);
  border: 1px solid rgb(255 106 0 / .12);
}
.step-num {
  font-size: 12px; font-weight: 800; letter-spacing: .1em;
  color: var(--orange); margin-bottom: 8px;
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.step-connector {
  display: none; align-self: center; flex-shrink: 0;
}
@media (min-width: 900px) { .step-connector { display: flex; } }

/* Pillars / solutions */
.pillars {
  display: grid; gap: 16px;
}
@media (min-width: 700px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pillars { grid-template-columns: repeat(4, 1fr); } }
.pillar {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 14px 14px 20px; display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  overflow: hidden;
}
.pillar:hover {
  box-shadow: 0 16px 40px rgb(15 23 42 / 0.1);
  transform: translateY(-3px);
  border-color: #ffc9a3;
}
.pillar-illu {
  /* Show full illustration without cropping */
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 140px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 0;
  background: linear-gradient(160deg, #f8fafc 0%, #eef2f7 100%);
  overflow: hidden;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.pillar-illu img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.4s var(--ease);
}
/* Softly cover AI watermark corner without cropping the art */
.pillar-illu::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 28%;
  height: 22%;
  background: linear-gradient(135deg, transparent 30%, #f4f6f9 75%);
  pointer-events: none;
  border-radius: 0 0 12px 0;
}
.pillar:hover .pillar-illu img {
  transform: scale(1.03);
}
.pillar-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 6px 4px;
  min-height: 0;
}
.pillar h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.pillar p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
}
.pillar .link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-weight: 600;
}
.pillar .link svg { transition: transform .15s; }
.pillar .link:hover svg { transform: translateX(3px); }

/* Pricing */
.prices {
  display: grid; gap: 16px; max-width: 1000px; margin: 0 auto;
}
@media (min-width: 860px) { .prices { grid-template-columns: repeat(3, 1fr); } }
.price {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 28px 22px; display: flex; flex-direction: column;
}
.price.hot {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), 0 16px 40px var(--orange-glow);
  background: linear-gradient(180deg, #fff8f3 0%, #fff 40%);
}
.price .tag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em;
  white-space: nowrap;
}
.price h3 { font-size: 18px; margin-bottom: 6px; }
.price .desc { font-size: 13px; color: var(--muted); margin-bottom: 16px; min-height: 2.4em; }
.price .amt {
  font-size: 38px; font-weight: 800; color: var(--ink); letter-spacing: -.03em; line-height: 1;
}
.price .amt small { font-size: 15px; font-weight: 500; color: var(--muted); }
.price .per { font-size: 13px; color: var(--faint); margin: 8px 0 16px; }
.price ul { flex: 1; margin-bottom: 18px; }
.price li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--body); margin-bottom: 10px; font-weight: 500;
}
.price li svg { color: var(--orange); flex-shrink: 0; }
.pricing-note {
  text-align: center; margin-top: 24px; font-size: 13px; color: var(--faint);
}

/* Quotes */
.quotes { display: grid; gap: 16px; }
@media (min-width: 800px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px;
  display: flex; flex-direction: column;
}
.quote-stars {
  display: flex; gap: 2px; margin-bottom: 12px;
}
.quote p {
  font-size: 14.5px; color: var(--body); line-height: 1.7; margin-bottom: 18px; flex: 1;
}
.quote-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; font-size: 12px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff9a4d); flex-shrink: 0;
}
.avatar.a2 { background: linear-gradient(135deg, #0f8a5f, #34d399); }
.avatar.a3 { background: linear-gradient(135deg, #2563eb, #60a5fa); }
.quote strong { display: block; font-size: 14px; color: var(--ink); }
.quote span { font-size: 12px; color: var(--muted); }

/* FAQ */
.faq-grid {
  display: grid; gap: 12px; max-width: 920px; margin: 0 auto;
}
@media (min-width: 800px) { .faq-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--line); border-radius: 12px; background: #fff; overflow: hidden;
}
.faq-item.open { border-color: #ffc9a3; box-shadow: 0 4px 14px rgb(255 106 0 / .06); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 16px 18px; text-align: left; font-size: 14.5px; font-weight: 600; color: var(--ink);
}
.faq-q:hover { background: var(--soft); }
.faq-q svg {
  width: 18px; height: 18px; color: var(--muted); flex-shrink: 0;
  transition: transform .25s;
}
.faq-item.open .faq-q svg { transform: rotate(180deg); color: var(--orange); }
.faq-a {
  display: none; padding: 0 18px 16px; font-size: 14px; color: var(--muted); line-height: 1.65;
}
.faq-item.open .faq-a { display: block; }

/* Signup band */
.signup-band {
  padding: 72px 0; background: var(--soft); border-top: 1px solid var(--line);
}
.signup-band-grid {
  display: grid; gap: 36px; align-items: center;
}
@media (min-width: 900px) {
  .signup-band-grid { grid-template-columns: 1fr 400px; gap: 56px; }
}
.signup-band-copy h2 {
  font-size: clamp(26px, 3vw, 34px); font-weight: 800; margin-bottom: 12px;
}
.signup-band-copy > p {
  font-size: 16px; color: var(--muted); margin-bottom: 18px; max-width: 40ch;
}

.signup {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 28px 24px 22px; max-width: 400px;
  margin-inline: auto;
}
@media (min-width: 900px) { .signup { margin-inline: 0 0 auto; } }
.signup-form { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 500; color: var(--ink); }
.field .opt { font-weight: 400; color: var(--faint); }
.field input {
  width: 100%; height: 48px; padding: 0 14px;
  border: 1px solid var(--line-2); border-radius: 10px; background: #fff;
  font-size: 15px; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 4px rgb(255 106 0 / .14);
}
.field input.is-invalid {
  border-color: #e11d48; box-shadow: 0 0 0 4px rgb(225 29 72 / .12);
}
.field-error { font-size: 12px; color: #e11d48; font-weight: 500; }
.phone-row {
  display: flex; border: 1px solid var(--line-2); border-radius: 10px; overflow: hidden;
}
.phone-row:focus-within {
  border-color: var(--orange); box-shadow: 0 0 0 4px rgb(255 106 0 / .14);
}
.phone-row .cc {
  display: flex; align-items: center; padding: 0 12px;
  font-size: 14px; font-weight: 600; background: var(--soft);
  border-right: 1px solid var(--line);
}
.phone-row input { border: 0; border-radius: 0; box-shadow: none !important; }
.signup-submit { height: 50px; margin-top: 4px; border-radius: 10px; }
.signup-or {
  display: flex; align-items: center; gap: 14px; margin: 16px 0 12px;
  color: var(--faint); font-size: 12px;
}
.signup-or::before, .signup-or::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.btn-google {
  width: 100%; height: 48px; display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; border: 1px solid var(--line-2); border-radius: 10px; background: #fff;
  font-size: 15px; font-weight: 600; color: var(--ink);
}
.btn-google:hover { background: var(--soft); }
.legal {
  margin-top: 14px; font-size: 11.5px; line-height: 1.55; color: var(--faint); text-align: center;
}
.legal a { color: var(--orange); font-weight: 500; }

/* CTA */
.cta {
  background: linear-gradient(135deg, #0b1220 0%, #151d2e 50%, #0b1220 100%);
  padding: 64px 0; color: #fff; text-align: center;
  border-top: 1px solid rgb(255 255 255 / .06);
}
.cta-inner { max-width: 640px; margin-inline: auto; }
.cta h2,
.cta-title {
  color: #fff;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  line-height: 1.25;
}
.cta-title-text {
  color: #fff !important;
  display: inline-block;
  white-space: nowrap;
}
.cta-logo-text {
  height: clamp(28px, 4vw, 40px);
  width: auto;
  max-width: min(260px, 72vw);
  object-fit: contain;
  object-position: left center;
  display: inline-block;
  vertical-align: middle;
  /* Prefer white wordmark on dark; fall back to invert if asset is dark-on-transparent */
  filter: drop-shadow(0 2px 10px rgb(0 0 0 / 0.3));
}
.cta p { color: rgb(255 255 255 / .6); font-size: 16px; margin-bottom: 24px; }
.cta-actions {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 14px;
}
.cta-fine { font-size: 13px; color: rgb(255 255 255 / .4); margin: 0; }

/* Footer */
.footer {
  background: #060a12; color: rgb(255 255 255 / .6); padding: 56px 0 28px;
}
.footer-grid {
  display: grid; gap: 32px; margin-bottom: 36px;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 28px; }
}
.footer-logo {
  height: 30px; width: auto; max-width: 140px; margin-bottom: 14px;
  filter: brightness(0) invert(1); opacity: .92;
}
.footer-logo-text {
  height: 34px;
  max-width: 180px;
  /* white text logo - no invert needed if already white */
  filter: none;
  opacity: 0.95;
}
.footer-brand p {
  font-size: 14px; line-height: 1.65; max-width: 28ch;
  color: rgb(255 255 255 / .4); margin-bottom: 14px;
}
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgb(255 255 255 / .55);
}
.footer-contact a svg { flex-shrink: 0; opacity: .7; }
.footer-contact a:hover { color: #fff; }
.footer-contact a:hover svg { opacity: 1; }
.footer h4 {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  color: rgb(255 255 255 / .35); margin-bottom: 14px;
}
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer a { font-size: 14px; color: rgb(255 255 255 / .65); transition: color .15s; }
.footer a:hover { color: #fff; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding-top: 22px; border-top: 1px solid rgb(255 255 255 / .07);
  font-size: 13px; color: rgb(255 255 255 / .32);
}

/* Reveal */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

/* Mobile */
@media (max-width: 559px) {
  .hero { padding-top: 32px; }
  .hero h1 { font-size: 32px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; }
  .section { padding: 56px 0; }
  .price .amt { font-size: 32px; }
  .signup { max-width: none; }
}

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