:root {
  --bg: #f4efe7;
  --bg-soft: #fbf8f2;
  --paper: rgba(255, 255, 255, 0.76);
  --paper-strong: rgba(255, 255, 255, 0.92);
  --ink: #18212f;
  --ink-soft: #576274;
  --line: rgba(24, 33, 47, 0.1);
  --brand: #b45309;
  --brand-deep: #8a2d0a;
  --brand-soft: rgba(180, 83, 9, 0.12);
  --forest: #136f63;
  --forest-soft: rgba(19, 111, 99, 0.12);
  --night: #111827;
  --danger-soft: #fff3e8;
  --success-soft: #ebfbf3;
  --shadow: 0 24px 70px rgba(24, 33, 47, 0.1);
  --shadow-lg: 0 34px 90px rgba(24, 33, 47, 0.16);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(180, 83, 9, 0.16), transparent 24%),
    radial-gradient(circle at 85% 8%, rgba(19, 111, 99, 0.14), transparent 22%),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 52%, #faf8f4 100%);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 120;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--night);
  color: #fff;
  font-weight: 800;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 14px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 78%);
  pointer-events: none;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(19, 111, 99, 0.45);
  outline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

section[id] {
  scroll-margin-top: 110px;
}

.navbar,
.hero,
.problem,
.features,
.use-cases,
.testimonials,
.workflow,
.pricing,
.cta-section,
.demo-section,
.faq-section,
.footer {
  padding-left: clamp(20px, 6vw, 72px);
  padding-right: clamp(20px, 6vw, 72px);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  backdrop-filter: blur(16px);
  background: rgba(251, 248, 242, 0.74);
  border-bottom: 1px solid rgba(24, 33, 47, 0.08);
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  font-family: "Space Grotesk", "Source Sans 3", sans-serif;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 18px 32px rgba(138, 45, 10, 0.24);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-family: "Space Grotesk", "Source Sans 3", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.brand-copy small {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a:hover,
.footer-links a:hover,
.nav-link-secondary:hover {
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-link-secondary {
  color: var(--ink-soft);
  font-weight: 700;
}

.nav-btn,
.primary-btn,
.secondary-btn,
.white-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.nav-btn,
.primary-btn {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  box-shadow: 0 20px 30px rgba(138, 45, 10, 0.18);
}

.secondary-btn,
.white-btn {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  border: 1px solid rgba(24, 33, 47, 0.1);
}

.nav-btn:hover,
.primary-btn:hover,
.secondary-btn:hover,
.white-btn:hover,
.price-card a:hover,
.event-card button:hover,
.demo-form button:hover,
.whatsapp-float:hover {
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

.session-banner {
  width: min(1180px, calc(100% - 40px));
  margin: 16px auto 0;
  padding: 16px 18px;
  border: 1px solid rgba(19, 111, 99, 0.18);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(235, 251, 243, 0.95), rgba(239, 246, 255, 0.92));
  color: #0f5c55;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.6;
  box-shadow: 0 16px 30px rgba(15, 92, 85, 0.08);
}

.session-banner a {
  color: #0d6b80;
  text-decoration: underline;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: calc(100vh - 84px);
  padding-top: 64px;
  padding-bottom: 56px;
}

.hero-left h1,
.section-head h2,
.cta-panel h2,
.demo-left h2 {
  font-family: "Space Grotesk", "Source Sans 3", sans-serif;
  letter-spacing: -0.05em;
}

.badge,
.small-badge,
.feature-tag,
.eyebrow-label,
.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.badge,
.small-badge,
.feature-tag {
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand-deep);
  border: 1px solid rgba(180, 83, 9, 0.14);
}

.small-badge.dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-left h1 {
  max-width: 11ch;
  margin-top: 18px;
  font-size: clamp(3rem, 7vw, 5.7rem);
  line-height: 0.94;
}

.hero-left > p {
  max-width: 660px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.proof-chip,
.dashboard-card,
.problem-card,
.feature-card,
.use-case-card,
.testimonial-card,
.workflow-card,
.price-card,
.demo-points div,
.demo-form,
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.proof-chip {
  padding: 18px 18px 16px;
  border-radius: 22px;
}

.proof-chip strong {
  display: block;
  font-family: "Space Grotesk", "Source Sans 3", sans-serif;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.proof-chip span {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.ops-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.ops-ribbon span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(24, 33, 47, 0.06);
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-right {
  display: flex;
  justify-content: center;
}

.dashboard-card {
  position: relative;
  width: 100%;
  max-width: 540px;
  padding: 28px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.dashboard-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -100px;
  top: -110px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(180, 83, 9, 0.18), transparent 70%);
}

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

.card-header,
.event-card,
.progress-title,
.person,
.footer {
  display: flex;
  align-items: center;
}

.card-header,
.event-card {
  justify-content: space-between;
}

.eyebrow-label {
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--brand);
}

.card-header h3 {
  margin-top: 8px;
  font-family: "Space Grotesk", "Source Sans 3", sans-serif;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.status {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--success-soft);
  color: #157347;
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-insight {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(24, 33, 47, 0.94), rgba(19, 111, 99, 0.88));
  color: #fff;
}

.hero-insight strong {
  display: block;
  font-size: 1rem;
}

.hero-insight p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

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

.stat-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(24, 33, 47, 0.08);
}

.stat-card span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  font-family: "Space Grotesk", "Source Sans 3", sans-serif;
  font-size: 1.9rem;
  letter-spacing: -0.04em;
}

.stat-card.warning {
  background: var(--danger-soft);
}

.stat-card.success {
  background: var(--success-soft);
}

.event-card {
  gap: 18px;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, #141e2d, #1f2f4a);
  color: #fff;
}

.event-card h4 {
  font-family: "Space Grotesk", "Source Sans 3", sans-serif;
  font-size: 1.08rem;
}

.event-card p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.event-card button,
.price-card a,
.demo-form button {
  cursor: pointer;
}

.event-card button {
  flex-shrink: 0;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.progress-box {
  margin-top: 20px;
}

.progress-title {
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.progress-bar {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(24, 33, 47, 0.08);
  overflow: hidden;
}

.progress-bar div {
  width: 82%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--forest));
}

.dashboard-notes {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.dashboard-notes div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: start;
  padding-top: 12px;
  border-top: 1px solid rgba(24, 33, 47, 0.08);
}

.dashboard-notes span {
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dashboard-notes p {
  color: var(--ink-soft);
  line-height: 1.6;
}

.problem,
.use-cases,
.workflow,
.faq-section {
  background: rgba(255, 255, 255, 0.36);
}

.features,
.testimonials,
.pricing,
.demo-section {
  background: rgba(255, 255, 255, 0.12);
}

.problem,
.features,
.use-cases,
.testimonials,
.workflow,
.pricing,
.demo-section,
.faq-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section-head {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 {
  margin-top: 16px;
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: 1;
}

.section-head p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.problem-grid,
.feature-grid,
.use-case-grid,
.testimonial-grid,
.workflow-grid,
.pricing-grid,
.faq-list {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.problem-card,
.feature-card,
.use-case-card,
.testimonial-card,
.workflow-card,
.price-card,
.faq-item {
  border-radius: var(--radius-lg);
}

.problem-card {
  padding: 24px;
}

.card-index {
  margin-bottom: 16px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  border: 0;
}

.problem-card h3,
.feature-card h3,
.use-case-card h3,
.workflow-card h3,
.faq-item h3 {
  font-family: "Space Grotesk", "Source Sans 3", sans-serif;
  letter-spacing: -0.03em;
}

.problem-card h3 {
  font-size: 1.24rem;
  line-height: 1.2;
}

.problem-card p,
.feature-card p,
.use-case-card p,
.testimonial-card p,
.workflow-card p,
.price-card p,
.faq-item p {
  color: var(--ink-soft);
  line-height: 1.72;
}

.problem-card p {
  margin-top: 12px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  position: relative;
  padding: 26px;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -46px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(180, 83, 9, 0.12), transparent 70%);
}

.feature-card-highlight {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 237, 0.95));
}

.feature-card h3 {
  margin-top: 16px;
  font-size: 1.26rem;
}

.feature-card p {
  margin-top: 12px;
}

.feature-points,
.use-case-card ul,
.price-card ul {
  list-style: none;
}

.feature-points {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.feature-points li,
.use-case-card li,
.price-card li {
  position: relative;
  padding-left: 22px;
}

.feature-points li::before,
.use-case-card li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
}

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

.use-case-card {
  padding: 30px;
}

.use-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-soft), var(--forest-soft));
  color: var(--ink);
  font-family: "Space Grotesk", "Source Sans 3", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.use-case-card h3 {
  margin-top: 18px;
  font-size: 1.45rem;
}

