/* ==========================================================================
   AI CHAMPION 2026 — MODERN DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

:root {
  /* 2 Primary Signature Colors */
  --brand-blue: #232cc7;
  --brand-blue-dark: #1a22a8;
  --brand-blue-light: #3842dc;
  --brand-blue-glow: rgba(35, 44, 199, 0.25);
  
  --brand-lime: #d0ffa6;
  --brand-lime-hover: #c1f88e;
  --brand-lime-border: #b2f578;
  --brand-lime-glow: rgba(208, 255, 166, 0.5);
  --brand-lime-dark: #1f6805;

  --brand-oqr: #232cc7;
  --brand-oqr-dark: #1a22a8;
  --brand-oqr-light: #3b44d1;
  --brand-oqr-deep: #0f1580;
  
  --bg-primary: #f8fafd;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f4f8fd;
  --bg-input: #ffffff;
  --bg-input-focus: #ffffff;
  
  --border-color: rgba(35, 44, 199, 0.1);
  --border-highlight: rgba(35, 44, 199, 0.35);
  --border-focus: #232cc7;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-inverse: #ffffff;

  /* Accents mapped to the 2 dominant colors */
  --accent-cyan: #232cc7;
  --accent-blue: #232cc7;
  --accent-indigo: #232cc7;
  --accent-purple: #232cc7;
  --accent-emerald: #15803d;
  --accent-amber: #d97706;
  --accent-rose: #e11d48;

  /* Signature Gradients */
  --grad-primary: linear-gradient(135deg, #232cc7 0%, #1a22a8 100%);
  --grad-hover: linear-gradient(135deg, #1a22a8 0%, #0f1580 100%);
  --grad-lime: linear-gradient(135deg, #d0ffa6 0%, #c1f88e 100%);
  --grad-accent: linear-gradient(135deg, #232cc7 0%, #d0ffa6 100%);
  --grad-gold: linear-gradient(135deg, #d0ffa6 0%, #b2f578 100%);
  --grad-glow: radial-gradient(circle, rgba(35, 44, 199, 0.12) 0%, rgba(208, 255, 166, 0.08) 50%, rgba(248, 250, 253, 0) 70%);

  /* UI Tokens */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(35, 44, 199, 0.04);
  --shadow-md: 0 8px 24px rgba(35, 44, 199, 0.08);
  --shadow-lg: 0 16px 40px rgba(35, 44, 199, 0.12);
  --shadow-glow: 0 0 35px rgba(208, 255, 166, 0.4);

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Background Ambient Glows */
.bg-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  transition: opacity 0.5s ease;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #232cc7 0%, rgba(35, 44, 199, 0) 70%);
  top: -150px;
  left: -100px;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #d0ffa6 0%, rgba(208, 255, 166, 0) 70%);
  top: 30%;
  right: -150px;
}

.glow-3 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #232cc7 0%, rgba(35, 44, 199, 0) 70%);
  bottom: -200px;
  left: 20%;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */

.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(11, 15, 25, 0.75);
  border-bottom: 1px solid var(--border-color);
}

[data-theme="light"] .top-nav {
  background: rgba(255, 255, 255, 0.8);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-logo-link {
  display: flex;
  align-items: center;
}

.oqr-header-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(35, 44, 199, 0.15));
  transition: transform 0.2s ease;
}

.brand-logo-link:hover .oqr-header-logo {
  transform: scale(1.04);
}

.brand-divider {
  width: 1px;
  height: 28px;
  background-color: var(--border-color);
}

.brand-logo-glow {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(35, 44, 199, 0.4);
}

.brand-icon {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-year {
  background: rgba(35, 44, 199, 0.1);
  color: var(--brand-oqr);
  border: 1px solid rgba(35, 44, 199, 0.25);
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.brand-subtitle {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
}

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

/* ==========================================================================
   BUTTONS & CONTROLS
   ========================================================================== */

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition-smooth);
}

.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
  border-color: var(--border-highlight);
  transform: translateY(-1px);
}

.btn-icon svg {
  width: 18px;
  height: 18px;
}

[data-theme="light"] .icon-moon,
[data-theme="dark"] .icon-sun,
:not([data-theme]) .icon-sun {
  display: block;
}

[data-theme="light"] .icon-sun,
[data-theme="dark"] .icon-moon,
:not([data-theme]) .icon-moon {
  display: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
}

.btn-ghost:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
  border-color: var(--border-highlight);
}

