:root {
  --primary: #b8ff32;
  --primary-soft: #efffc8;
  --primary-deep: #24320b;
  --accent: #ff7a00;
  --accent-soft: #ffe0bf;
  --white: #ffffff;
  --paper: #fbfff4;
  --paper-warm: #fff8ef;
  --ink: #111827;
  --muted: #556070;
  --line: #dbe6b8;
  --dark: #0f172a;
  --shadow-lg: 0 30px 70px -42px rgba(17, 24, 39, 0.28);
  --shadow-md: 0 18px 40px -28px rgba(17, 24, 39, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(184, 255, 50, 0.22), transparent 20%),
    radial-gradient(circle at top right, rgba(255, 122, 0, 0.12), transparent 24%),
    linear-gradient(180deg, #f7fbe9 0%, #fff8ef 14%, #ffffff 30%, #ffffff 100%);
  color: var(--ink);
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 40px;
}

.hero,
.section,
.footer-cta {
  border: 1px solid rgba(36, 50, 11, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 239, 0.96));
  box-shadow: var(--shadow-lg);
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 24px 24px 28px;
  background:
    radial-gradient(circle at top left, rgba(184, 255, 50, 0.2), transparent 26%),
    radial-gradient(circle at right center, rgba(255, 122, 0, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fff9ef 62%, #f9ffef 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  pointer-events: none;
}

.hero::before {
  top: -120px;
  left: -80px;
  width: 340px;
  height: 340px;
  background: rgba(184, 255, 50, 0.34);
}

.hero::after {
  right: -110px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  background: rgba(255, 122, 0, 0.14);
}

.topbar,
.hero-grid,
.hero-copy,
.hero-panel,
.section,
.section-heading,
.timeline,
.split-section,
.footer-cta {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.topbar-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 0;
  flex: 1;
}

.topbar-controls {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.floating-topbar {
  position: sticky;
  top: 16px;
  z-index: 40;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 250, 241, 0.62));
  box-shadow: 0 22px 44px -28px rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
}

.floating-topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(184, 255, 50, 0.16), rgba(255, 122, 0, 0.08));
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(36, 50, 11, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 235, 0.92));
  box-shadow: 0 20px 34px -24px rgba(184, 255, 50, 0.54);
  flex-shrink: 0;
}

.brand-mark-image {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 12px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand-wordmark,
.hero h1,
.section-heading h2,
.split-copy h2,
.footer-cta h2,
.panel-preview h2,
.stats-card h3 {
  font-family: "Space Grotesk", sans-serif;
}

.brand-wordmark {
  display: block;
  width: auto;
  height: 30px;
  max-width: min(220px, 32vw);
  object-fit: contain;
  object-position: left center;
  border-radius: 14px;
}

.brand-wordmark-frame {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 6px 10px;
  border: 1px solid rgba(36, 50, 11, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 234, 0.94));
  box-shadow: 0 16px 30px -28px rgba(15, 23, 42, 0.16);
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.topbar-actions,
.hero-actions,
.footer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar-actions {
  margin-left: auto;
  justify-content: flex-end;
}

.language-dropdown {
  position: relative;
  flex-shrink: 0;
}

.topbar-actions .language-dropdown {
  order: 99;
}

.language-dropdown-toggle,
.language-dropdown-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(36, 50, 11, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 234, 0.94));
  color: var(--ink);
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.language-dropdown-toggle {
  gap: 8px;
  min-width: 68px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 16px;
  box-shadow: 0 16px 30px -28px rgba(15, 23, 42, 0.16);
}

.language-dropdown-toggle:hover,
.language-dropdown-option:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #fffdf8, #fff2dc);
}

.language-dropdown-flag {
  font-size: 1.2rem;
  line-height: 1;
}

.language-dropdown-chevron {
  color: var(--muted);
  font-size: 0.92rem;
  transition: transform 160ms ease;
}

.language-dropdown.is-open .language-dropdown-chevron {
  transform: rotate(180deg);
}

.language-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 70;
  display: grid;
  gap: 8px;
  min-width: 72px;
  padding: 8px;
  border: 1px solid rgba(36, 50, 11, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 234, 0.96));
  box-shadow: 0 22px 44px -28px rgba(15, 23, 42, 0.22);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-dropdown.is-open .language-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.language-dropdown-option {
  min-width: 56px;
  min-height: 46px;
  padding: 0;
  border-radius: 14px;
  font-size: 1.18rem;
}