.use-case-card p {
  margin-top: 12px;
}

.use-case-card ul {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.testimonial-card {
  padding: 30px;
}

.quote {
  font-family: "Space Grotesk", "Source Sans 3", sans-serif;
  font-size: 4.5rem;
  line-height: 0.8;
  color: var(--brand);
}

.testimonial-card p {
  margin-top: 8px;
  font-size: 1rem;
}

.person {
  gap: 14px;
  margin-top: 24px;
}

.avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--night);
  color: #fff;
  font-weight: 900;
}

.person strong {
  display: block;
}

.person span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.workflow-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
}

.workflow-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(19, 111, 99, 0.15), transparent 68%);
}

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

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  background: var(--night);
  color: #fff;
  font-family: "Space Grotesk", "Source Sans 3", sans-serif;
  font-weight: 800;
}

.workflow-card h3 {
  margin-top: 18px;
  font-size: 1.24rem;
}

.workflow-card p {
  margin-top: 12px;
}

.price-card {
  padding: 32px;
}

.price-card.popular {
  transform: translateY(-14px);
  background: linear-gradient(160deg, #18212f, #21314e);
  color: #fff;
}

.popular-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-tag {
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card.popular .plan-tag {
  color: #f5c28f;
}

.price-card h3 {
  margin-top: 18px;
  font-family: "Space Grotesk", "Source Sans 3", sans-serif;
  font-size: 2.9rem;
  letter-spacing: -0.05em;
}

.price-card h3 span {
  font-size: 1rem;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
}

.price-card p {
  margin-top: 12px;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.price-card.popular p,
.price-card.popular li,
.price-card.popular h3 span {
  color: rgba(255, 255, 255, 0.76);
}

.price-card a,
.demo-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: 28px;
  border-radius: 16px;
  background: var(--night);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 28px rgba(24, 33, 47, 0.12);
}

.price-card.popular a {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
}

.cta-section {
  padding-top: 104px;
  padding-bottom: 104px;
}

.cta-panel {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 54px);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 26%),
    linear-gradient(135deg, #151d2a, #223352 58%, #7a3412 150%);
  color: #fff;
  text-align: center;
  box-shadow: 0 40px 90px rgba(24, 33, 47, 0.22);
}

.cta-panel h2 {
  max-width: 14ch;
  margin: 18px auto 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.98;
}

.cta-panel p {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.demo-wrapper {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.demo-left h2 {
  max-width: 12ch;
  margin-top: 18px;
  font-size: clamp(2.5rem, 4.8vw, 3.8rem);
  line-height: 1;
}

.demo-left > p {
  max-width: 640px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.8;
}

.demo-points {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.demo-points div {
  padding: 18px 18px 16px;
  border-radius: 20px;
}

.demo-points strong {
  display: block;
  font-size: 1rem;
}

.demo-points span {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.demo-form {
  padding: 32px;
  border-radius: 30px;
}

.demo-form h3 {
  font-family: "Space Grotesk", "Source Sans 3", sans-serif;
  font-size: 1.75rem;
}

.demo-form label {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.demo-form input,
.demo-form select {
  width: 100%;
  min-height: 54px;
  margin-top: 8px;
  padding: 0 15px;
  border: 1px solid rgba(24, 33, 47, 0.14);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.demo-form input:focus,
.demo-form select:focus {
  outline: none;
  border-color: rgba(180, 83, 9, 0.5);
  box-shadow: 0 0 0 4px rgba(180, 83, 9, 0.09);
}

.form-message {
  min-height: 24px;
  margin-top: 16px;
  font-size: 0.92rem;
  font-weight: 800;
}

.form-message.success {
  color: #17724d;
}

.form-message.error {
  color: #b91c1c;
}

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

.faq-item {
  padding: 24px;
}

.faq-item h3 {
  font-size: 1.16rem;
}

.faq-item p {
  margin-top: 10px;
}

.legal-page {
  padding-left: clamp(20px, 6vw, 72px);
  padding-right: clamp(20px, 6vw, 72px);
  padding-top: 34px;
  padding-bottom: 70px;
}

.legal-hero {
  width: min(980px, 100%);
  margin: 0 auto 26px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.legal-hero h1 {
  margin-top: 14px;
  font-family: "Space Grotesk", "Source Sans 3", sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: -0.05em;
}

.legal-hero p {
  max-width: 760px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.legal-updated {
  font-weight: 700;
}

.legal-shell,
.support-grid {
  width: min(980px, 100%);
  margin: 0 auto;
}

.legal-shell {
  display: grid;
  gap: 18px;
}

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

.legal-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-strong);
  box-shadow: 0 14px 34px rgba(24, 33, 47, 0.08);
}

.legal-card h2 {
  font-family: "Space Grotesk", "Source Sans 3", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.legal-card p,
.legal-list {
  margin-top: 12px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.legal-list {
  padding-left: 18px;
}

.legal-list li + li {
  margin-top: 8px;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.footer {
  justify-content: space-between;
  gap: 20px;
  padding-top: 30px;
  padding-bottom: 38px;
  background: #121923;
  color: #fff;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  font-family: "Space Grotesk", "Source Sans 3", sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1fa45a, #15803d);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 22px 36px rgba(21, 128, 61, 0.28);
  z-index: 80;
}

.whatsapp-float.is-disabled {
  background: linear-gradient(135deg, #7c8798, #657181);
  box-shadow: none;
}

@media (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card-highlight {
    grid-column: span 2;
  }

  .problem-grid,
  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .navbar {
    flex-wrap: wrap;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .demo-wrapper,
  .use-case-grid,
  .testimonial-grid,
  .pricing-grid,
  .faq-list,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 72px;
  }

  .hero-left h1,
  .demo-left h2,
  .cta-panel h2 {
    max-width: none;
  }

  .trust-row,
  .problem-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-card-highlight {
    grid-column: span 1;
  }

  .price-card.popular {
    transform: none;
  }

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

@media (max-width: 720px) {
  .navbar,
  .hero,
  .problem,
  .features,
  .use-cases,
  .testimonials,
  .workflow,
  .pricing,
  .cta-section,
  .demo-section,
  .faq-section,
  .footer,
  .legal-page {
    padding-left: 18px;
    padding-right: 18px;
  }

  .session-banner {
    width: calc(100% - 36px);
    margin-top: 12px;
    padding: 14px;
  }

  .nav-actions,
  .hero-actions,
  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .nav-btn,
  .primary-btn,
  .secondary-btn,
  .white-btn,
  .nav-link-secondary {
    width: 100%;
  }

  .nav-link-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(24, 33, 47, 0.08);
  }

  .dashboard-card,
  .cta-panel,
  .demo-form,
  .legal-hero,
  .legal-card {
    padding: 24px;
  }

  .event-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-notes div {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}