.btn-ghost svg {
  width: 16px;
  height: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  background: var(--brand-blue);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(35, 44, 199, 0.35);
}

.btn-primary:hover {
  background: var(--brand-blue-dark);
  box-shadow: 0 6px 25px rgba(35, 44, 199, 0.5);
  transform: translateY(-2px);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
}

.btn-submit-final {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 36px;
  border-radius: var(--radius-md);
  background: var(--brand-blue);
  color: var(--brand-lime);
  border: 2px solid var(--brand-lime);
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 6px 24px rgba(35, 44, 199, 0.4);
  letter-spacing: 0.02em;
}

.btn-submit-final:hover {
  background: var(--brand-blue-dark);
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(35, 44, 199, 0.6);
  transform: translateY(-2px);
}

.btn-submit-final svg {
  width: 20px;
  height: 20px;
}

.btn-text {
  background: transparent;
  color: var(--brand-blue);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-text:hover {
  color: var(--brand-blue-dark);
}

.btn-text svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

/* ==========================================================================
   MAIN LAYOUT & HERO SECTION
   ========================================================================== */

.main-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px 80px;
}

.hero-section {
  text-align: center;
  padding: 20px 10px 40px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  background: var(--brand-lime);
  border: 1px solid var(--brand-lime-border);
  color: var(--brand-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(208, 255, 166, 0.4);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--brand-blue);
  box-shadow: 0 0 10px var(--brand-blue);
  animation: pulseAnimation 1.8s infinite;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 16px var(--brand-blue); }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.highlight-text {
  background: var(--brand-lime);
  color: var(--brand-blue);
  padding: 2px 14px;
  border-radius: var(--radius-full);
  display: inline-block;
  box-shadow: 0 2px 12px rgba(208, 255, 166, 0.5);
  font-weight: 800;
}

.hero-desc {
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Countdown Card */
.countdown-card {
  max-width: 620px;
  margin: 0 auto 35px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.countdown-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.countdown-header svg {
  width: 18px;
  height: 18px;
  color: var(--brand-blue);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.count-box {
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.count-num {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1.1;
}

.count-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}

/* Value Props Grid */
.value-props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.prop-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  text-align: left;
  backdrop-filter: blur(10px);
}

.prop-icon {
  font-size: 1.6rem;
}

.prop-info h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.prop-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ==========================================================================
   INSPIRATION SECTION (ACCORDION)
   ========================================================================== */

.inspiration-section {
  margin-bottom: 35px;
}

.section-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.section-header-compact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.tag-accent {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-amber);
  background: rgba(245, 158, 11, 0.12);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 4px;
}

.header-left h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.sample-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 16px;
}

.sample-filter-btn {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
}

.sample-filter-btn:hover,
.sample-filter-btn.active {
  background: var(--accent-indigo);
  color: #ffffff;
  border-color: var(--accent-indigo);
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.sample-card {
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.sample-card:hover {
  border-color: var(--border-highlight);
  transform: translateY(-2px);
}

.sample-dept {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.sample-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.sample-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.45;
}

.sample-solution {
  font-size: 0.82rem;
  color: var(--accent-emerald);
  background: rgba(16, 185, 129, 0.08);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  border-left: 3px solid var(--accent-emerald);
}

.btn-apply-sample {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: rgba(99, 102, 241, 0.15);
  color: var(--accent-indigo);
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.btn-apply-sample:hover {
  background: var(--accent-indigo);
  color: #ffffff;
}

/* ==========================================================================
   FORM CONTAINER & STEPS NAVIGATION
   ========================================================================== */

.form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}

.form-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 28px;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.form-subtitle {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.auto-save-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--accent-emerald);
  font-weight: 600;
  white-space: nowrap;
}

.auto-save-status svg {
  width: 14px;
  height: 14px;
}

/* Steps Navigation Bar */
/* Steps Navigation Bar / Section Anchor */
.steps-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  position: relative;
  text-decoration: none;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  opacity: 0.9;
  text-decoration: none;
  transition: var(--transition-smooth);
  padding: 6px 12px;
  border-radius: var(--radius-md);
}

.step-item:hover {
  opacity: 1;
  background: var(--bg-card);
}

