/* ═══════════════════════════════════════════════════════════
   Tabl Landing Page – Design System
   Szín: #003331 (deep teal) / #fbf9f4 (cream)
   Font: Plus Jakarta Sans
   ═══════════════════════════════════════════════════════════ */

/* ── Tokens ────────────────────────────────────────────────── */
:root {
  --primary:            #003331;
  --primary-hover:      #004b49;
  --primary-light:      #e8f4f3;
  --secondary:          #4d6261;
  --tertiary:           #49220a;

  --surface:            #fbf9f4;
  --surface-low:        #f0edea;
  --surface-card:       #ffffff;

  --on-surface:         #1b1c19;
  --on-surface-variant: #3f4948;
  --on-surface-muted:   #7a8584;

  --outline:            rgba(27, 28, 25, 0.12);
  --shadow:             0 8px 32px rgba(27, 28, 25, 0.07);
  --shadow-lg:          0 20px 60px rgba(27, 28, 25, 0.10);

  --font:               'Plus Jakarta Sans', system-ui, sans-serif;
  --radius:             0.625rem;
  --radius-lg:          1.25rem;
  --radius-full:        999px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--on-surface);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--primary);
  color: #ffffff;
}
.btn--primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 51, 49, 0.25);
}

.btn--secondary {
  background: var(--surface-card);
  color: var(--primary);
  box-shadow: inset 0 0 0 1.5px var(--primary);
}
.btn--secondary:hover {
  background: var(--primary-light);
}

.btn--ghost {
  background: transparent;
  color: var(--on-surface);
}
.btn--ghost:hover {
  background: var(--surface-low);
}

.btn--lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.btn--full { width: 100%; justify-content: center; }

/* ── Section Header ────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--on-surface);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--on-surface-variant);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.0625rem;
}

/* ── Pulse dot ─────────────────────────────────────────────── */
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  position: relative;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #16a34a;
  opacity: 0.3;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.6); opacity: 0; }
}

/* ════════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 244, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--outline);
  transition: box-shadow 0.2s;
}

.nav.scrolled {
  box-shadow: 0 2px 16px rgba(27, 28, 25, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 64px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--on-surface);
  letter-spacing: -0.03em;
}

.nav__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 800;
}

.nav__links {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}

.nav__links a {
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--on-surface-variant);
  transition: all 0.15s;
}
.nav__links a:hover {
  background: var(--surface-low);
  color: var(--on-surface);
}

.nav__actions {
  display: flex;
  gap: 0.625rem;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--on-surface);
  border-radius: 2px;
  transition: all 0.2s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--outline);
}
.nav__mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--on-surface-variant);
  padding: 0.5rem 0;
}
.nav__mobile .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  padding: 5rem 0 4rem;
  overflow: hidden;
  position: relative;
}

.hero__bg-shape {
  position: absolute;
  top: -120px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 75, 73, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #16a34a;
  background: #f0fdf4;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--on-surface);
  margin-bottom: 1.25rem;
}

.hero__title em {
  font-style: normal;
  color: var(--primary);
}

.hero__sub {
  font-size: 1.125rem;
  color: var(--on-surface-variant);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.hero__note {
  font-size: 0.875rem;
  color: var(--on-surface-muted);
}

/* ── Phone Mockup ──────────────────────────────────────────── */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 260px;
  background: #1b1c19;
  border-radius: 32px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.phone-mockup__screen {
  background: var(--surface);
  border-radius: 22px;
  padding: 1rem;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--outline);
  margin-bottom: 0.25rem;
}
.mock-logo { font-size: 0.8rem; font-weight: 700; }
.mock-table {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
}

.mock-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--on-surface-muted);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--surface-low);
  margin-right: 0.25rem;
}
.mock-category.active {
  background: var(--primary);
  color: white;
}

