/* ============================================================
   Monetra — Landing Page Stylesheet
   Design: editorial, minimal, high-contrast
   Fonts: Playfair Display (headings) + Inconsolata (body)
   Brand: #06b6d4 (teal, WCAG AAA 7.36:1), #000 (black), #fff (white)
   ============================================================ */

/* ── CSS Reset ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inconsolata', 'Courier New', monospace;
  font-weight: 400;
  color: #000;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── CSS Custom Properties ──────────────────────────────────── */
:root {
  --brand: #06b6d4;
  --black: #000;
  --white: #fff;
  --off-white: #fafafa;
  --light-gray: #f5f5f5;
  --border: rgba(0, 0, 0, 0.12);
  --muted: rgba(0, 0, 0, 0.4);
  --max-w: 1200px;
  --section-pad: 96px 24px;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p {
  line-height: 1.7;
}

/* ── Utilities ──────────────────────────────────────────────── */
.accent {
  color: var(--brand);
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad);
}

.section-label {
  font-family: 'Inconsolata', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 20px;
  color: var(--black);
}

.section-sub {
  font-size: 1.05rem;
  color: rgba(0,0,0,0.55);
  max-width: 560px;
  margin-bottom: 56px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--brand);
  color: var(--white);
  font-family: 'Inconsolata', monospace;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border: 2px solid var(--brand);
  transition: background 0.2s, color 0.2s;
}

.btn-primary:hover {
  background: #0891b2;
  border-color: #0891b2;
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: 'Inconsolata', monospace;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,0.25);
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-nav {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-family: 'Inconsolata', monospace;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 2px solid var(--black);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-nav:hover {
  background: var(--brand);
  border-color: var(--brand);
}

.btn-nav-ghost {
  display: inline-block;
  background: transparent;
  color: var(--black);
  font-family: 'Inconsolata', monospace;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 2px solid transparent;
  transition: color 0.2s;
  white-space: nowrap;
}

.btn-nav-ghost:hover {
  color: var(--brand);
}

.nav-auth {
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-secondary-full {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: var(--black);
  font-family: 'Inconsolata', monospace;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 14px 20px;
  border: 2px solid var(--black);
  transition: background 0.2s, color 0.2s;
  margin-top: 28px;
}

.btn-secondary-full:hover {
  background: var(--black);
  color: var(--white);
}

.btn-primary-full {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--brand);
  color: var(--white);
  font-family: 'Inconsolata', monospace;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 14px 20px;
  border: 2px solid var(--brand);
  transition: background 0.2s;
  margin-top: 28px;
}

.btn-primary-full:hover {
  background: #0891b2;
  border-color: #0891b2;
}

.btn-cta {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  font-family: 'Inconsolata', monospace;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 18px 40px;
  border: 2px solid var(--white);
  transition: background 0.2s, color 0.2s;
}

.btn-cta:hover {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.03em;
  flex-shrink: 0;
  margin-right: auto;
}

.logo:hover {
  color: var(--brand);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: 'Inconsolata', monospace;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--brand);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: transform 0.25s, opacity 0.25s;
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 16px 24px 24px;
  gap: 0;
}