.step-item.active {
  opacity: 1;
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-primary);
  border: 2px solid var(--brand-blue);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  box-shadow: 0 0 10px rgba(35, 44, 199, 0.25);
}

.step-info {
  display: flex;
  flex-direction: column;
}

.step-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.step-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border-color);
  margin: 0 12px;
}

/* Live Bonus Score Checker */
.bonus-checker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(208, 255, 166, 0.25);
  border: 1px dashed rgba(35, 44, 199, 0.35);
  border-radius: var(--radius-md);
  margin-bottom: 30px;
}

.bonus-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.bonus-title svg {
  width: 16px;
  height: 16px;
}

.bonus-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bonus-badge {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.bonus-badge.earned {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--accent-emerald);
  color: var(--accent-emerald);
  font-weight: 700;
}

/* ==========================================================================
   FORM CONTROLS & SECTIONS
   ========================================================================== */

.form-step-content {
  display: block;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px dashed var(--border-color);
  animation: fadeIn 0.3s ease-in-out;
}

.form-step-content:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-submit-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.form-submit-wrapper .btn-submit-final {
  width: 100%;
  max-width: 480px;
  padding: 16px 28px;
  font-size: 1.05rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: var(--radius-md);
  background: var(--grad-primary);
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(35, 44, 199, 0.35);
  transition: var(--transition-smooth);
}

.form-submit-wrapper .btn-submit-final:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(35, 44, 199, 0.45);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.card-section {
  background: transparent;
  margin-bottom: 28px;
}

.card-section-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.section-num {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--grad-primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-section-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.card-section-header p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.form-group {
  margin-bottom: 22px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.req {
  color: var(--accent-rose);
  font-weight: 800;
  margin-left: 2px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select,
textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text-primary);
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  outline: none;
  transition: var(--transition-smooth);
}

.input-wrapper input {
  padding-left: 42px;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--border-focus);
  background: var(--bg-input-focus);
  box-shadow: 0 0 0 3px rgba(35, 44, 199, 0.18);
}

textarea {
  resize: vertical;
  line-height: 1.5;
}

.input-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.field-error {
  display: block;
  font-size: 0.78rem;
  color: var(--accent-rose);
  font-weight: 600;
  margin-top: 4px;
  min-height: 16px;
}

/* ==========================================================================
   TOOL QUICK TAGS & NAS BOX STYLING
   ========================================================================== */

.tool-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.tag-title {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.tool-tag-btn {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(35, 44, 199, 0.08);
  border: 1px solid rgba(35, 44, 199, 0.2);
  color: var(--brand-blue);
  font-size: 0.76rem;
  font-weight: 700;
}

.tool-tag-btn:hover {
  background: var(--brand-blue);
  color: var(--brand-lime);
  transform: translateY(-1px);
}

/* NAS Storage Box */
.nas-box {
  background: rgba(35, 44, 199, 0.03);
  border: 1px solid rgba(35, 44, 199, 0.2);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-top: 24px;
}

.nas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.nas-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nas-icon {
  width: 28px;
  height: 28px;
  color: var(--brand-blue);
}

.nas-label {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0;
}

.nas-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-blue);
  background: var(--brand-lime);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-top: 2px;
}

.nas-instruction {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 14px;
}

.nas-examples {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.nas-examples code {
  font-family: var(--font-mono);
  background: var(--bg-input);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--brand-blue);
  border: 1px solid var(--border-color);
}

/* ==========================================================================
   RADIO PILLS & SCOPE CARDS
   ========================================================================== */

