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

:root {
  --text: #1d1d1f;
  --text-secondary: #6e6e73;
  --text-tertiary: #86868b;
  --bg: #fff;
  --bg-secondary: #f5f5f7;
  --bg-card: #fff;
  --border: #d2d2d7;
  --border-light: #e8e8ed;
  --accent: #0071e3;
  --accent-hover: #0077ed;
  --harvest: #fa5d29;
  --erp: #0071e3;
  --green: #34c759;
  --yellow: #ff9f0a;
  --red: #ff3b30;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.03);
  --max-width: 980px;
  --max-width-wide: 1200px;
  --transition: 0.2s ease;
}

@media (prefers-color-scheme: dark) {
  :root {
    --text: #f5f5f7;
    --text-secondary: #a1a1a6;
    --text-tertiary: #6e6e73;
    --bg: #1d1d1f;
    --bg-secondary: #2c2c2e;
    --bg-card: #2c2c2e;
    --border: #424245;
    --border-light: #38383a;
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.06);
    --shadow-hover: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08);
  }
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: hidden;
}

.container.wide {
  max-width: var(--max-width-wide);
}

/* Section dividers */

.section + .section {
  border-top: 1px solid var(--border-light);
}

.section-divider {
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-bottom: 24px;
  border: none;
}

/* Hero */

.hero {
  padding: 100px 0 56px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg) 100%);
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 20px;
}

.subtitle {
  font-size: 1.1875rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* Sections */

.section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

.section-intro {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 680px;
}

/* Requirements */

.req-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.req-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.req-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-tertiary);
}

.req-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.req-item p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Options */

.options-section {
  background: var(--bg-secondary);
}

.options-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: var(--max-width-wide);
}

.option-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.option-card:hover {
  box-shadow: var(--shadow-hover);
}

.option-header {
  padding: 36px 36px 28px;
}

.harvest-header {
  border-bottom: 1px solid var(--border-light);
  background: linear-gradient(135deg, #ff6b3d 0%, #fa5d29 50%, #e84d1a 100%);
  color: #fff;
}

.erp-header {
  border-bottom: 1px solid var(--border-light);
  background: linear-gradient(135deg, #3da0ff 0%, #0071e3 50%, #005ec4 100%);
  color: #fff;
}

.option-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 8px;
}

.option-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.option-tagline {
  font-size: 0.9375rem;
  opacity: 0.85;
}

.option-body {
  padding: 36px;
}

.option-section {
  margin-bottom: 28px;
}

.option-section:last-child {
  margin-bottom: 0;
}

.option-section h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.option-section p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}

.option-section p:last-child {
  margin-bottom: 0;
}

/* Fit list */

.fit-list {
  list-style: none;
}

.fit-list li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
  padding: 8px 0 8px 24px;
  position: relative;
}

.fit-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.fit-good::before {
  background: var(--green);
}

.fit-partial::before {
  background: var(--yellow);
}

.fit-bad::before {
  background: var(--red);
}

/* Cost table */

.cost-table {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-size: 0.9375rem;
  background: var(--bg-card);
}

.cost-row + .cost-row {
  border-top: 1px solid var(--border-light);
}

.cost-row span:last-child {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.cost-row span:first-child {
  color: var(--text-secondary);
}

/* Comparison table */

.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 24px;
  max-width: var(--max-width-wide);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  background: var(--bg-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.comparison-table th {
  text-align: left;
  font-weight: 600;
  padding: 14px 16px;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
  background: var(--bg-secondary);
}

.comparison-table th:first-child {
  width: 30%;
}

.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  vertical-align: top;
}

.comparison-table td:first-child {
  font-weight: 500;
  color: var(--text);
}

.comparison-table td.good {
  color: var(--green);
  border-left: 3px solid var(--green);
}

.comparison-table td.partial {
  color: var(--yellow);
  border-left: 3px solid var(--yellow);
}

.comparison-table td.bad {
  color: var(--red);
  border-left: 3px solid var(--red);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
  font-weight: 600;
  color: var(--text);
}

/* Recommendation */

.rec-block {
  background: var(--bg-secondary);
  border-radius: var(--radius);
  padding: 40px;
  margin-top: 20px;
}

.rec-block p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.rec-block p:first-child {
  font-size: 1.125rem;
  color: var(--text);
}

.rec-block p:last-child {
  margin-bottom: 0;
}

/* Steps */

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 28px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  color: var(--text);
  border: 1.5px solid var(--border);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50%;
}