.mock-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem 0.75rem;
  background: var(--surface-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.mock-item--selected { background: var(--primary-light); }
.mock-item__name { font-size: 0.75rem; font-weight: 600; color: var(--on-surface); }
.mock-item__price { font-size: 0.7rem; color: var(--on-surface-muted); margin-top: 1px; }

.mock-add {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mock-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}
.mock-qty span {
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.875rem;
}
.mock-qty strong { font-size: 0.875rem; }

.mock-cart {
  margin-top: auto;
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  padding: 0.625rem 0.875rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ── Hero stats ────────────────────────────────────────────── */
.hero__stat {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.hero__stat--1 { bottom: 60px; left: -40px; }
.hero__stat--2 { top: 60px; right: -30px; }

.stat-icon { font-size: 1.375rem; }
.hero__stat strong { display: block; font-size: 0.9375rem; font-weight: 700; color: var(--on-surface); }
.hero__stat span { font-size: 0.75rem; color: var(--on-surface-muted); }

/* ════════════════════════════════════════════════════════════
   SOCIAL PROOF
   ════════════════════════════════════════════════════════════ */
.proof {
  padding: 3rem 0;
  background: var(--surface-low);
}

.proof__label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-surface-muted);
  margin-bottom: 2rem;
}

.proof__quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.quote {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.quote p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--on-surface-variant);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.quote footer {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.quote footer strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--on-surface);
}

.quote footer span {
  font-size: 0.8125rem;
  color: var(--on-surface-muted);
}

/* ════════════════════════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════════════════════════ */
.steps {
  padding: 6rem 0;
}

.steps__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.step {
  text-align: center;
  padding: 2rem;
}

.step__number {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--primary);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.step__icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}

.step h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 0.625rem;
}

.step p {
  font-size: 0.9375rem;
  color: var(--on-surface-variant);
  line-height: 1.65;
}

.step__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--outline);
  padding-top: 4rem;
  color: var(--on-surface-muted);
}

/* ════════════════════════════════════════════════════════════
   FEATURES
   ════════════════════════════════════════════════════════════ */
.features {
  padding: 6rem 0;
  background: var(--surface-low);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--on-surface-variant);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   DEMO
   ════════════════════════════════════════════════════════════ */
.demo {
  padding: 6rem 0;
}

.demo__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  background: var(--primary);
  border-radius: 1.5rem;
  padding: 4rem;
  color: white;
}

.demo__inner .section-label {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.demo__inner h2 {
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: white;
  margin: 0.75rem 0;
  line-height: 1.2;
}

.demo__inner > .demo__content > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.75rem;
  font-size: 1.0625rem;
}

.demo__steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.demo__step {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.demo__step span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.demo__step p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.6;
}

.demo__step code {
  font-family: monospace;
  font-size: 0.85em;
  background: rgba(255,255,255,0.15);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
}

.demo__inner .btn--primary {
  background: white;
  color: var(--primary);
}
.demo__inner .btn--primary:hover {
  background: var(--surface-low);
}

.demo__note {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.demo__qr {
  flex-shrink: 0;
}

.qr-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}

.qr-placeholder p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ════════════════════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════════════════════ */
.pricing {
  padding: 6rem 0;
  background: var(--surface-low);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
}

.pricing-card--featured {
  background: var(--primary);
  color: white;
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #16a34a;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-card__header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.pricing-card__header p {
  font-size: 0.875rem;
  color: var(--on-surface-muted);
  margin-bottom: 1.5rem;
}

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

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--outline);
}

.pricing-card--featured .pricing-card__price {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.price {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.currency {
  font-size: 0.9375rem;
  color: var(--on-surface-muted);
}

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

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.pricing-card__features li {
  color: var(--on-surface-variant);
}

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

.pricing-card__features li.muted {
  color: var(--on-surface-muted);
}

.pricing-card--featured .pricing-card__features li.muted {
  color: rgba(255, 255, 255, 0.4);
}

.pricing-card--featured .btn--primary {
  background: white;
  color: var(--primary);
}

.pricing-card--featured .btn--primary:hover {
  background: var(--surface-low);
}

.pricing__note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--on-surface-muted);
}

