/* ═══════════════════════════════════════════════════
   NOÉDA – Dark Minimal Landing Page
   Mobile-first · Monochromatic · Sophisticated
   ═══════════════════════════════════════════════════ */

:root {
  --bg:         #3A39FF;
  --bg-raised:  #2E2DD6;
  --bg-card:    rgba(255, 255, 255, 0.10);
  --bg-hover:   rgba(255, 255, 255, 0.15);

  --border:     rgba(255, 255, 255, 0.18);
  --border-mid: rgba(255, 255, 255, 0.25);
  --border-strong: rgba(255, 255, 255, 0.35);

  --text-primary:   #ffffff;
  --text-secondary:  rgba(255, 255, 255, 0.88);
  --text-muted:      rgba(255, 255, 255, 0.70);
  --text-faint:      rgba(255, 255, 255, 0.50);

  --accent:     #ffffff;
  --accent-dim: rgba(255, 255, 255, 0.70);

  --red-muted:    rgba(220, 50, 50, 0.25);
  --red-icon:     #ffb3b3;
  --green-muted:  rgba(50, 200, 100, 0.20);
  --green-icon:   #86efac;

  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   20px;
  --radius-2xl:  24px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ═══════════════ TYPOGRAPHY ═══════════════ */

.text-gradient {
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════ BUTTONS ═══════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 13px 28px;
  letter-spacing: -0.2px;
  white-space: nowrap;
}

.btn-primary {
  background: #fafafa;
  color: #3A39FF;
}
.btn-primary:hover {
  background: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 14px;
}

.btn-lg {
  padding: 17px 36px;
  font-size: 17px;
}

.btn-block {
  width: 100%;
  margin-top: auto;
  padding-top: 12px;
  padding-bottom: 12px;
}

.btn-mobile-nav {
  background: #fafafa;
  color: #3A39FF;
  width: 100%;
  margin-top: 12px;
}

/* ═══════════════ BADGE ═══════════════ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

/* ═══════════════ HEADER ═══════════════ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(58, 57, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

.header.scrolled {
  background: rgba(58, 57, 255, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  display: block;
  height: 36px;
  width: auto;
}

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

.nav-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover {
  color: var(--text-primary);
}

.btn-header {
  display: none;
  background: #fafafa;
  color: #3A39FF;
  font-weight: 500;
}
.btn-header:hover {
  background: #fff;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(58, 57, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
  transform: translateY(-120%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid var(--border);
}
.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav-link {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: background 0.2s, color 0.2s;
}
.mobile-nav-link:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

/* ═══════════════ HERO ═══════════════ */

.hero {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 0 60px;
  overflow: hidden;
  background: transparent;
}

#flock-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  transition: filter 0.15s ease-out;
}

#flock-bg canvas {
  display: block;
}

.hero-glow {
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 40%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-faint);
}

.hero-proof-icon {
  display: flex;
  align-items: center;
  color: var(--accent-dim);
}

/* ═══════════════ SECTION HEADERS ═══════════════ */

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.6;
}

/* ═══════════════ COMPARE SECTION ═══════════════ */

.section-compare {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: transparent;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.compare-card {
  padding: 28px 24px;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compare-before {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.compare-after {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.compare-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.compare-before .compare-label { color: rgba(255, 255, 255, 0.60); }
.compare-after .compare-label { color: #fff; }

.compare-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.compare-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.compare-before .compare-item-icon {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.50);
}
.compare-after .compare-item-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.compare-item-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 2px;
  letter-spacing: -0.2px;
}
.compare-before .compare-item-title { color: rgba(255, 255, 255, 0.80); }
.compare-after .compare-item-title { color: #fff; }

.compare-item-desc {
  font-size: 14px;
  line-height: 1.5;
}
.compare-before .compare-item-desc { color: rgba(255, 255, 255, 0.55); }
.compare-after .compare-item-desc { color: rgba(255, 255, 255, 0.80); }

.compare-bottom {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-md);
  margin-top: auto;
}

.compare-bottom-before {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
}

.compare-bottom-after {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* ═══════════════ WORKFLOW ═══════════════ */

.section-workflow {
  display: none;
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: transparent;
}

.wf-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.wf-stepper {
  display: none;
}

.wf-dot {
  display: none;
}

.wf-stage {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: auto;
}

.wf-panel {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.wf-panel-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: -0.1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wf-badge {
  font-size: 9px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.80);
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity 0.3s;
}
.wf-badge.show { opacity: 1; }

.wf-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s;
  min-height: 180px;
  flex: 1;
}
.wf-card.highlight {
  border-color: rgba(255, 255, 255, 0.30);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.10);
}

.wf-bar {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  gap: 6px;
}

.wf-dots {
  display: flex;
  gap: 4px;
}
.wf-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-faint);
}