.radio-pill-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.radio-pill {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.radio-pill input {
  display: none;
}

.radio-pill span {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.86rem;
  font-weight: 600;
  text-align: center;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.radio-pill input:checked + span {
  background: rgba(208, 255, 166, 0.4);
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  font-weight: 800;
  box-shadow: 0 0 12px rgba(35, 44, 199, 0.15);
}

/* Scope Cards Grid */
.scope-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.scope-card {
  position: relative;
  cursor: pointer;
}

.scope-card input {
  display: none;
}

.scope-card-content {
  height: 100%;
  padding: 16px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.scope-icon {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.scope-card-content h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.scope-card-content p {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.scope-card input:checked + .scope-card-content {
  border-color: var(--brand-blue);
  background: rgba(208, 255, 166, 0.25);
  box-shadow: 0 0 15px rgba(35, 44, 199, 0.2);
}

.badge-mini-plus {
  position: absolute;
  top: -8px;
  right: -6px;
  background: var(--brand-blue);
  color: var(--brand-lime);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  border: 1px solid var(--brand-lime);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(35, 44, 199, 0.3);
}

/* Role Options List */
.role-options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.role-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.role-option input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent-indigo);
}

.role-option-text {
  display: flex;
  flex-direction: column;
}

.role-option-text strong {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.role-option-text span {
  font-size: 0.83rem;
  color: var(--text-secondary);
}

.role-option:hover {
  border-color: var(--border-highlight);
}

/* Skills Checkboxes */
.skill-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.skill-pill {
  cursor: pointer;
}

.skill-pill input {
  display: none;
}

.skill-pill span {
  display: block;
  padding: 10px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.skill-pill input:checked + span {
  background: rgba(16, 185, 129, 0.12);
  border-color: var(--accent-emerald);
  color: var(--text-primary);
  font-weight: 700;
}

/* Agreement Box */
.agreement-box {
  padding: 16px;
  background: rgba(244, 63, 94, 0.05);
  border: 1px solid rgba(244, 63, 94, 0.25);
  border-radius: var(--radius-md);
  margin-top: 20px;
}

.agree-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 0;
}

.agree-label input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent-rose);
  flex-shrink: 0;
}

/* Step Actions Bottom */
.step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

/* ==========================================================================
   INFO FOOTER & MODALS
   ========================================================================== */

.info-footer-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

.modal-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 14px;
}

.modal-header h2 {
  font-size: 1.25rem;
  font-weight: 800;
}

.modal-close {
  background: transparent;
  color: var(--text-muted);
  font-size: 1.8rem;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-body {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.modal-body h4 {
  color: var(--text-primary);
  margin: 16px 0 8px;
  font-size: 0.98rem;
}

.modal-list {
  padding-left: 20px;
  margin-bottom: 14px;
}

.bonus-table {
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 14px;
}

.bonus-row {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.85rem;
}

.bonus-row:last-child {
  border-bottom: none;
}

.bonus-row span:first-child {
  width: 80px;
  font-weight: 800;
  color: var(--accent-emerald);
}

.modal-footer {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* Success Card */
.success-card {
  text-align: center;
}

.success-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 2px solid var(--accent-emerald);
}

.success-icon-wrap svg {
  width: 36px;
  height: 36px;
}

.receipt-box {
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: left;
  margin: 20px 0;
  font-size: 0.85rem;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border-color);
}

.receipt-row:last-child {
  border-bottom: none;
}

.receipt-label {
  color: var(--text-muted);
}

.receipt-val {
  font-weight: 700;
  color: var(--text-primary);
}

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-highlight);
  box-shadow: var(--shadow-lg);
  font-size: 0.88rem;
  font-weight: 600;
  z-index: 300;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Site Footer */
.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 30px 20px 40px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.84rem;
}

.footer-sub {
  font-size: 0.76rem;
  margin-top: 4px;
  color: var(--text-muted);
  opacity: 0.8;
}

/* ==========================================================================
   LANDING PAGE COMPONENTS (PAINPOINTS SHOWCASE, STATS, COMPARISON)
   ========================================================================== */

html {
  scroll-behavior: smooth;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn-hero-primary {
  padding: 14px 28px;
  border-radius: var(--radius-full);
  background: var(--grad-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.02rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.45);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6);
  background: var(--grad-hover);
  color: #ffffff;
}

.btn-hero-secondary {
  padding: 14px 24px;
  border-radius: var(--radius-full);
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.96rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-hero-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-highlight);
  transform: translateY(-2px);
  color: var(--accent-cyan);
}

/* Hero Stats Bar */
.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 35px auto 10px;
}

.hero-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 18px 14px;
  backdrop-filter: blur(12px);
  text-align: center;
  transition: var(--transition-smooth);
}

.hero-stat-card:hover {
  border-color: var(--border-highlight);
  transform: translateY(-3px);
}

.hero-stat-num {
  font-family: var(--font-mono);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--accent-cyan);
  line-height: 1.1;
  margin-bottom: 4px;
}

.hero-stat-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Landing Section Standard */
.landing-section {
  margin-bottom: 60px;
  padding: 20px 0;
}

.section-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: var(--accent-cyan);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.section-heading-center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 36px;
}

