﻿:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface2: #f5f5f5;
  --border: #e5e5e5;
  --accent: #3D8B7C;
  --accent2: #4FA896;
  --navy: #1B3A5C;
  --green: #22c55e;
  --red: #ef4444;
  --blue: #3b82f6;
  --text: #171717;
  --muted: #525252;
  --muted2: #737373;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.4;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* padding: 120px 24px 60px; */
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(46, 196, 176, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.25);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(38px, 3vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 900px;
  animation: fadeUp 0.7s ease 0.1s both;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: var(--muted2);
  font-size: clamp(16px, 2vw, 20px);
  max-width: 560px;
  margin: 24px auto 0;
  line-height: 1.6;
  font-weight: 300;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero-cta {
  margin-top: 48px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.7s ease 0.3s both;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeUp 1s ease 0.8s both;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollPulse 2s ease infinite;
}

/* BUTTONS */
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245, 166, 35, 0.3);
}

/* SECTIONS */
section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(38px, 3vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--muted2);
  font-size: 17px;
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 60px;
}

/* WORKFLOW â€” SIDE BY SIDE */
.workflow-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* shared step nav */
.step-nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
}

.step-counter {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--muted2);
  min-width: 72px;
  text-align: center;
}

.step-dots-shared {
  display: flex;
  gap: 8px;
  align-items: center;
}

.sdot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: var(--border);
  transition: all 0.3s;
  cursor: pointer;
}

.sdot.active {
  width: 28px;
  background: var(--accent);
}

.sdot.visited-bad {
  background: var(--red);
  opacity: 0.5;
}

.sdot.visited-good {
  background: var(--green);
  opacity: 0.5;
}

.snav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.snav-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.snav-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

/* two-column grid */
.workflow-cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

.wf-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* column header */
.col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 14px 14px 0 0;
  margin-bottom: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
}

.col-header.bad-header {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #f87171;
  border-bottom: none;
}

.col-header.good-header {
  background: rgba(46, 196, 176, 0.07);
  border: 1px solid rgba(46, 196, 176, 0.2);
  color: var(--accent);
  border-bottom: none;
}

/* step card â€” compact for side by side */
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 28px;
  display: none;
  animation: stepIn 0.3s ease;
  position: relative;
  overflow: hidden;
  flex: 1;
}