/* Color code step circles per path */

.next-path:first-child .step-num {
  background: var(--harvest);
  color: #fff;
  border-color: var(--harvest);
}

.next-path:last-child .step-num {
  background: var(--erp);
  color: #fff;
  border-color: var(--erp);
}

.step h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.step p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Next steps path headings */

.next-paths {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
  max-width: var(--max-width-wide);
}

.next-path {
  flex: 1;
}

.next-path-heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-light);
}

.next-path:first-child .next-path-heading {
  border-bottom-color: var(--harvest);
}

.next-path:last-child .next-path-heading {
  border-bottom-color: var(--erp);
}

@media (min-width: 768px) {
  .next-paths {
    flex-direction: row;
    gap: 40px;
  }
}

/* Workflow link CTA */

.workflow-link {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 100px;
  margin-top: 32px;
  transition: background var(--transition);
}

.workflow-link::after {
  content: " \2192";
}

.workflow-link:hover {
  background: var(--accent-hover);
}

/* Workflow page */

.workflow-cols {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 32px;
  max-width: var(--max-width-wide);
}

.workflow-col {
  flex: 1;
}

.wf-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-light);
}

.wf-heading.harvest {
  border-bottom-color: var(--harvest);
  color: var(--harvest);
}

.wf-heading.erp {
  border-bottom-color: var(--erp);
  color: var(--erp);
}

.wf-timeline {
  list-style: none;
  position: relative;
  padding-left: 40px;
}

.wf-timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-light);
}

.wf-timeline.harvest::before {
  background: linear-gradient(to bottom, var(--harvest), var(--border-light));
}

.wf-timeline.erp::before {
  background: linear-gradient(to bottom, var(--erp), var(--border-light));
}

.wf-step {
  position: relative;
  padding-bottom: 24px;
}

.wf-step:last-child {
  padding-bottom: 0;
}

.wf-step-num {
  position: absolute;
  left: -40px;
  top: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
}

.harvest .wf-step-num {
  background: var(--harvest);
}

.erp .wf-step-num {
  background: var(--erp);
}

.wf-step h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.wf-step p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.wf-callout {
  background: var(--bg-secondary);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 48px;
}

.wf-callout h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.wf-callout li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
  list-style: none;
  padding-left: 20px;
  position: relative;
}

.wf-callout li::before {
  content: "=";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--text-tertiary);
}

.wf-callout li:last-child {
  margin-bottom: 0;
}

.back-link {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  transition: opacity var(--transition);
}

.back-link::before {
  content: "\2190 ";
}

.back-link:hover {
  opacity: 0.7;
}

@media (min-width: 768px) {
  .workflow-cols {
    flex-direction: row;
    gap: 48px;
  }
}

/* Quote block */