/* ════════════════════════════════════════════════════════════
   CTA
   ════════════════════════════════════════════════════════════ */
.cta {
  padding: 6rem 0;
}

.cta__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta__inner h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--on-surface);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.cta__inner p {
  font-size: 1.0625rem;
  color: var(--on-surface-variant);
  margin-bottom: 2rem;
}

/* ════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════ */
.contact {
  padding: 6rem 0;
  background: var(--surface-low);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact__info h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0.75rem 0 1rem;
}

.contact__info p {
  font-size: 1.0625rem;
  color: var(--on-surface-variant);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--on-surface-variant);
}

.contact__detail a:hover { color: var(--primary); }

/* Form */
.contact__form {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--on-surface);
}

.form-group input,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--on-surface);
  background: var(--surface-low);
  border: none;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  outline: none;
  transition: box-shadow 0.15s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 2px var(--primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--on-surface-muted);
}

.form__note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--on-surface-muted);
  margin-top: -0.375rem;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
  background: var(--on-surface);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  margin-bottom: 2.5rem;
}

.footer__brand .nav__logo {
  color: white;
  margin-bottom: 0.75rem;
}

.footer__brand .nav__logo-mark {
  background: var(--primary-hover);
}

.footer__brand p {
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  gap: 4rem;
}

.footer__links > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links strong {
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.footer__links a {
  font-size: 0.875rem;
  transition: color 0.15s;
}
.footer__links a:hover { color: white; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
/* ── Highlight (multi-tenant) ──────────────────────────────── */
.highlight {
  background: var(--surface-card);
  padding: 6rem 0;
}

.highlight__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.highlight__content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0.75rem 0 1rem;
}

.highlight__content p {
  color: var(--on-surface-variant);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.highlight__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.highlight__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--on-surface-variant);
}

.highlight__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Org chart */
.org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.org-node {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  padding: 0.625rem 1rem;
  font-size: 13px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.org-node--top {
  background: var(--primary);
  color: #fbf9f4;
  border-color: var(--primary);
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-lg);
  width: 100%;
}

.org-node--top .org-icon { font-size: 22px; margin-bottom: 4px; }
.org-node--top strong { font-size: 15px; }
.org-node--top small { opacity: 0.65; font-size: 12px; }

.org-branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
  position: relative;
}

.org-branches::before {
  content: '';
  position: absolute;
  top: -1.25rem;
  left: 25%;
  right: 25%;
  height: 1px;
  background: var(--outline);
}

.org-branch {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.org-branch::before {
  content: '';
  position: absolute;
  top: -1.25rem;
  left: 50%;
  width: 1px;
  height: 1.25rem;
  background: var(--outline);
}

.org-node--mid {
  background: var(--primary-light);
  border-color: rgba(0,51,49,0.15);
  padding: 0.75rem 0.875rem;
}

.org-node--mid .org-icon { font-size: 16px; }
.org-node--mid strong { font-size: 12.5px; color: var(--primary); }

.org-node--leaf {
  background: white;
  font-size: 12px;
  color: var(--on-surface-muted);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-full);
}

@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }

  .nav__mobile.open { display: flex; }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__visual {
    order: -1;
  }

  .hero__stat--1 { left: 0; bottom: 20px; }
  .hero__stat--2 { right: 0; top: 20px; }

  .proof__quotes { grid-template-columns: 1fr; }

  .steps__grid {
    grid-template-columns: 1fr;
  }
  .step__arrow { transform: rotate(90deg); padding-top: 0; padding: 0.5rem 0; }

  .demo__inner {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }
  .demo__qr { display: none; }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .pricing-card--featured { transform: none; }

  .highlight__inner { grid-template-columns: 1fr; gap: 3rem; }

  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ── Scroll reveal animation ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 560px) {
  .hero__actions { flex-direction: column; }
  .btn--lg { width: 100%; justify-content: center; }
  .features__grid { grid-template-columns: 1fr; }
  .footer__links { flex-direction: column; gap: 2rem; }
}