.step-card.active {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step-card:last-of-type {
  border-radius: 0 0 14px 14px;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.step-card.bad::before {
  background: linear-gradient(90deg, var(--red), transparent);
}

.step-card.good::before {
  background: linear-gradient(90deg, var(--green), transparent);
}

.step-card.checkpoint::before {
  background: linear-gradient(90deg, var(--blue), transparent);
}

/* bad col card border */
.wf-col:first-child .step-card {
  border-color: rgba(239, 68, 68, 0.2);
  border-radius: 0 0 14px 14px;
}

.wf-col:last-child .step-card {
  border-color: rgba(46, 196, 176, 0.2);
  border-radius: 0 0 14px 14px;
}

.step-card-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.step-card.bad .step-icon-wrap {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.step-card.good .step-icon-wrap {
  background: rgba(46, 196, 176, 0.1);
  border: 1px solid rgba(46, 196, 176, 0.2);
}

.step-card.checkpoint .step-icon-wrap {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.step-content {
  flex: 1;
}

.step-num {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}

.step-card.bad .step-num {
  color: var(--red);
}

.step-card.good .step-num {
  color: var(--accent);
}

.step-card.checkpoint .step-num {
  color: var(--blue);
}

.step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 0;
  line-height: 1.2;
}

.step-desc {
  color: var(--muted2);
  line-height: 1.65;
  font-size: 14px;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
}

.tag-bad {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.tag-good {
  background: rgba(46, 196, 176, 0.1);
  border: 1px solid rgba(46, 196, 176, 0.2);
  color: var(--accent);
}

.tag-blue {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.time-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
}

.time-badge.slow {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.time-badge.fast {
  background: rgba(46, 196, 176, 0.1);
  border: 1px solid rgba(46, 196, 176, 0.2);
  color: var(--accent);
}

.time-badge.instant {
  background: rgba(46, 196, 176, 0.1);
  border: 1px solid rgba(46, 196, 176, 0.2);
  color: var(--accent);
}

/* VS divider between columns */
.wf-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  gap: 0;
  padding-top: 58px;
}

.wf-vs-line {
  flex: 1;
  width: 1px;
  background: var(--border);
}

.wf-vs-badge {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: var(--muted);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 12px;
  letter-spacing: 0.05em;
  /* writing-mode: vertical-rl; */
  text-orientation: mixed;
}


/* TIMER */
.timer-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.timer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: start;
}

.timer-card {
  background: var(--surface);
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.timer-head {
  padding: 22px 28px 16px;
  border-bottom: 1px solid var(--border);
}

.tmode {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}

.tmode.bad {
  color: var(--red);
}

.tmode.good {
  color: var(--green);
}

.timer-head h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.timer-display {
  padding: 28px;
  text-align: center;
}

.timer-dials {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
  align-items: center;
}

.dial-g {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.dial-n {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  min-width: 72px;
  text-align: center;
}

.dial-n.bad-n {
  color: var(--red);
}

.dial-n.good-n {
  color: var(--green);
}

.dial-u {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.dial-sep {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  padding-bottom: 20px;
}

.tstage {
  font-size: 13px;
  color: var(--muted2);
  margin-bottom: 14px;
  min-height: 18px;
  font-style: italic;
}

.tbar-wrap {
  height: 5px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}

.tbar {
  height: 100%;
  border-radius: 100px;
  transition: width 0.4s;
}

.tbar.bad-bar {
  background: linear-gradient(90deg, var(--red), #fca5a5);
}

.tbar.good-bar {
  background: linear-gradient(90deg, var(--green), #86efac);
}

.tsteps-list {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tstep {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  padding: 9px 12px;
  border-radius: 9px;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.tstep.act {
  border-color: var(--border);
  background: var(--surface2);
  color: var(--text);
}

.tstep.don {
  color: var(--muted2);
}

.tdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: background 0.3s;
}

.tstep.act .tdot {
  background: var(--accent);
  animation: dotPulse 1s ease infinite;
}

.tstep.don.bd .tdot {
  background: var(--red);
}

.tstep.don.gd .tdot {
  background: var(--green);
}

.vs-pill {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--muted);
  margin-top: 60px;
}

.timer-result {
  margin-top: 40px;
  text-align: center;
}

.saved-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(34, 197, 94, 0.07);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 14px;
  padding: 16px 28px;
  margin-bottom: 24px;
}

.saved-n {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
}

.saved-t {
  font-size: 14px;
  color: var(--muted2);
  text-align: left;
  line-height: 1.4;
}

.restart-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.2s;
  margin-top: 14px;
}

.restart-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* DASHBOARD */
.vs-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.vs-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.vs-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  letter-spacing: 0.05em;
}

.dashboard-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.dash-header {
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dash-dots {
  display: flex;
  gap: 6px;
}

.dash-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dash-title {
  flex: 1;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.dash-body {
  padding: 28px;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.dash-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}

.dash-stat-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
}

.dash-stat-label {
  color: var(--muted);
  font-size: 12px;
}

.candidates-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.candidates-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.candidate-row {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.2s;
}

.candidate-row:hover {
  border-color: var(--accent);
}

.cand-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  flex-shrink: 0;
}

.cand-info {
  flex: 1;
}

.cand-name {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 3px;
}

.cand-role {
  color: var(--muted);
  font-size: 13px;
}

.cand-score {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.score-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
}

.score-bar-wrap {
  width: 80px;
  height: 4px;
  background: var(--border);
  border-radius: 100px;
}

.score-bar {
  height: 100%;
  border-radius: 100px;
}

.cand-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cand-badge {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
}

.action-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.act-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.2s;
}

.act-approve {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.act-approve:hover {
  background: rgba(34, 197, 94, 0.25);
}

.act-decline {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.act-decline:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.candidate-row.approved {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.04);
}

.candidate-row.rejected {
  opacity: 0.4;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 60px;
}

.compare-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.compare-head {
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.compare-head.red {
  color: var(--red);
}

.compare-head.green {
  color: var(--green);
}

.compare-body {
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--muted2);
  line-height: 1.5;
}

.compare-icon {
  flex-shrink: 0;
  font-size: 16px;
  margin-top: 1px;
}

.cta-section {
  text-align: center;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(46, 196, 176, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(38px, 3vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.05;
}

.cta-section p {
  color: var(--muted2);
  font-size: 18px;
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 32px 24px;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

footer strong {
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
}

/* â•â•â• MODAL â•â•â• */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(28px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: none;
}

.modal::-webkit-scrollbar {
  display: none;
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 2;
}

.modal-close:hover {
  color: var(--text);
  border-color: var(--muted);
}

.modal-top {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.07), rgba(255, 107, 53, 0.04));
  border-bottom: 1px solid var(--border);
  padding: 36px 36px 28px;
  text-align: center;
}

.trial-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.3);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.modal-top h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.modal-top p {
  color: var(--muted2);
  font-size: 14px;
  line-height: 1.5;
}

.no-cc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

.no-cc span {
  color: var(--green);
  font-weight: 600;
}

.modal-progress {
  padding: 14px 36px;
  border-bottom: 1px solid var(--border);
}

.prog-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--muted);
}

.prog-labels span:last-child {
  color: var(--accent);
  font-weight: 600;
}

.prog-track {
  height: 4px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}

.prog-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 100px;
  transition: width 0.4s ease;
}

.modal-body {
  padding: 32px 36px;
}

.form-step {
  display: none;
  animation: stepIn 0.3s ease;
}

.form-step.active {
  display: block;
}

.form-step h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.step-hint {
  color: var(--muted2);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted2);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.form-input::placeholder {
  color: var(--muted);
}

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  background-color: var(--bg);
}

textarea.form-input {
  resize: vertical;
  min-height: 80px;
}

.option-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.option-tiles-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.option-tile {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 15px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted2);
}