.quote-block {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.quote-meta {
  display: flex;
  justify-content: space-between;
  padding: 32px 32px 24px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.quote-meta strong {
  color: var(--text);
  font-size: 1rem;
}

.quote-meta-right {
  text-align: right;
}

.quote-to {
  padding: 0 32px 24px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.quote-to strong {
  color: var(--text-tertiary);
  font-weight: 500;
}

.quote-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.quote-table thead th {
  text-align: left;
  padding: 10px 16px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.quote-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  vertical-align: top;
  line-height: 1.5;
}

.quote-table tbody td:first-child {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.quote-table tfoot td {
  padding: 16px 16px;
  border-top: 2px solid var(--border);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
}

.quote-table tfoot td:last-child {
  text-align: right;
  font-size: 1.125rem;
}

.quote-notes {
  padding: 24px 32px;
  border-top: 1px solid var(--border-light);
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  line-height: 1.5;
}

.quote-notes strong {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

@media (max-width: 640px) {
  .quote-meta {
    flex-direction: column;
    gap: 12px;
    padding: 24px 20px 16px;
  }

  .quote-meta-right {
    text-align: left;
  }

  .quote-to {
    padding: 0 20px 16px;
  }

  .quote-table thead th,
  .quote-table tbody td,
  .quote-table tfoot td {
    padding: 8px 10px;
    font-size: 0.75rem;
  }

  .quote-table tbody td:first-child {
    white-space: normal;
  }

  .quote-notes {
    padding: 16px 20px;
  }
}

/* Workflow options (non-sequential, like time tracking) */

.wf-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wf-option {
  padding: 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
}

.wf-option h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.wf-option p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Workflow group labels (All tab) */

.wf-group-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}

.wf-group-label:first-child {
  margin-top: 0;
}

/* Workflow tabs */

.wf-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.wf-tab {
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}

.wf-tab:hover {
  color: var(--text);
  background: var(--bg);
}

.wf-tab.active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.wf-panel {
  display: none;
}

.wf-panel.active {
  display: block;
}

/* Sticky nav */

.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 24px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.sticky-nav.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-title {
  font-weight: 600;
  white-space: nowrap;
}

.nav-links {
  display: none;
  gap: 24px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text);
  transition: background var(--transition);
}

.nav-burger:hover {
  background: rgba(0, 0, 0, 0.05);
}

.nav-burger.open svg line:nth-child(1) {
  transform: translateY(4.5px) rotate(45deg);
  transform-origin: center;
}

.nav-burger.open svg line:nth-child(2) {
  opacity: 0;
}

.nav-burger.open svg line:nth-child(3) {
  transform: translateY(-4.5px) rotate(-45deg);
  transform-origin: center;
}

.nav-burger svg line {
  transition: all 0.25s ease;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 48px;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
  padding: 8px 0;
}

.nav-dropdown.open {
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 12px 24px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-burger,
  .nav-dropdown {
    display: none !important;
  }
}

/* Scroll reveal animations */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.option-card.reveal {
  transform: translateY(30px) scale(0.98);
}

.option-card.reveal.revealed {
  transform: translateY(0) scale(1);
}

@media (prefers-color-scheme: dark) {
  .sticky-nav {
    background: rgba(29, 29, 31, 0.72);
    color: var(--text);
  }

  .comparison-table td.good {
    color: #30d158;
  }

  .comparison-table td.partial {
    color: #ffd60a;
  }

  .comparison-table td.bad {
    color: #ff453a;
  }

  .nav-burger:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-dropdown {
    background: rgba(29, 29, 31, 0.92);
  }

  .nav-dropdown a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .harvest-header {
    background: linear-gradient(135deg, #e04d1a 0%, #d85a2a 100%);
  }

  .erp-header {
    background: linear-gradient(135deg, #0a84ff 0%, #0064d2 100%);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .sticky-nav {
    transition: none;
  }
}

/* Footer */

footer {
  padding: 64px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 100%);
}

footer p {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

/* Responsive */

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

  .hero {
    padding: 72px 20px 36px;
  }

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

  .subtitle {
    font-size: 1rem;
  }

  .section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

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

  .option-body,
  .option-header {
    padding: 24px;
  }

  .option-header h3 {
    font-size: 1.25rem;
  }

  .rec-block {
    padding: 28px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 12px;
    font-size: 0.8125rem;
  }

  .cost-row {
    padding: 10px 12px;
    font-size: 0.8125rem;
  }

  footer {
    padding: 32px 20px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 48px 16px 24px;
  }

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

  .option-body,
  .option-header {
    padding: 16px;
  }

  .step-num {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }

  footer {
    padding: 32px 16px;
  }
}

@media (min-width: 768px) {
  .options-wrapper {
    display: flex;
    flex-direction: row;
    gap: 24px;
  }

  .option-card {
    flex: 1;
  }
}