.nav-mobile a {
  font-family: 'Inconsolata', monospace;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile a:hover {
  color: var(--brand);
}

.nav-mobile .btn-nav-ghost {
  border-bottom: 1px solid var(--black);
  padding: 14px 0;
  text-align: left;
}

.nav-mobile .btn-nav {
  margin-top: 16px;
  text-align: center;
  border-bottom: none;
  padding: 12px 20px;
}

.nav-mobile.open {
  display: flex;
}

/* Hamburger → X animation when mobile menu is open */
.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Scrolled nav state */
.nav.scrolled {
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  background: var(--black);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: calc(100vh - 64px);
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 50%, rgba(6,182,212,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 80px 48px;
  max-width: 640px;
  margin-left: auto;
}

.hero-badge {
  display: inline-block;
  font-family: 'Inconsolata', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  margin-bottom: 32px;
  width: fit-content;
}

.hero-title {
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.08;
}

/* ── Animated rotating headline ───────────────────────────── */
.hero-rotate-wrap {
  display: block;
  overflow: hidden;
  height: 2.3em;
  line-height: 1.12;
}
.hero-rotate-inner {
  display: block;
}
@keyframes heroSlideOut {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-55%); }
}
@keyframes heroSlideIn {
  0%   { opacity: 0; transform: translateY(55%); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-rotate-inner.is-exit {
  animation: heroSlideOut 0.32s cubic-bezier(0.4,0,1,1) forwards;
}
.hero-rotate-inner.is-enter {
  animation: heroSlideIn 0.42s cubic-bezier(0,0,0.2,1) forwards;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.03em;
}

.hero-trust .dot {
  color: rgba(255,255,255,0.2);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 100px 56px 100px 56px;
  background: #0a0a0a;
}

/* ── MOCKUP (Hero) ──────────────────────────────────────────── */
.mockup {
  width: 100%;
  max-width: 760px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(6, 182, 212, 0.3),
    0 0 30px rgba(6, 182, 212, 0.55),
    0 0 80px rgba(6, 182, 212, 0.35),
    0 0 160px rgba(6, 182, 212, 0.18),
    0 0 260px rgba(6, 182, 212, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.7);
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #1a1a1a;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mockup-dot.red    { background: #ff5f57; }
.mockup-dot.yellow { background: #febc2e; }
.mockup-dot.green  { background: #28c840; }

.mockup-url {
  font-family: 'Inconsolata', monospace;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  margin-left: 8px;
  letter-spacing: 0.04em;
}

.mockup-screen {
  display: flex;
  height: 420px;
  position: relative;
}

/* ── Mockup Chatbot Overlay ─────────────────────────────────── */
.mkc-panel {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 188px;
  background: #0d0d0d;
  border: 1px solid rgba(6,182,212,0.25);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(6,182,212,0.12),
    0 8px 32px rgba(0,0,0,0.7),
    0 0 20px rgba(6,182,212,0.15);
  z-index: 10;
  animation: mkc-appear 0.5s cubic-bezier(0,0,0.2,1) both;
}

@keyframes mkc-appear {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.mkc-header {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: #111;
}

.mkc-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 0.62rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mkc-name {
  font-family: 'Inconsolata', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
}

.mkc-online {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inconsolata', monospace;
  font-size: 0.52rem;
  color: rgba(255,255,255,0.3);
}

.mkc-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  animation: mkc-pulse 2s ease-in-out infinite;
}

@keyframes mkc-pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.mkc-msgs {
  flex: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 100px;
  max-height: 200px;
  overflow: hidden;
}

/* Individual message bubbles */
.mkc-msg {
  max-width: 90%;
  padding: 5px 8px;
  border-radius: 8px;
  font-family: 'Inconsolata', monospace;
  font-size: 0.58rem;
  line-height: 1.5;
  animation: mkc-msg-in 0.3s cubic-bezier(0,0,0.2,1) both;
}

@keyframes mkc-msg-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mkc-msg.user {
  align-self: flex-end;
  background: var(--brand);
  color: #fff;
  border-bottom-right-radius: 2px;
}

.mkc-msg.ai {
  align-self: flex-start;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.85);
  border-bottom-left-radius: 2px;
}

.mkc-msg.ai strong {
  color: var(--brand);
  font-weight: 700;
}

/* Typing indicator */
.mkc-typing {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 7px 10px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  border-bottom-left-radius: 2px;
  animation: mkc-msg-in 0.3s cubic-bezier(0,0,0.2,1) both;
}

.mkc-typing span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}

.mkc-typing span:nth-child(1) { animation: mkc-bounce 1.2s ease-in-out infinite 0s; }
.mkc-typing span:nth-child(2) { animation: mkc-bounce 1.2s ease-in-out infinite 0.2s; }
.mkc-typing span:nth-child(3) { animation: mkc-bounce 1.2s ease-in-out infinite 0.4s; }

@keyframes mkc-bounce {
  0%,80%,100% { transform: translateY(0); opacity: 0.4; }
  40%         { transform: translateY(-4px); opacity: 1; }
}

.mkc-footer {
  padding: 6px 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: 'Inconsolata', monospace;
  font-size: 0.52rem;
  color: rgba(255,255,255,0.18);
  background: #0a0a0a;
  letter-spacing: 0.03em;
}

/* Mockup Sidebar */
.mockup-sidebar {
  width: 110px;
  flex-shrink: 0;
  background: #0d0d0d;
  border-right: 1px solid rgba(255,255,255,0.07);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mockup-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--brand);
  padding: 0 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 8px;
}

.mockup-nav-item {
  font-family: 'Inconsolata', monospace;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.3);
  padding: 7px 12px;
  cursor: default;
  transition: color 0.2s;
}

.mockup-nav-item.active {
  color: var(--brand);
  background: rgba(6,182,212,0.08);
}

/* Mockup Content */
.mockup-content {
  flex: 1;
  background: #131313;
  padding: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-greeting {
  font-family: 'Inconsolata', monospace;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
}

/* Mockup KPIs */
.mockup-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mockup-kpi {
  background: #1c1c1c;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mockup-kpi-label {
  font-family: 'Inconsolata', monospace;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
}

.mockup-kpi-value {
  font-family: 'Inconsolata', monospace;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1;
}

.mockup-kpi-value.accent {
  color: var(--brand);
}

.mockup-kpi-sub {
  font-family: 'Inconsolata', monospace;
  font-size: 0.55rem;
  color: rgba(255,255,255,0.2);
}

/* Mockup Chart */
.mockup-chart {
  flex: 1;
  background: #1c1c1c;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.mockup-chart-title {
  font-family: 'Inconsolata', monospace;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

.mockup-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  flex: 1;
  padding-bottom: 2px;
}

.mockup-bar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  height: 100%;
  justify-content: flex-end;
}

.mockup-bar-col {
  width: 100%;
  background: rgba(255,255,255,0.15);
  min-height: 0;
  height: 0;
  transition: height 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.mockup-bar-col.accent-bar {
  background: var(--brand);
}

.mockup-bar-wrap span {
  font-family: 'Inconsolata', monospace;
  font-size: 0.5rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}

/* Mockup Open-Items List */
.mockup-list {
  background: #1c1c1c;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mockup-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 6px;
  margin-bottom: 2px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mockup-list-title {
  font-family: 'Inconsolata', monospace;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
}

.mockup-list-more {
  font-family: 'Inconsolata', monospace;
  font-size: 0.52rem;
  color: var(--brand);
  letter-spacing: 0.04em;
}

.mockup-list-row {
  display: grid;
  grid-template-columns: 5rem 1fr auto auto;
  align-items: center;
  gap: 6px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mockup-list-row:last-child {
  border-bottom: none;
}

.mockup-list-num {
  font-family: 'Inconsolata', monospace;
  font-size: 0.52rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.02em;
}

.mockup-list-name {
  font-family: 'Inconsolata', monospace;
  font-size: 0.58rem;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-list-amount {
  font-family: 'Inconsolata', monospace;
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-align: right;
}

.mockup-list-badge {
  font-family: 'Inconsolata', monospace;
  font-size: 0.45rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 5px;
}

.mockup-list-badge.overdue {
  background: rgba(239,68,68,0.15);
  color: #f87171;
}

.mockup-list-badge.open {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.4);
}

/* ── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}

.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.trust-label {
  font-family: 'Inconsolata', monospace;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.35);
  text-transform: uppercase;
}

.trust-badges {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
}

.trust-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-family: 'Inconsolata', monospace;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  white-space: nowrap;
}

.trust-badge svg {
  flex-shrink: 0;
  opacity: 0.5;
}

@media (max-width: 600px) {
  .trust-badges {
    gap: 16px 24px;
  }
}

/* ── FEATURES ───────────────────────────────────────────────── */
.features {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.feature-card {
  background: var(--white);
  padding: 36px 32px;
  border: 2px solid transparent;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
  /* scroll reveal start state */
  opacity: 0;
  transform: translateY(20px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.25s, box-shadow 0s;
}

.feature-card:hover {
  border-color: var(--brand);
  z-index: 1;
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--brand);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.feature-card p {
  font-size: 0.88rem;
  color: rgba(0,0,0,0.5);
  line-height: 1.7;
}

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.how {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  /* scroll reveal start state */
  opacity: 0;
  transform: translateY(20px);
}

.step.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 20px;
}

.step-body h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.step-body p {
  font-size: 0.88rem;
  color: rgba(0,0,0,0.5);
  line-height: 1.7;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgba(0,0,0,0.2);
  padding: 36px 16px;
  flex-shrink: 0;
  align-self: center;
}

/* ── SCREENSHOTS ────────────────────────────────────────────── */
.screenshots {
  background: var(--white);
}

.screenshots-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 40px;
}

.tab {
  font-family: 'Inconsolata', monospace;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  padding: 14px 24px;
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}

.tab:hover {
  color: var(--black);
}

.tab.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.screenshot-area {
  position: relative;
}

.screenshot-frame {
  display: none;
}

.screenshot-frame.active {
  display: block;
}

.screenshot-mockup {
  background: #f8f8f8;
  border: 1px solid var(--border);
  padding: 28px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Screenshot Mockup shared inner styles */
.sm-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.sm-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}

.sm-date {
  font-family: 'Inconsolata', monospace;
  font-size: 0.7rem;
  color: rgba(0,0,0,0.35);
}

/* sm-kpis */
.sm-kpis {
  display: flex;
  gap: 16px;
}

.sm-kpi {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sm-kpi-l {
  font-family: 'Inconsolata', monospace;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
}

.sm-kpi strong {
  font-family: 'Inconsolata', monospace;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
}

.sm-kpi strong.accent {
  color: var(--brand);
}

.sm-kpi span {
  font-size: 0.7rem;
  color: rgba(0,0,0,0.35);
}

/* sm-chart-area */
.sm-chart-area {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sm-chart-label {
  font-family: 'Inconsolata', monospace;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
}

.sm-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  flex: 1;
  height: 120px;
}

.sm-bar-g {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 1fr 1fr;
  column-gap: 3px;
  row-gap: 0;
  flex: 1;
  height: 100%;
  position: relative;
}

.sm-bar-g span {
  grid-column: 1 / -1;
  font-family: 'Inconsolata', monospace;
  font-size: 0.55rem;
  color: rgba(0,0,0,0.3);
  text-align: center;
  margin-top: 4px;
}

.sm-b {
  min-width: 4px;
  align-self: end;
  min-height: 4px;
  border-radius: 2px 2px 0 0;
}

.sm-b.purple {
  background: #f97316;
}

.sm-b.gray {
  background: #c084fc;
}

.sm-bar-legend {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.sm-bar-legend span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inconsolata', monospace;
  font-size: 0.52rem;
  color: rgba(0,0,0,0.35);
}

.sm-legend-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 1px;
  flex-shrink: 0;
}

/* sm-form (invoice) */
.sm-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sm-form-row {
  display: flex;
  gap: 12px;
}

.sm-field {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sm-field > span {
  font-family: 'Inconsolata', monospace;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
}

.sm-field > strong {
  font-family: 'Inconsolata', monospace;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
}

/* sm-positions */
.sm-positions {
  background: var(--white);
  border: 1px solid var(--border);
}

.sm-pos-head, .sm-pos-row {
  display: grid;
  grid-template-columns: 20px 1fr 60px 80px 80px;
  gap: 8px;
  padding: 8px 12px;
  font-family: 'Inconsolata', monospace;
  font-size: 0.72rem;
  align-items: center;
}

.sm-pos-head {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.6rem;
  color: rgba(0,0,0,0.35);
  border-bottom: 1px solid var(--border);
}

.sm-pos-row {
  border-bottom: 1px solid rgba(0,0,0,0.04);
  color: rgba(0,0,0,0.7);
}

.sm-pos-row:last-child {
  border-bottom: none;
}

/* sm-total */
.sm-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 0;
  border-top: 1px solid var(--border);
}

.sm-total span {
  font-family: 'Inconsolata', monospace;
  font-size: 0.72rem;
  color: rgba(0,0,0,0.4);
}

.sm-total strong {
  font-family: 'Inconsolata', monospace;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
}

/* sm-charts-row (bar + pie side by side) */
.sm-charts-row {
  display: flex;
  gap: 12px;
  flex: 1;
  min-height: 0;
}
.sm-charts-row .sm-chart-area {
  flex: 1;
  min-width: 0;
}
.sm-pie-area {
  flex: 0 0 200px !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sm-pie-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.sm-pie-legend {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}
.sm-pie-leg-row {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inconsolata', monospace;
  font-size: 0.6rem;
  color: rgba(0,0,0,0.55);
}
.sm-pie-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sm-pie-leg-name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sm-pie-leg-val {
  font-weight: 700;
  color: rgba(0,0,0,0.75);
}
.sm-pie-tooltip {
  font-family: 'Inconsolata', monospace;
  font-size: 0.62rem;
  opacity: 0;
  transition: opacity 0.15s;
  padding: 4px 8px;
  background: rgba(0,0,0,0.82);
  color: #fff;
  text-align: center;
  pointer-events: none;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* sm-reports */
.sm-reports {
  display: flex;
  gap: 20px;
  flex: 1;
}

.sm-report-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.active-card {
  border-color: var(--black);
}

.sm-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inconsolata', monospace;
  font-size: 0.72rem;
}

.sm-table td {
  padding: 6px 8px 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: rgba(0,0,0,0.65);
  vertical-align: middle;
}

.sm-table td:last-child {
  text-align: right;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
}

/* Status colors */
.green  { color: #2d8a4e !important; }
.orange { color: #c07a00 !important; }
.red-t  { color: var(--brand) !important; }

.sm-report-stats {
  width: 160px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sm-report-stats > div {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sm-report-stats strong {
  font-family: 'Inconsolata', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
}

.sm-report-stats strong.accent {
  color: var(--brand);
}

/* ── PRICING ────────────────────────────────────────────────── */
.pricing {
  background: var(--white);
  border-top: 1px solid var(--border);
}

/* Billing Toggle */
.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.toggle-label {
  font-family: 'Inconsolata', monospace;
  font-size: 0.875rem;
  color: rgba(0,0,0,0.35);
  transition: color 0.2s;
}

#toggle-monthly { color: var(--black); }
.toggle-label.active { color: var(--black); }

.toggle-save {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  padding: 2px 6px;
  margin-left: 4px;
}

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: rgba(0,0,0,0.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
  flex-shrink: 0;
}

.toggle-switch.active { background: var(--black); }

.toggle-knob {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  transition: transform 0.2s;
}

.toggle-switch.active .toggle-knob { transform: translateX(20px); }

.price-yearly-note {
  font-family: 'Inconsolata', monospace;
  font-size: 0.72rem;
  color: rgba(0,0,0,0.4);
  margin-top: 4px;
  margin-bottom: 20px;
}

.pricing-card.featured .price-yearly-note { color: rgba(255,255,255,0.4); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.pricing-enterprise {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px 56px;
  border: 2px solid #0f172a;
  padding: 36px 40px;
  margin-bottom: 32px;
  background: var(--white);
  align-items: center;
}

.pe-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pe-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.pe-cta {
  border-color: #0f172a !important;
  color: #0f172a !important;
  width: 100%;
  text-align: center;
}

.pe-cta:hover {
  background: #0f172a !important;
  color: var(--white) !important;
}

.pe-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 24px;
  align-content: center;
}

.pe-feat {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: 'Inconsolata', monospace;
  font-size: 0.85rem;
  color: rgba(0,0,0,0.7);
}

.pe-feat .check {
  color: #06b6d4;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card {
  border: 2px solid var(--border);
  padding: 36px 32px;
  position: relative;
  background: var(--white);
  display: flex;
  flex-direction: column;
  /* scroll reveal start state */
  opacity: 0;
  transform: translateY(20px);
}

.pricing-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pricing-card.featured {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}


.pricing-badge {
  display: inline-block;
  font-family: 'Inconsolata', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--brand);
  color: var(--white);
  padding: 4px 10px;
  margin-bottom: 16px;
  width: fit-content;
}

.pricing-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.pricing-desc {
  font-size: 0.82rem;
  color: rgba(0,0,0,0.45);
  margin-bottom: 24px;
  line-height: 1.5;
}

.pricing-card.featured .pricing-desc {
  color: rgba(255,255,255,0.45);
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 28px;
  letter-spacing: -0.04em;
}

.price-eur {
  font-size: 1.4rem;
  font-weight: 700;
  vertical-align: super;
  margin-right: 2px;
}

.price-period {
  font-family: 'Inconsolata', monospace;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(0,0,0,0.4);
  letter-spacing: 0;
  vertical-align: baseline;
}

.pricing-card.featured .price-period {
  color: rgba(255,255,255,0.4);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: auto;
}

.pricing-features li {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(0,0,0,0.65);
}

.pricing-card.featured .pricing-features li {
  color: rgba(255,255,255,0.7);
}

.check {
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-note {
  font-family: 'Inconsolata', monospace;
  font-size: 0.72rem;
  color: rgba(0,0,0,0.35);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ── PLAN COMPARISON TABLE ──────────────────────────────────── */
.comparison-table {
  margin-top: 4rem;
}
.comparison-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 2rem;
}
.ct-wrap {
  border: 1px solid rgba(0,0,0,0.12);
  overflow-x: auto;
}
.ct-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.ct-row.ct-toggle-row > .ct-toggle-btn {
  grid-column: 1 / -1;
}
.ct-row.ct-head {
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.ct-row.ct-last {
  border-bottom: none;
}
.ct-extra {
  display: none;
  overflow: hidden;
}
.ct-extra.open {
  display: block;
}
.ct-row.ct-toggle-row {
  border-bottom: none;
  padding: 0;
}
.ct-toggle-btn {
  background: none;
  border: none;
  width: 100%;
  padding: 0.6rem 1rem;
  text-align: left;
  font-family: 'Inconsolata', monospace;
  font-size: 0.8rem;
  color: #06b6d4;
  cursor: pointer;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.ct-toggle-btn:hover {
  color: #0891b2;
  text-decoration: underline;
}
.ct-cell {
  padding: 0.75rem 1rem;
  font-family: 'Inconsolata', monospace;
  font-size: 0.85rem;
  color: rgba(0,0,0,0.65);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(0,0,0,0.08);
}
.ct-cell:first-child {
  border-left: none;
  text-align: left;
  justify-content: flex-start;
  color: rgba(0,0,0,0.7);
}
.ct-cell.ct-plan {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
}
.ct-cell.ct-pro {
  background: rgba(6,182,212,0.06);
  color: #000;
  border-left: 1px solid rgba(6,182,212,0.3);
  border-right: 1px solid rgba(6,182,212,0.3);
}
.ct-cell.ct-pro.ct-plan {
  color: #000;
  background: rgba(6,182,212,0.1);
}
.ct-cell.ct-enterprise {
  background: rgba(15,23,42,0.03);
  color: #000;
  border-left: 1px solid rgba(15,23,42,0.2);
  border-right: 1px solid rgba(15,23,42,0.2);
}
.ct-cell.ct-enterprise.ct-plan {
  color: #000;
  background: rgba(15,23,42,0.07);
}
.ct-cell.ct-enterprise.ct-no {
  color: rgba(0,0,0,0.2);
}
.ct-cell.ct-no {
  color: rgba(0,0,0,0.2);
}
.ct-cell.ct-pro.ct-no {
  color: rgba(0,0,0,0.2);
}
.ct-row .ct-cell.ct-check {
  font-size: 1rem;
  color: #06b6d4;
  font-weight: 700;
}
.ct-row .ct-cell.ct-no {
  color: rgba(0,0,0,0.2);
  font-weight: normal;
  font-size: 0.9rem;
}
.ct-row.ct-prices .ct-cell {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  background: rgba(0,0,0,0.02);
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.ct-row.ct-prices .ct-cell.ct-pro {
  background: rgba(6,182,212,0.08);
  color: #000;
}
.ct-row.ct-prices .ct-cell.ct-enterprise {
  background: rgba(15,23,42,0.06);
  color: #000;
  font-family: 'Inconsolata', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.ct-row.ct-prices .ct-cell.ct-feat.ct-price-label {
  font-family: 'Inconsolata', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.35);
  font-weight: normal;
}
.ct-badge {
  display: block;
  font-family: 'Inconsolata', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #06b6d4;
  font-weight: 700;
  margin-bottom: 3px;
}
.ct-section {
  grid-column: 1 / -1;
  padding: 0.55rem 1rem;
  font-family: 'Inconsolata', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  background: rgba(0,0,0,0.03);
  border-bottom: 1px solid rgba(0,0,0,0.12);
  display: block;
}
@media (max-width: 640px) {
  .ct-row {
    grid-template-columns: 1.6fr 0.8fr 0.8fr 0.8fr;
  }
  .ct-cell {
    padding: 0.6rem 0.5rem;
    font-size: 0.75rem;
  }
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials {
  background: var(--light-gray);
  border-top: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* scroll reveal start state */
  opacity: 0;
  transform: translateY(20px);
}

.testimonial.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(0,0,0,0.7);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0,0,0,0.08);
  display: block;
}

.testimonial-author strong {
  display: block;
  font-family: 'Inconsolata', monospace;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--black);
}

.testimonial-author span {
  display: block;
  font-size: 0.72rem;
  color: rgba(0,0,0,0.4);
  margin-top: 2px;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.faq-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-inner .section-title {
  margin-bottom: 8px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: 'Inconsolata', monospace;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--brand);
}

.faq-arrow {
  font-size: 1.2rem;
  color: rgba(0,0,0,0.3);
  flex-shrink: 0;
  transition: transform 0.25s, color 0.2s;
  line-height: 1;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
  color: var(--brand);
}

.faq-item.open .faq-q {
  color: var(--brand);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  font-size: 0.88rem;
  color: rgba(0,0,0,0.55);
  line-height: 1.75;
  padding: 0;
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding-bottom: 20px;
}

/* ── CTA ────────────────────────────────────────────────────── */
.cta {
  background: var(--black);
  color: var(--white);
}

.cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-title {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  max-width: 640px;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  max-width: 400px;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-family: 'Inconsolata', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}

.footer-col a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  line-height: 1.5;
}

.footer-col a:hover {
  color: var(--brand);
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom span {
  font-family: 'Inconsolata', monospace;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

.footer-dsgvo-note {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 24px 20px;
  font-family: 'Inconsolata', monospace;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.08);
}
/* ── SCROLL REVEAL ──────────────────────────────────────────── */
/* Default hidden states already defined on .feature-card, .step, .pricing-card, .testimonial */
/* The .visible class is added by JS (IntersectionObserver) */

/* Staggered delays for grids */
.feature-card:nth-child(1) { transition-delay: 0s; }
.feature-card:nth-child(2) { transition-delay: 0.07s; }
.feature-card:nth-child(3) { transition-delay: 0.14s; }
.feature-card:nth-child(4) { transition-delay: 0.07s; }
.feature-card:nth-child(5) { transition-delay: 0.14s; }
.feature-card:nth-child(6) { transition-delay: 0.21s; }

.step:nth-child(1) { transition-delay: 0s; }
.step:nth-child(3) { transition-delay: 0.1s; }
.step:nth-child(5) { transition-delay: 0.2s; }

.pricing-card:nth-child(1) { transition-delay: 0s; }
.pricing-card:nth-child(2) { transition-delay: 0.1s; }
.pricing-card:nth-child(3) { transition-delay: 0.2s; }

.testimonial:nth-child(1) { transition-delay: 0s; }
.testimonial:nth-child(2) { transition-delay: 0.1s; }
.testimonial:nth-child(3) { transition-delay: 0.2s; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-pad: 72px 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-inner {
    padding: 72px 32px 48px;
    max-width: 100%;
    margin: 0;
  }

  .hero-visual {
    padding: 0 32px 80px;
    background: #0a0a0a;
  }

  .mockup {
    max-width: 100%;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-enterprise {
    grid-template-columns: 1fr;
  }

  .pe-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-pad: 56px 20px;
  }

  /* Nav */
  .nav-links {
    display: none;
  }

  .nav-auth {
    display: none;
  }

  .nav-burger {
    display: flex;
    margin-left: 0;
  }

  .logo {
    margin-right: auto;
  }

  /* Hero */
  .hero-inner {
    padding: 56px 20px 40px;
  }

  .hero-visual {
    padding: 0 20px 56px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions a {
    width: 100%;
    text-align: center;
  }

  /* Mockup */
  .mockup-screen {
    height: 280px;
  }

  .mockup-sidebar {
    width: 80px;
  }

  .mockup-kpis {
    grid-template-columns: 1fr;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .steps {
    flex-direction: column;
    gap: 0;
  }

  .step-arrow {
    display: none;
  }

  .step {
    width: 100%;
    border-bottom: none;
  }

  .step + .step {
    border-top: 1px solid var(--border);
  }

  /* Screenshots */
  .screenshots-tabs {
    overflow-x: auto;
    white-space: nowrap;
  }

  .screenshot-mockup {
    padding: 16px;
  }

  .sm-kpis {
    flex-direction: column;
  }

  .sm-form-row {
    flex-direction: column;
  }

  .sm-pos-head,
  .sm-pos-row {
    grid-template-columns: 20px 1fr 50px 60px 70px;
    font-size: 0.62rem;
  }

  .sm-reports {
    flex-direction: column;
  }

  .sm-report-stats {
    width: 100%;
    flex-direction: row;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pe-features {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 20px 32px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 20px;
  }
}

/* ── AI Section ─────────────────────────────────────────── */
.ai-section {
  background: #000;
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 50%, rgba(6,182,212,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.ai-section .section-label { color: var(--brand); }
.ai-section .section-title { color: #fff; }
.ai-section .section-sub { color: rgba(255,255,255,0.55); }
.ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ai-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ai-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ai-check {
  color: var(--brand);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ai-list strong {
  display: block;
  font-family: 'Inconsolata', monospace;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.ai-list span {
  font-family: 'Inconsolata', monospace;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.ai-pro-badge {
  display: inline-block;
  font-family: 'Inconsolata', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--brand);
  color: #fff;
  padding: 2px 7px;
  margin-left: 7px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.ai-chat {
  border: 1px solid rgba(255,255,255,0.1);
  background: #0d0d0d;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 0 0 1px rgba(6, 182, 212, 0.3),
    0 0 30px rgba(6, 182, 212, 0.55),
    0 0 80px rgba(6, 182, 212, 0.35),
    0 0 160px rgba(6, 182, 212, 0.18),
    0 0 260px rgba(6, 182, 212, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.7);
}
.ai-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
}
.ai-chat-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ai-chat-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ai-chat-name {
  font-family: 'Inconsolata', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1;
}
.ai-chat-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inconsolata', monospace;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.35);
}
.ai-chat-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: ai-chat-dot-pulse 2s ease-in-out infinite;
}
@keyframes ai-chat-dot-pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.4; }
}
.ai-chat-footer {
  padding: 10px 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-family: 'Inconsolata', monospace;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.2);
  letter-spacing: 0.03em;
}
@keyframes ai-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.ai-messages {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.ai-msg {
  font-family: 'Inconsolata', monospace;
  font-size: 0.78rem;
  line-height: 1.65;
  padding: 10px 14px;
  max-width: 92%;
  animation: ai-msg-in 0.35s cubic-bezier(0,0,0.2,1) both;
}
@keyframes ai-msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ai-msg.user {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
  align-self: flex-end;
  border-left: 2px solid rgba(255,255,255,0.12);
}
.ai-msg.bot {
  background: rgba(6,182,212,0.07);
  color: rgba(255,255,255,0.82);
  align-self: flex-start;
  border-left: 2px solid var(--brand);
}
/* Typing indicator (ai-section) */
.ai-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: rgba(6,182,212,0.07);
  border-left: 2px solid var(--brand);
  align-self: flex-start;
  animation: ai-msg-in 0.35s cubic-bezier(0,0,0.2,1) both;
}
.ai-typing span {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.5;
}
.ai-typing span:nth-child(1) { animation: ai-bounce 1.2s ease-in-out infinite 0s; }
.ai-typing span:nth-child(2) { animation: ai-bounce 1.2s ease-in-out infinite 0.2s; }
.ai-typing span:nth-child(3) { animation: ai-bounce 1.2s ease-in-out infinite 0.4s; }
@keyframes ai-bounce {
  0%,80%,100% { transform: translateY(0); opacity: 0.4; }
  40%         { transform: translateY(-5px); opacity: 1; }
}
/* Typewriter cursor */
.ai-cursor {
  display: inline-block;
  width: 2px;
  height: 0.85em;
  background: var(--brand);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: ai-blink 0.75s step-end infinite;
}
@keyframes ai-blink {
  0%,100% { opacity: 1; }
  50%     { opacity: 0; }
}
@media (max-width: 1024px) {
  .ai-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* Very small */
@media (max-width: 400px) {
  .footer-links {
    grid-template-columns: 1fr;
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .hero-trust .dot {
    display: none;
  }
}

/* ── CHATBOT WIDGET ──────────────────────────────────────────────────────── */
#chat-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  font-family: 'Inconsolata', monospace;
}

#chat-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #06b6d4;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(6,182,212,0.4);
  transition: background 0.2s, transform 0.2s;
  position: relative;
}
#chat-toggle:hover { background: #0891b2; transform: scale(1.06); }

#chat-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid #fff;
}

#chat-panel {
  position: absolute;
  bottom: 64px;
  right: 0;
  width: 340px;
  max-height: 480px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  display: flex;
  flex-direction: column;
}

#chat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.7);
}
.chat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #06b6d4;
  flex-shrink: 0;
}
#chat-powered {
  margin-left: auto;
  font-size: 0.6rem;
  color: rgba(0,0,0,0.3);
  font-weight: 400;
  letter-spacing: 0.04em;
}

#chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
  max-height: 320px;
}

.chat-msg {
  max-width: 88%;
  padding: 9px 13px;
  font-size: 0.8rem;
  line-height: 1.5;
  white-space: pre-wrap;
}
.chat-msg.user {
  background: #06b6d4;
  color: #fff;
  align-self: flex-end;
}
.chat-msg.bot {
  background: rgba(0,0,0,0.04);
  color: rgba(0,0,0,0.75);
  align-self: flex-start;
  border-left: 2px solid #06b6d4;
}

/* Loading dots */
.chat-loading {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 12px 13px;
}
.chat-loading span {
  width: 6px;
  height: 6px;
  background: #06b6d4;
  border-radius: 50%;
  animation: chatdot 1.2s infinite ease-in-out;
}
.chat-loading span:nth-child(2) { animation-delay: 0.2s; }
.chat-loading span:nth-child(3) { animation-delay: 0.4s; }
@keyframes chatdot {
  0%, 80%, 100% { transform: scale(0.7); opacity: 0.4; }
  40%            { transform: scale(1);   opacity: 1; }
}

#chat-input-row {
  display: flex;
  align-items: flex-end;
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 10px 12px;
}
#chat-input {
  flex: 1;
  border: none;
  outline: none;
  resize: none;
  font-family: 'Inconsolata', monospace;
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(0,0,0,0.8);
  background: transparent;
  max-height: 100px;
  overflow-y: auto;
}
#chat-input::placeholder { color: rgba(0,0,0,0.3); }
#chat-send {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #06b6d4;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
#chat-send:hover { background: #0891b2; }
#chat-send:disabled { background: rgba(0,0,0,0.15); cursor: default; }

@media (max-width: 480px) {
  #chat-panel { width: calc(100vw - 32px); right: 0; }
  #chat-widget { bottom: 16px; right: 16px; }
}


/* ── App Download Section ───────────────────────────────────── */
.app-dl {
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.app-dl::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 50%, rgba(6,182,212,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.app-dl-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Text */
.app-dl-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
}

.app-dl-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.app-dl-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 44px;
}

.app-dl-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.app-dl-feat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(6,182,212,0.35);
  border-radius: 8px;
  color: #06b6d4;
  flex-shrink: 0;
  background: rgba(6,182,212,0.06);
}

/* Store Badges */
.app-dl-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #000;
  border: 2px solid #fff;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  min-width: 160px;
}

.app-badge:hover {
  background: #06b6d4;
  border-color: #06b6d4;
  color: #fff;
}

.app-badge-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.app-badge-label {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.6;
  font-weight: 600;
  line-height: 1;
}

.app-badge-store {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-family: 'Playfair Display', Georgia, serif;
}

.app-dl-soon {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.03em;
}

.app-dl-soon-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #06b6d4;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* Phone Mockup */
.app-dl-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 40px 0;
}

.phone {
  width: 270px;
  background: #0e0e0e;
  border-radius: 44px;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 1px rgba(6, 182, 212, 0.3),
    0 0 30px rgba(6, 182, 212, 0.55),
    0 0 80px rgba(6, 182, 212, 0.35),
    0 0 160px rgba(6, 182, 212, 0.18),
    0 0 260px rgba(6, 182, 212, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 30px;
  background: #0e0e0e;
  border-radius: 0 0 20px 20px;
  z-index: 10;
  border: 2px solid rgba(255,255,255,0.08);
  border-top: none;
}

.phone-screen {
  margin: 12px;
  background: #111;
  border-radius: 34px;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  flex-direction: column;
}

.phone-home-bar {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-home-bar::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
}

/* Status bar */
.ph-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px 6px;
  font-size: 0.65rem;
  font-weight: 600;
  color: #fff;
}

.ph-statusbar-icons {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
}

/* Header */
.ph-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px 14px;
}

.ph-greeting {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.ph-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.ph-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #06b6d4;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}

/* KPIs */
.ph-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 16px 14px;
}

.ph-kpi {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.07);
}