.language-dropdown-option.is-active {
  border-color: rgba(184, 255, 50, 0.62);
  background: linear-gradient(135deg, #d8ff89 0%, #b8ff32 48%, #ffbe73 140%);
  box-shadow: 0 12px 24px -18px rgba(184, 255, 50, 0.54);
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(36, 50, 11, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 234, 0.94));
  box-shadow: 0 16px 30px -28px rgba(15, 23, 42, 0.16);
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.mobile-menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.mobile-menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero-actions {
  margin-top: 14px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(184, 255, 50, 0.44);
  border-radius: 999px;
  padding: 8px 14px;
  background: linear-gradient(180deg, rgba(184, 255, 50, 0.2), rgba(255, 224, 191, 0.72));
  color: var(--primary-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 0;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 780px;
}

.hero-description,
.section-heading p,
.info-card p,
.timeline-item p,
.split-copy p,
.faq-card p,
.footer-cta p,
.stats-card p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-description {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: 1.06rem;
}

.primary-btn,
.secondary-btn,
.link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 16px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.primary-btn {
  background: linear-gradient(135deg, #d8ff89 0%, #b8ff32 48%, #ffbe73 140%);
  color: var(--primary-deep);
  box-shadow: 0 18px 36px -22px rgba(184, 255, 50, 0.54);
}

.secondary-btn,
.link-btn {
  border: 1px solid rgba(36, 50, 11, 0.08);
  background: linear-gradient(180deg, #ffffff, #fff7ec);
  color: var(--ink);
}

.floating-topbar .link-btn {
  min-height: 42px;
  background: rgba(255, 255, 255, 0.52);
}

.floating-topbar .secondary-btn,
.floating-topbar .primary-btn {
  min-height: 42px;
}

.primary-btn:hover,
.secondary-btn:hover,
.link-btn:hover {
  transform: translateY(-1px);
}

.secondary-btn:hover,
.link-btn:hover {
  background: linear-gradient(180deg, #fffdf8, #fff2dc);
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.proof-list li {
  padding: 10px 14px;
  border: 1px solid rgba(36, 50, 11, 0.08);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 235, 0.94));
  font-size: 0.88rem;
  font-weight: 600;
}

.panel-card {
  height: 100%;
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 22px 48px -34px rgba(15, 23, 42, 0.18);
}

.panel-preview {
  border: 1px solid rgba(36, 50, 11, 0.08);
  background:
    radial-gradient(circle at top right, rgba(184, 255, 50, 0.22), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 122, 0, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fff8ee 100%);
}

.panel-label,
.stats-label {
  display: inline-block;
  color: #6d7c38;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.panel-preview h2 {
  margin: 12px 0 0;
  font-size: 1.74rem;
  line-height: 1.04;
  letter-spacing: -0.04em;
  max-width: 14ch;
}

.panel-intro {
  max-width: 36ch;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.timeline-item h3,
.info-card h3,
.faq-card h3 {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.preview-shell {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(36, 50, 11, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 252, 242, 0.96));
}

.preview-topbar {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.preview-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(36, 50, 11, 0.16);
}

.preview-conversation {
  display: grid;
  gap: 10px;
}

.preview-bubble {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.bubble-in {
  justify-self: start;
  background: #eef3e1;
  color: var(--ink);
}

.bubble-out {
  justify-self: end;
  background: linear-gradient(135deg, #d8ff89 0%, #b8ff32 55%, #ffbe73 150%);
  color: var(--primary-deep);
}

.preview-card {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(36, 50, 11, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #fff9ef);
  box-shadow: 0 18px 28px -24px rgba(15, 23, 42, 0.18);
}

.preview-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.preview-card-head strong {
  font-size: 1rem;
}

.preview-card-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(184, 255, 50, 0.22), rgba(255, 224, 191, 0.86));
  color: var(--primary-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.preview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.preview-tags span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
}

.preview-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.preview-steps article {
  padding: 14px 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbef, #fff7eb);
  text-align: center;
}

.preview-steps strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.preview-steps p {
  margin: 10px 0 0;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
}

.section {
  margin-top: 24px;
  border-radius: 32px;
  padding: 30px 24px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading.compact {
  margin-bottom: 18px;
}

.section-heading h2,
.split-copy h2,
.footer-cta h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.info-card,
.faq-card {
  border: 1px solid rgba(36, 50, 11, 0.08);
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fff8ee 100%);
  padding: 22px;
  box-shadow: 0 18px 36px -30px rgba(15, 23, 42, 0.12);
}

.card-index {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.feature-band {
  background:
    radial-gradient(circle at right top, rgba(184, 255, 50, 0.18), transparent 26%),
    radial-gradient(circle at left bottom, rgba(255, 122, 0, 0.08), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fff8ee 100%);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: linear-gradient(145deg, #0f172a 0%, #162033 100%);
  border-color: rgba(184, 255, 50, 0.14);
}

.mini-stat {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.mini-stat strong {
  display: block;
  margin-bottom: 8px;
  font: 700 1.45rem/1 "Space Grotesk", sans-serif;
  color: var(--primary);
}

.mini-stat p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.system-demo-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: 18px;
  align-items: stretch;
}

.demo-nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

.demo-tab {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(36, 50, 11, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffdf8, #fff6e8);
  color: var(--ink);
  text-align: left;
  font: 600 0.98rem/1.2 "Instrument Sans", "Segoe UI", sans-serif;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.demo-tab:hover {
  transform: translateY(-1px);
  background: #ffffff;
}

.demo-tab.is-active {
  border-color: rgba(184, 255, 50, 0.62);
  background: linear-gradient(180deg, rgba(184, 255, 50, 0.18), rgba(255, 224, 191, 0.82));
  box-shadow: 0 18px 30px -24px rgba(184, 255, 50, 0.4);
}

.demo-stage {
  position: relative;
  min-height: 430px;
}

.demo-panel {
  display: none;
  height: 100%;
}

.demo-panel.is-active {
  display: block;
}

.demo-window {
  height: 100%;
  min-height: 430px;
  padding: 18px;
  border: 1px solid rgba(36, 50, 11, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(184, 255, 50, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 122, 0, 0.08), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fff8ee 100%);
  box-shadow: 0 26px 52px -38px rgba(15, 23, 42, 0.22);
}

.demo-window-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.demo-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(36, 50, 11, 0.14);
}

.chat-layout {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  height: calc(100% - 28px);
}

.chat-sidebar {
  padding: 14px;
  border: 1px solid rgba(36, 50, 11, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 239, 0.92));
}

.chat-sidebar-item {
  height: 54px;
  margin-bottom: 12px;
  border-radius: 16px;
  background: #eef3e1;
}

.chat-sidebar-item.active {
  background: linear-gradient(180deg, rgba(184, 255, 50, 0.5), rgba(184, 255, 50, 0.18));
}

.chat-main {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(36, 50, 11, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 239, 0.92));
}

.chat-bubble {
  max-width: 78%;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.chat-bubble.in {
  justify-self: start;
  background: #eef3e1;
}

.chat-bubble.out {
  justify-self: end;
  background: linear-gradient(135deg, #d8ff89 0%, #b8ff32 55%, #ffbe73 150%);
  color: var(--primary-deep);
}

.chat-bubble.short {
  max-width: 44%;
}

.calendar-layout,
.dashboard-layout,
.kanban-layout {
  height: calc(100% - 28px);
}

.calendar-layout {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(36, 50, 11, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 239, 0.92));
}

.calendar-head span {
  color: var(--muted);
  font-size: 0.88rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.calendar-card {
  min-height: 120px;
  border: 1px solid rgba(36, 50, 11, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 234, 0.94));
}

.calendar-card.highlight {
  background:
    linear-gradient(180deg, rgba(184, 255, 50, 0.28), rgba(255, 206, 150, 0.18), rgba(255, 255, 255, 0.96));
  border-color: rgba(184, 255, 50, 0.7);
}

.dashboard-layout {
  display: grid;
  gap: 16px;
}

.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.kpi-card {
  min-height: 96px;
  border: 1px solid rgba(36, 50, 11, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(184, 255, 50, 0.18), rgba(255, 224, 191, 0.18), rgba(255, 255, 255, 0.96));
}

.dashboard-chart {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 14px;
  min-height: 240px;
  padding: 18px;
  border: 1px solid rgba(36, 50, 11, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 239, 0.92));
}

.dashboard-chart span {
  display: block;
  border-radius: 16px 16px 10px 10px;
  background: linear-gradient(180deg, rgba(184, 255, 50, 0.92), rgba(255, 122, 0, 0.42));
}

.kanban-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.kanban-column {
  padding: 16px;
  border: 1px solid rgba(36, 50, 11, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 239, 0.92));
}

.kanban-column strong {
  display: block;
  margin-bottom: 14px;
  font-size: 0.96rem;
}

.kanban-column span {
  display: block;
  min-height: 88px;
  margin-bottom: 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, #eef3e1, #fff4e0);
}

.kanban-column span.active {
  background: linear-gradient(180deg, rgba(184, 255, 50, 0.44), rgba(255, 122, 0, 0.16));
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pain-card {
  padding: 22px;
  border: 1px solid rgba(36, 50, 11, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(184, 255, 50, 0.14), rgba(255, 224, 191, 0.14)),
    linear-gradient(180deg, #ffffff 0%, #fff8ee 100%);
  box-shadow: 0 18px 38px -30px rgba(15, 23, 42, 0.14);
}

.pain-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, #d8ff89 0%, #b8ff32 50%, #ffbe73 140%);
  color: var(--primary-deep);
  font: 700 0.92rem/1 "Space Grotesk", sans-serif;
}

.pain-card h3 {
  margin: 16px 0 10px;
  font-size: 1.24rem;
  color: var(--ink);
}

.pain-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 24px;
  background: var(--dark);
  color: var(--primary);
  font: 700 1.2rem/1 "Space Grotesk", sans-serif;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 20px;
  align-items: stretch;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  font-weight: 500;
}

.split-panel,
.stats-card {
  height: 100%;
}

.stats-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(184, 255, 50, 0.18), rgba(255, 255, 255, 0.94));
  border: 1px solid var(--line);
}

.stats-card h3 {
  margin: 14px 0 18px;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stats-grid > div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(36, 50, 11, 0.08);
}

.stats-grid strong {
  display: block;
  font: 700 1.35rem/1 "Space Grotesk", sans-serif;
  margin-bottom: 8px;
}

.comparison-section {
  background:
    radial-gradient(circle at left center, rgba(184, 255, 50, 0.14), transparent 24%),
    radial-gradient(circle at right top, rgba(255, 122, 0, 0.08), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fff8ee 100%);
}

.pricing-section {
  background:
    radial-gradient(circle at top left, rgba(184, 255, 50, 0.16), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 122, 0, 0.1), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fff8ee 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(36, 50, 11, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 235, 0.94));
  box-shadow: 0 22px 38px -32px rgba(15, 23, 42, 0.18);
}

.pricing-card-featured {
  border-color: rgba(184, 255, 50, 0.54);
  background:
    linear-gradient(180deg, rgba(184, 255, 50, 0.12), rgba(255, 224, 191, 0.14)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 235, 0.94));
  box-shadow: 0 28px 44px -30px rgba(184, 255, 50, 0.28);
}

.pricing-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d8ff89 0%, #b8ff32 50%, #ffbe73 140%);
  color: var(--primary-deep);
  font: 700 0.76rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-family: "Space Grotesk", sans-serif;
}

.pricing-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.pricing-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pricing-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.6;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d8ff89 0%, #b8ff32 55%, #ffbe73 150%);
}

.pricing-card .primary-btn,
.pricing-card .secondary-btn {
  margin-top: auto;
}

.comparison-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.comparison-col {
  padding: 22px;
  border-radius: 28px;
}

.comparison-col h3 {
  margin: 0 0 16px;
  font-size: 1.55rem;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

.comparison-col.negative {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
  color: var(--white);
}

.comparison-col.positive {
  border: 1px solid rgba(36, 50, 11, 0.08);
  background:
    linear-gradient(180deg, rgba(184, 255, 50, 0.16), rgba(255, 224, 191, 0.18), rgba(255, 255, 255, 0.96)),
    var(--paper);
  color: var(--ink);
}

.comparison-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.comparison-list li {
  position: relative;
  padding: 14px 16px 14px 52px;
  border-radius: 20px;
  line-height: 1.65;
}

.comparison-col.negative .comparison-list li {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
}

.comparison-col.positive .comparison-list li {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(36, 50, 11, 0.08);
  color: var(--ink);
}

.comparison-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  transform: translateY(-50%);
  font-weight: 700;
  font-size: 0.85rem;
}

.comparison-col.negative .comparison-list li::before {
  content: "×";
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.comparison-col.positive .comparison-list li::before {
  content: "✓";
  background: var(--primary);
  color: var(--primary-deep);
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  margin-top: 24px;
  border-radius: 32px;
  padding: 28px 24px;
  background:
    radial-gradient(circle at right center, rgba(184, 255, 50, 0.24), transparent 26%),
    radial-gradient(circle at left top, rgba(255, 122, 0, 0.1), transparent 24%),
    linear-gradient(180deg, #f4ffd9 0%, #fff0dc 100%);
}

.site-footer {
  margin-top: 18px;
  padding: 30px 24px 18px;
  border: 1px solid rgba(36, 50, 11, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at left top, rgba(184, 255, 50, 0.14), transparent 24%),
    radial-gradient(circle at right bottom, rgba(255, 122, 0, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 239, 0.96));
  box-shadow: var(--shadow-md);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(180px, 1fr));
  gap: 22px;
  align-items: start;
}

.site-footer-brand p,
.site-footer-list,
.site-footer-bottom {
  color: var(--muted);
}

.site-footer-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 16px;
  border: 1px solid rgba(36, 50, 11, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 234, 0.94));
  box-shadow: 0 18px 34px -30px rgba(15, 23, 42, 0.18);
}