.section-main-title {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-main-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Painpoints Showcase Grid */
.painpoints-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.painpoint-showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.painpoint-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border-color);
  transition: var(--transition-smooth);
}

.painpoint-showcase-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-highlight);
  box-shadow: var(--shadow-md);
}

.painpoint-showcase-card:hover::before {
  background: var(--grad-primary);
}

.card-tag-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.card-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.dept-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(99, 102, 241, 0.12);
  color: var(--accent-indigo);
  border: 1px solid rgba(99, 102, 241, 0.25);
}

.card-problem-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.35;
}

.card-problem-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 14px;
}

.card-impact-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-rose);
  background: rgba(244, 63, 94, 0.08);
  border: 1px solid rgba(244, 63, 94, 0.2);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}

.card-ai-solution {
  background: rgba(16, 185, 129, 0.08);
  border-left: 3px solid var(--accent-emerald);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 10px 12px;
  font-size: 0.82rem;
  color: var(--accent-emerald);
  line-height: 1.45;
  margin-bottom: 16px;
}

.card-ai-solution strong {
  color: var(--text-primary);
}

.btn-quick-propose {
  width: 100%;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: rgba(99, 102, 241, 0.12);
  color: var(--accent-indigo);
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(99, 102, 241, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.btn-quick-propose:hover {
  background: var(--accent-indigo);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35);
  transform: translateY(-1px);
}

/* Comparison Section */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.compare-box {
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  backdrop-filter: blur(16px);
  position: relative;
}

.compare-box.bad {
  background: rgba(244, 63, 94, 0.04);
  border: 1px solid rgba(244, 63, 94, 0.2);
}

.compare-box.good {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.3);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.08);
}

.compare-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.compare-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.compare-box.bad .compare-badge-icon {
  background: rgba(244, 63, 94, 0.15);
}

.compare-box.good .compare-badge-icon {
  background: rgba(16, 185, 129, 0.15);
}

.compare-title {
  font-size: 1.15rem;
  font-weight: 800;
}

.compare-box.bad .compare-title {
  color: var(--accent-rose);
}

.compare-box.good .compare-title {
  color: var(--accent-emerald);
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

.compare-item span.icon {
  font-size: 1rem;
  line-height: 1.2;
}

.compare-box.good .compare-item {
  color: var(--text-primary);
}

/* Workflow Steps */
.workflow-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.workflow-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 26px 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  position: relative;
  transition: var(--transition-smooth);
}

.workflow-step-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-highlight);
}

.section-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--brand-lime);
  border: 1px solid var(--brand-lime-border);
  color: var(--brand-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(208, 255, 166, 0.4);
}

.workflow-step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: var(--brand-lime);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(35, 44, 199, 0.3);
}

.workflow-step-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.workflow-step-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* Form Bridge Banner */
.form-bridge-banner {
  background: linear-gradient(135deg, rgba(35, 44, 199, 0.05) 0%, rgba(208, 255, 166, 0.2) 100%);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-xl);
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}

.form-bridge-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 6px;
}

.form-bridge-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.form-bridge-arrow {
  display: inline-flex;
  animation: bounceDown 1.5s infinite;
  color: var(--brand-blue);
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Responsive adjustments */
@media (max-width: 868px) {
  .hero-stats-bar,
  .workflow-steps-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }
  .painpoints-showcase-grid {
    grid-template-columns: 1fr;
  }
  .steps-nav {
    flex-wrap: wrap;
    gap: 10px;
  }
  .step-line {
    display: none;
  }
  .form-grid-2,
  .form-grid-3,
  .scope-cards-grid,
  .skill-checkboxes {
    grid-template-columns: 1fr;
  }
  .form-wrapper {
    padding: 24px 18px;
  }
  .nav-container {
    padding: 12px 16px;
  }
  .footer-brand-row {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* OQR Footer Branding */
.oqr-footer {
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 40px 20px 24px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(35, 44, 199, 0.08);
}

.oqr-footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-company-info {
  text-align: center;
}

.footer-company-info h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-oqr);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.footer-company-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 2px;
}

.footer-company-info a {
  color: var(--brand-oqr);
  text-decoration: none;
  font-weight: 600;
}

.footer-company-info a:hover {
  text-decoration: underline;
}

.footer-bottom-copy {
  padding-top: 18px;
  text-align: center;
}

.footer-bottom-copy p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