.wf-url {
  font-size: 10px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 3px 12px;
  border-radius: 4px;
  flex: 1;
  text-align: center;
  font-weight: 500;
}

.wf-msg-header {
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.wf-msg-avatar {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-dim);
}

.wf-msg-name {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
}

.wf-steps {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.wf-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  opacity: 0.2;
  transition: all 0.4s;
  transform: translateX(-4px);
}
.wf-step:last-child { border-bottom: none; }
.wf-step.active {
  opacity: 1;
  transform: translateX(0);
}

.wf-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--text-faint);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s;
}
.wf-step.active .wf-step-num {
  background: var(--text-primary);
  color: var(--bg);
}

.wf-step-text { text-align: left; }

.wf-step-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.wf-step-sub {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Calendar mini */
.cal-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.cal-left {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  border-right: 1px solid var(--border);
}

.cal-nav {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-weight: 500;
}
.cal-nav span { color: var(--text-faint); }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: 20px;
  font-size: 10px;
  text-align: center;
  color: var(--text-muted);
  line-height: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
  margin-bottom: 8px;
}
.cal-grid .hd {
  color: var(--text-faint);
  font-size: 8px;
  font-weight: 600;
}
.cal-grid .em { visibility: hidden; }

.day-hl {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  border-radius: 50%;
  font-weight: 700;
  transition: all 0.4s;
}
.day-conf {
  background: rgba(134, 239, 172, 0.1);
  color: var(--green-icon);
  border-radius: 50%;
  font-weight: 700;
  transition: all 0.4s;
}
.day-cancel {
  background: rgba(252, 165, 165, 0.1);
  color: var(--red-icon);
  border-radius: 50%;
  font-weight: 700;
  text-decoration: line-through;
  transition: all 0.4s;
}

.cal-events {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.cal-evt {
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 8px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.4s;
}
.cal-evt.show {
  opacity: 1;
  transform: translateY(0);
}
.cal-evt.prov { background: rgba(251, 191, 36, 0.12); color: #fbbf24; }
.cal-evt.conf { background: rgba(134, 239, 172, 0.08); color: var(--green-icon); }
.cal-evt.cancel { text-decoration: line-through; opacity: 0.35 !important; }

.cal-right {
  flex: 0.8;
  display: flex;
  flex-direction: column;
}

.cal-detail {
  padding: 10px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.4s;
}
.cal-detail:last-child { border-bottom: none; }
.cal-detail.show { opacity: 1; transform: translateY(0); }

.cal-detail-title {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cal-badge {
  font-size: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.90);
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 600;
}

.cal-field { margin-bottom: 4px; }
.cal-field:last-child { margin-bottom: 0; }

.cal-field-label {
  font-size: 8px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 2px;
}

.cal-field-value {
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.3;
}

.wf-controls {
  display: none;
}

.wf-ctrl {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
  background: transparent;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  transition: all 0.2s;
}
.wf-ctrl:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}
.wf-ctrl:disabled {
  opacity: 0.2;
  cursor: default;
  border-color: var(--border);
  color: var(--text-faint);
}

.wf-counter {
  font-size: 13px;
  color: var(--text-muted);
  min-width: 48px;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.wf-summary {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 18px 28px;
  text-align: center;
  opacity: 1;
  transform: none;
}

.wf-summary-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: -0.2px;
}

/* ═══════════════ DEMO VIDEO ═══════════════ */

.section-demo {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: transparent;
}

.demo-video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.demo-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.demo-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.demo-feature {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: all 0.2s;
}
.demo-feature:hover {
  border-color: rgba(255, 255, 255, 0.30);
  background: rgba(255, 255, 255, 0.14);
}

.demo-feature-icon {
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: 8px;
  display: flex;
}

.demo-feature-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.demo-feature-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ═══════════════ PRICING ═══════════════ */

.section-pricing {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: transparent;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s;
}
.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.30);
  background: rgba(255, 255, 255, 0.12);
}

.pricing-featured {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.30);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.10);
}
.pricing-featured:hover {
  border-color: rgba(255, 255, 255, 0.40);
}