.site-footer-logo {
  display: block;
  width: auto;
  max-width: min(260px, 100%);
  height: 42px;
  object-fit: contain;
  object-position: left center;
  border-radius: 16px;
}

.site-footer-brand p {
  max-width: 42ch;
  margin: 16px 0 0;
  line-height: 1.72;
}

.site-footer-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #6d7c38;
  font: 700 0.76rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  line-height: 1.6;
}

.site-footer-list a {
  transition: color 160ms ease;
}

.site-footer-list a:hover {
  color: var(--ink);
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(36, 50, 11, 0.08);
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: linear-gradient(135deg, #33d16f 0%, #25d366 56%, #1fa855 100%);
  color: #ffffff;
  box-shadow: 0 26px 44px -28px rgba(37, 211, 102, 0.62);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 52px -28px rgba(37, 211, 102, 0.72);
}

.whatsapp-float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  flex-shrink: 0;
}

.whatsapp-float-icon svg {
  width: 19px;
  height: 19px;
}

.whatsapp-float-text {
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .hero-grid,
  .system-demo-grid,
  .split-section,
  .comparison-board,
  .footer-cta,
  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip,
  .card-grid.three,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    max-width: 100%;
  }
}

@media (max-width: 780px) {
  .page-shell {
    width: min(100% - 20px, 1200px);
    padding-top: 10px;
  }

  .hero,
  .section,
  .footer-cta,
  .site-footer {
    border-radius: 26px;
    padding: 22px 18px;
  }

  .topbar {
    align-items: stretch;
    margin-bottom: 14px;
    padding: 14px;
  }

  .topbar-main {
    width: 100%;
  }

  .topbar-controls {
    gap: 10px;
  }

  .brand {
    flex: 1;
    min-width: 0;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .brand-mark-image {
    width: 30px;
    height: 30px;
  }

  .brand-wordmark {
    height: 24px;
    max-width: min(190px, 60vw);
  }

  .brand-wordmark-frame {
    padding: 5px 8px;
    border-radius: 14px;
  }

  .brand-text small {
    display: none;
  }

  .language-dropdown-toggle {
    min-width: 60px;
    min-height: 46px;
    padding: 0 12px;
    border-radius: 14px;
  }

  .language-dropdown-option {
    min-width: 52px;
    min-height: 42px;
    border-radius: 12px;
  }

  .mobile-menu-toggle {
    position: relative;
    display: inline-flex;
  }

  .topbar-actions {
    display: none;
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid rgba(36, 50, 11, 0.08);
  }

  .topbar-actions.is-open {
    display: grid;
    grid-template-columns: 1fr;
  }

  .topbar-actions .language-dropdown {
    order: 0;
    width: 100%;
  }

  .topbar-actions .language-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .topbar-actions .language-dropdown-menu {
    left: 0;
    right: auto;
    min-width: 100%;
  }

  .site-footer-logo-box {
    width: 100%;
  }

  .site-footer-logo {
    max-width: min(220px, 100%);
    height: auto;
    max-height: 36px;
  }

  .topbar-actions,
  .hero-actions,
  .footer-actions {
    width: 100%;
  }

  .topbar-actions a,
  .hero-actions a,
  .footer-actions a {
    flex: 1 1 100%;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .chat-layout,
  .calendar-grid,
  .dashboard-kpis,
  .kanban-layout {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

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

  .mini-stat,
  .pain-card,
  .comparison-col {
    padding: 18px;
  }

  .preview-steps {
    grid-template-columns: 1fr;
  }

  .demo-window,
  .demo-stage {
    min-height: auto;
  }

  .site-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-height: 54px;
    padding: 0 16px 0 12px;
  }

  .whatsapp-float-text {
    display: none;
  }
}