.option-tile:hover {
  border-color: rgba(245, 166, 35, 0.4);
  color: var(--text);
}

.option-tile.selected {
  border-color: var(--accent);
  background: rgba(245, 166, 35, 0.07);
  color: var(--text);
}

.option-tile.selected .tile-check {
  opacity: 1;
}

.tile-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.tile-label {
  flex: 1;
  font-weight: 500;
  font-size: 13px;
}

.tile-check {
  opacity: 0;
  color: var(--accent);
  font-size: 15px;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.slider-wrap {
  padding: 6px 0;
}

.form-range {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  outline: none;
  cursor: pointer;
}

.form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(245, 166, 35, 0.4);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  color: var(--muted);
}

.range-val {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--accent);
  margin-top: 10px;
}

.elig-meter {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-top: 8px;
}

.elig-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 8px;
}

.elig-track {
  height: 7px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 10px;
}

.elig-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 0.5s, background 0.5s;
}

.elig-status {
  font-size: 13px;
  font-weight: 600;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-nav {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  align-items: center;
}

.btn-back {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted2);
  padding: 13px 24px;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-back:hover {
  border-color: var(--muted2);
  color: var(--text);
}

.btn-next {
  flex: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  padding: 14px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.2s;
}

.btn-next:hover {
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.3);
}

.btn-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* special screens */
.special-screen {
  text-align: center;
  padding: 16px 0;
}

.special-icon {
  font-size: 54px;
  margin-bottom: 16px;
}

.special-screen h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.special-screen p {
  color: var(--muted2);
  font-size: 14px;
  line-height: 1.6;
  max-width: 360px;
  margin: 0 auto 20px;
}

.disq-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  font-size: 13px;
  color: var(--muted2);
  margin-bottom: 20px;
}

.success-checks {
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 14px;
  padding: 18px;
  text-align: left;
  margin-bottom: 20px;
}

.sc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.sc-item:last-child {
  border-bottom: none;
}

.sc-item .si {
  color: var(--green);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes dotPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.5);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(245, 166, 35, 0);
  }
}