.ph-kpi-accent {
  background: rgba(6,182,212,0.12);
  border-color: rgba(6,182,212,0.25);
}

.ph-kpi-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.ph-kpi-val {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.ph-kpi-accent .ph-kpi-val {
  color: #06b6d4;
}

.ph-kpi-sub {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
}

/* Mini Chart */
.ph-chart-wrap {
  padding: 0 16px 14px;
}

.ph-chart-title {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}

.ph-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 50px;
}

.ph-bar {
  flex: 1;
  height: var(--h);
  background: rgba(255,255,255,0.12);
  border-radius: 3px 3px 0 0;
  transition: background 0.2s;
}

.ph-bar-accent {
  background: #06b6d4;
}

.ph-chart-labels {
  display: flex;
  gap: 5px;
  margin-top: 4px;
}

.ph-chart-labels span {
  flex: 1;
  text-align: center;
  font-size: 0.52rem;
  color: rgba(255,255,255,0.25);
}

/* Recent items */
.ph-recent-title {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  padding: 0 16px 8px;
}

.ph-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.ph-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  font-size: 0.55rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ph-item-info {
  flex: 1;
  min-width: 0;
}

.ph-item-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ph-item-date {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.3);
}

.ph-item-amount {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  flex-shrink: 0;
}

.ph-item-amount.accent {
  color: #06b6d4;
}

/* Bottom Nav */
.ph-bottomnav {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #0e0e0e;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 10px 8px 6px;
}

.ph-bnav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: rgba(255,255,255,0.25);
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ph-bnav-active {
  color: #06b6d4;
}

.ph-bnav-fab {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #06b6d4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(6,182,212,0.5);
  margin-bottom: 2px;
}

/* Floating badges */
.app-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 32px;
  padding: 8px 14px 8px 10px;
  font-size: 0.72rem;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.app-float-icon {
  font-size: 1rem;
}

.app-float-1 {
  top: 20%;
  right: -10px;
  animation: float-a 4s ease-in-out infinite;
}

.app-float-2 {
  bottom: 22%;
  left: -10px;
  animation: float-b 4s ease-in-out infinite 1.5s;
}

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

@keyframes float-b {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(6px); }
}

/* Responsive */
@media (max-width: 900px) {
  .app-dl-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 72px 24px;
  }

  .app-dl-visual {
    order: -1;
  }

  .app-float-1 { right: 0; }
  .app-float-2 { left: 0; }
}

@media (max-width: 480px) {
  .phone { width: 240px; }
  .app-dl-badges { flex-direction: column; }
  .app-badge { min-width: unset; width: 100%; }
}