.pricing-popular {
  position: absolute;
  top: -10px;
  left: 24px;
  background: #fff;
  color: #3A39FF;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-tier {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}

.pricing-currency {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-amount {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -1.5px;
  line-height: 1;
}
.pricing-amount sub {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  vertical-align: baseline;
  color: var(--text-muted);
}

.pricing-detail {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.pricing-detail-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.pricing-target {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  margin-bottom: 20px;
}

.pricing-featured .btn-primary {
  background: #fafafa;
  color: #3A39FF;
}
.pricing-featured .btn-primary:hover {
  background: #fff;
}

/* DPI Explainer */
.dpi-explainer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
}

.dpi-icon {
  color: rgba(255, 255, 255, 0.80);
  flex-shrink: 0;
  display: flex;
}

.dpi-explainer strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.dpi-explainer p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Calculator */
.calculator {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-input-group {
  display: flex;
  flex-direction: column;
}

.calc-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 8px;
}

.calc-number-input {
  width: 100%;
  max-width: 200px;
  padding: 10px 14px;
  font-size: 18px;
  font-weight: 600;
  font-family: inherit;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -moz-appearance: textfield;
}
.calc-number-input::-webkit-inner-spin-button,
.calc-number-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.calc-number-input::placeholder {
  color: var(--text-faint);
  font-weight: 400;
  font-size: 15px;
}
.calc-number-input:focus {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.10);
}

.calc-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.calc-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  min-width: 44px;
}

.calculator input[type=range] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 2px;
  background: var(--border-mid);
  border-radius: 2px;
  outline: none;
}
.calculator input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15);
}

.calc-note {
  font-size: 12px;
  color: var(--text-faint);
  font-style: italic;
}

.calc-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

.calc-results {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.calc-metric {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-align: center;
}

.calc-metric-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  margin-bottom: 2px;
}

.calc-metric-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

.calc-savings {
  background: rgba(134, 239, 172, 0.10);
  border: 1px solid rgba(134, 239, 172, 0.25);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
}

.calc-savings-value {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #86efac;
  letter-spacing: -1px;
  line-height: 1.2;
}

.calc-savings-value.placeholder {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-faint);
  letter-spacing: 0;
}

.calc-savings-label {
  font-size: 13px;
  color: rgba(134, 239, 172, 0.70);
  font-weight: 500;
  margin-top: 4px;
}

/* ═══════════════ CTA SECTION ═══════════════ */

.section-cta {
  padding: 100px 0;
  background: transparent;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}


.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 17px;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 32px;
}

.section-cta .btn-primary {
  background: #fafafa;
  color: #3A39FF;
}
.section-cta .btn-primary:hover {
  background: #fff;
}

/* ═══════════════ FOOTER ═══════════════ */

.footer {
  position: relative;
  z-index: 1;
  background: transparent;
  color: var(--text-faint);
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  gap: 16px;
}

.footer-copy {
  color: var(--text-faint);
}

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

.footer-link {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--text-primary);
}

.footer-legal {
  color: var(--text-faint);
}

/* ═══════════════ ANIMATIONS ═══════════════ */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════ RESPONSIVE — TABLET ═══════════════ */

@media (min-width: 640px) {
  .container { padding: 0 32px; }

  .compare-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(6, auto);
  }

  .compare-card {
    display: grid;
    grid-row: span 6;
    grid-template-rows: subgrid;
    row-gap: 16px;
  }

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

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

  .demo-features .demo-feature:nth-child(4),
  .demo-features .demo-feature:nth-child(5) {
    grid-column: span 1;
  }

  .calc-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-bottom {
    font-size: 13px;
  }
}

/* ═══════════════ RESPONSIVE — DESKTOP ═══════════════ */

@media (min-width: 1024px) {
  .container { padding: 0 48px; }

  .nav { display: flex; }
  .btn-header { display: inline-flex; }
  .hamburger { display: none; }
  .mobile-nav { display: none !important; }

  .hero { padding: 120px 0 80px; }

  .section-compare { padding: 100px 0; }
  .section-workflow { display: block; padding: 100px 0; }
  .section-demo { padding: 100px 0; }
  .section-pricing { padding: 100px 0; }
  .section-cta { padding: 120px 0; }

  .wf-stage {
    flex-direction: row;
    gap: 20px;
    min-height: 320px;
  }

  .wf-panel { flex: 1; }
  .wf-card { min-height: auto; }

  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

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

  .calculator {
    flex-direction: row;
    align-items: stretch;
    gap: 32px;
    padding: 32px 36px;
  }

  .calc-inputs {
    flex: 1;
    min-width: 0;
  }

  .calc-divider {
    width: 1px;
    height: auto;
    flex-shrink: 0;
  }

  .calc-results {
    flex: 1.2;
    min-width: 0;
  }

  .calc-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer { padding: 20px 0; }
}

/* ═══════════════ SMALL SCREENS ═══════════════ */

@media (max-width: 380px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.375rem;
  }

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

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

  .hero-proof {
    flex-direction: column;
    gap: 12px;
  }
}