@keyframes bounceIn {
  from {
    opacity: 0;
    transform: scale(0.4);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s, transform 0.6s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .workflow-cols {
    grid-template-columns: 1fr;
  }

  .wf-divider {
    flex-direction: row;
    padding: 12px 0;
    padding-top: 0;
  }

  .wf-vs-line {
    flex: 1;
    width: auto;
    height: 1px;
  }

  .wf-vs-badge {
    writing-mode: horizontal-tb;
  }


}

@media (max-width: 768px) {
  .timer-grid {
    grid-template-columns: 1fr;
  }

  .vs-pill {
    writing-mode: horizontal-tb;
    padding: 10px 20px;
    flex-direction: row;
    margin-top: 0;
  }

  .step-card.active {
    flex-direction: column;
    gap: 20px;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .dash-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .candidate-row {
    flex-wrap: wrap;
  }

  .action-row {
    flex-direction: row;
    gap: 10px;
    width: 100%;
    margin-top: 5px;
  }

  .act-btn {
    flex: 1;
    justify-content: center;
  }

  .cand-badges {
    display: none;
  }

  .option-tiles {
    grid-template-columns: 1fr;
  }

  .option-tiles-3 {
    grid-template-columns: 1fr 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .modal-top,
  .modal-body,
  .modal-progress {
    padding-left: 20px;
    padding-right: 20px;
  }

  .dial-n {
    font-size: 36px;
    min-width: 52px;
  }
}

/* Trial Nav Styles */
.trial-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 14px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 11, 18, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(28, 37, 64, 0.6);
}

.trial-nav-logo {
  border-radius: 5px;
  height: 36px;
  mix-blend-mode: screen;
  filter: brightness(1.4) contrast(1.1);
}

.trial-nav-btn {
  padding: 10px 22px !important;
  font-size: 13px !important;
}

/* ============================================
   HEADER - Premium Navigation (Imported for trial1)
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(250, 250, 250, 0);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 70px;
}

.header-active {
  height: 60px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--border);
}

.header-hidden {
  transform: translateY(-100%);
}

.nav {
  position: relative;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  display: flex;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.logo-content {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo {
  height: 40px;
  width: auto;
}

.menu-list {
  display: flex;
  list-style: none;
  column-gap: 2rem;
}

.nav-link,
.nav-linkactive {
  text-decoration: none;
  color: var(--text);
  padding: 12px 16px;
  display: block;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: color 0.3s;
  position: relative;
}

.nav-link::after,
.nav-linkactive::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s;
}

.nav-linkactive {
  color: var(--accent);
}

.nav-linkactive::after {
  width: calc(100% - 32px);
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link:hover::after {
  width: calc(100% - 32px);
}

.nav-btn-group {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: rgba(61, 139, 124, 0.08);
}

.nav-contact-mobile,
.navClose-btn,
.navOpen-btn {
  display: none;
}

@media screen and (max-width: 768px) {

  .nav-contact-desktop,
  .menu-list {
    display: none;
  }
}

/* ============================================
   MOBILE RESPONSIVE NAVBAR
   ============================================ */
.navClose-btn,
.navOpen-btn {
  display: none;
}

@media screen and (max-width: 768px) {
  .nav-contact-desktop {
    display: none;
  }

  .navClose-btn,
  .navOpen-btn {
    display: block;
  }

  .nav .menu-content {
    position: fixed;
    top: 0;
    right: -100%;
    max-width: 320px;
    width: 100%;
    height: 100vh;
    z-index: 2000;
    padding: 80px 24px 24px;
    background-color: #ffffff;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
  }

  .nav .menu-content.open {
    right: 0;
  }

  .menu-list {
    flex-direction: column;
    row-gap: 24px;
    font-size: 20px;
    width: 100%;
    text-align: center;
    display: flex;
  }

  .nav-link,
  .nav-linkactive {
    font-size: 18px;
    padding: 12px 16px;
  }

  .navClose-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: var(--text);
  }

  .navOpen-btn {
    font-size: 32px;
    cursor: pointer;
    color: var(--text);
  }

  .nav-contact-mobile {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
    width: 100%;
  }

  .nav-contact-mobile .btn-secondary,
  .nav-contact-mobile .btn-primary {
    width: 100%;
    text-align: center;
    padding: 14px 20px !important;
    font-size: 16px;
  }
}