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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #111827;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ========================================
   Layout
   ======================================== */

.page-wrapper {
  min-height: 100vh;
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ========================================
   Header
   ======================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #d1d5db;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.header-logo img {
  border-radius: 0.5rem;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-link {
  font-weight: 600;
  color: #374151;
  transition: color 0.2s;
}

.header-link:hover {
  color: #111827;
}

.header-link--desktop {
  display: none;
}

@media (min-width: 768px) {
  .header-link--desktop {
    display: inline;
  }
}

.btn-header-cta {
  background-color: #8ecc4d;
  color: white;
  padding: 0.625rem 1.5rem;
  border-radius: 5rem;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.2s;
  text-decoration: none;
}

.btn-header-cta:hover {
  background-color: #7ab83d;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  padding: 6rem 0 0 0;
  position: relative;
  overflow: hidden;
}

.hero-text {
  text-align: center;
  margin-bottom: 3rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-title-accent {
  display: block;
  color: #8ecc4d;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 48rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.btn-primary {
  background-color: #8ecc4d;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: #7ab83d;
}

.btn-primary svg {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-secondary {
  border: 1px solid #d1d5db;
  color: #374151;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  transition: background-color 0.2s;
}

.btn-secondary:hover {
  background-color: #f9fafb;
}

.hero-media-section{
  margin-bottom: 5rem;
}

/* ========================================
   Animated URL Bar
   ======================================== */

.url-bar-wrapper {
  margin-bottom: 5rem;
}

.url-bar {
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
}

.browser-chrome {
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.browser-top {
  background-color: #f3f4f6;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.browser-dot--red {
  background-color: #f87171;
}
.browser-dot--yellow {
  background-color: #fbbf24;
}
.browser-dot--green {
  background-color: #4ade80;
}

.url-bar-inner {
  background-color: #ffffff;
  padding: 0.75rem 1rem;
}

.url-bar-field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #f9fafb;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e5e7eb;
}

.url-bar-field svg {
  width: 1rem;
  height: 1rem;
  color: #9ca3af;
  flex-shrink: 0;
}

.url-bar-text {
  display: flex;
  align-items: baseline;
  gap: 0;
  font-size: 0.875rem;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
    monospace;
}

.url-bar-text .protocol {
  color: #9ca3af;
}

.url-bar-text .subdomain {
  color: #8ecc4d;
  font-weight: 500;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.4s ease;
}

.url-bar-text .domain {
  color: #374151;
}

.url-bar-hint {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #6b7280;
}

@keyframes subdomain-in {
  from {
    opacity: 0;
    transform: translateY(-1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.subdomain-animate {
  animation: subdomain-in 0.3s ease-out forwards;
}

/* ========================================
   Hero Image
   ======================================== */

.hero-image {
  max-width: 56rem;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #e5e7eb;
}

.hero-image-container {
  position: relative;
  cursor: pointer;
}

.hero-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.hero-image-container:hover .hero-image-overlay {
  background-color: rgba(0, 0, 0, 0.6);
}

.play-button {
  width: 4rem;
  height: 4rem;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s;
}

.hero-image-container:hover .play-button {
  transform: scale(1.1);
}

.play-triangle {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 16px solid #8ecc4d;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}

/* ========================================
   Sections Common
   ======================================== */

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 48rem;
  margin: 0 auto;
}

/* ========================================
   Feature Showcases
   ======================================== */

.showcases {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .showcase {
    grid-template-columns: 9fr 11fr;
    gap: 5rem;
    min-height: 60vh;
  }

  .showcase.showcase--reverse {
    min-height: 40vh;
  }
}

.showcase-animation {
  background: linear-gradient(
    135deg,
    rgba(142, 204, 77, 0.05),
    rgba(142, 204, 77, 0.1),
    rgba(168, 217, 127, 0.15)
  );
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .showcase-animation {
    min-height: 400px;
  }
}

@media (min-width: 1024px) {
  .showcase-animation {
    max-width: 32rem;
    margin: 0 auto;
  }
}

.showcase-animation svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.showcase-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.showcase-description {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.75;
}

@media (min-width: 1024px) {
  .showcase--reverse .showcase-animation {
    order: 2;
  }
  .showcase--reverse .showcase-text {
    order: 1;
  }
}

/* ========================================
   SVG Animations
   ======================================== */

.svg-fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: svg-fade-up 0.6s ease-out forwards;
}

@keyframes svg-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.svg-fade-in {
  opacity: 0;
  animation: svg-fade-in 0.4s ease-out forwards;
}

@keyframes svg-fade-in {
  to {
    opacity: 1;
  }
}

.svg-scale-in {
  transform: scale(0);
  animation: svg-scale-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes svg-scale-in {
  to {
    transform: scale(1);
  }
}

.svg-draw {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: svg-draw 1s ease-out forwards;
}

@keyframes svg-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.svg-scale-x {
  transform: scaleX(0);
  transform-origin: left;
  animation: svg-scale-x 0.4s ease-out forwards;
}

@keyframes svg-scale-x {
  to {
    transform: scaleX(1);
  }
}

@keyframes bell-ring {
  0%,
  100% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-15deg);
  }
  60% {
    transform: rotate(15deg);
  }
  80% {
    transform: rotate(0deg);
  }
}

.bell-ring {
  animation: bell-ring 0.5s ease-in-out infinite;
  animation-delay: 1.2s;
  transform-origin: center top;
}

.bell-ring-2 {
  animation: bell-ring 0.5s ease-in-out infinite;
  animation-delay: 1.4s;
  transform-origin: center top;
}

@keyframes sparkle-pulse {
  0%,
  100% {
    r: 0;
    opacity: 0;
  }
  50% {
    r: 3;
    opacity: 1;
  }
}

.sparkle-1 {
  animation: sparkle-pulse 1.5s ease-in-out infinite;
  animation-delay: 2s;
}

.sparkle-2 {
  animation: sparkle-pulse 1.5s ease-in-out infinite;
  animation-delay: 2.3s;
}

@keyframes gear-spin {
  to {
    transform: rotate(360deg);
  }
}

.gear-spin {
  transform-origin: 320px 90px;
  animation: gear-spin 3s linear infinite;
}

@keyframes condition-pulse {
  0%,
  100% {
    r: 8;
  }
  50% {
    r: 10.4;
  }
}

.condition-pulse {
  animation: condition-pulse 0.6s ease-in-out infinite;
  animation-delay: 1.4s;
}

@keyframes draw-check {
  to {
    stroke-dashoffset: 0;
  }
}

.draw-check {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  animation: draw-check 0.3s ease-out forwards;
}

/* ========================================
   Job Alerts SVG Animation
   ======================================== */

#job-alerts-svg {
  width: 100%;
  height: auto;
}

#job-alerts-svg .ja-card-shadow {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

@keyframes ja-fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ja-scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes ja-floatUp {
  0%, 100% { transform: translateY(-5px); }
  50% { transform: translateY(5px); }
}

@keyframes ja-floatDown {
  0%, 100% { transform: translateY(5px); }
  50% { transform: translateY(-5px); }
}

@keyframes ja-floatMid {
  0%, 100% { transform: translateY(-3px); }
  50% { transform: translateY(7px); }
}

@keyframes ja-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes ja-sparkle {
  0% { opacity: 0; transform: scale(0) translate(0, 0); }
  50% { opacity: 1; transform: scale(1) translate(var(--sparkle-x), -30px); }
  100% { opacity: 0; transform: scale(0) translate(var(--sparkle-x), var(--sparkle-y)); }
}

@keyframes ja-floatEmail {
  0% { opacity: 0; transform: translate(-50px, 0); }
  30% { opacity: 0.6; }
  100% { opacity: 0; transform: translate(100px, var(--email-y)); }
}

#job-alerts-svg .ja-job-cards {
  animation: ja-fadeInUp 0.8s ease-out 0.2s both;
}

#job-alerts-svg .ja-job-card-1 {
  animation: ja-floatUp 4s ease-in-out infinite;
}

#job-alerts-svg .ja-job-card-2 {
  animation: ja-floatDown 3.5s ease-in-out 0.5s infinite;
}

#job-alerts-svg .ja-job-card-3 {
  animation: ja-floatMid 4.5s ease-in-out 1s infinite;
}

#job-alerts-svg .ja-envelope {
  animation: ja-scaleIn 0.6s ease-out 0.4s both;
}

#job-alerts-svg .ja-envelope-flap {
  animation: ja-fadeInUp 0.4s ease-out 0.8s both;
}

#job-alerts-svg .ja-envelope-fold {
  animation: ja-fadeInUp 0.5s ease-out 0.9s both;
}

#job-alerts-svg .ja-document {
  animation: ja-fadeInUp 0.6s ease-out 1.2s both;
}

#job-alerts-svg .ja-notification-badge {
  animation: ja-scaleIn 0.4s ease-out 1.4s both;
}

#job-alerts-svg .ja-notification-pulse {
  animation: ja-pulse 2s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

#job-alerts-svg .ja-sparkle-0 {
  --sparkle-x: -30px;
  --sparkle-y: -15px;
  animation: ja-sparkle 2s ease-out 1.5s infinite;
  transform-box: fill-box;
  transform-origin: center;
}

#job-alerts-svg .ja-sparkle-1 {
  --sparkle-x: 0px;
  --sparkle-y: -15px;
  animation: ja-sparkle 2s ease-out 1.8s infinite;
  transform-box: fill-box;
  transform-origin: center;
}

#job-alerts-svg .ja-sparkle-2 {
  --sparkle-x: 30px;
  --sparkle-y: 0px;
  animation: ja-sparkle 2s ease-out 2.1s infinite;
  transform-box: fill-box;
  transform-origin: center;
}

#job-alerts-svg .ja-checkmark {
  animation: ja-scaleIn 0.4s ease-out 1.8s both;
}

#job-alerts-svg .ja-email-0 {
  --email-y: -30px;
  animation: ja-floatEmail 3s ease-out 2s infinite;
}

#job-alerts-svg .ja-email-1 {
  --email-y: -20px;
  animation: ja-floatEmail 3s ease-out 2.8s infinite;
}

#job-alerts-svg .ja-email-2 {
  --email-y: -10px;
  animation: ja-floatEmail 3s ease-out 3.6s infinite;
}

/* ========================================
   Job Screening SVG Animation
   ======================================== */

#job-screening-svg {
  width: 100%;
  height: auto;
}

@keyframes js-fadeSlideIn {
  from { opacity: 0; transform: translateX(-100px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes js-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes js-springScale {
  0%   { transform: scale(0); }
  50%  { transform: scale(1.12); }
  70%  { transform: scale(0.92); }
  85%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}

@keyframes js-scaleIn {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

@keyframes js-drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes js-pulseOpacity {
  0%, 100% { opacity: 0; }
  50%      { opacity: 0.6; }
}

#job-screening-svg .js-fade-slide {
  opacity: 0;
  animation: js-fadeSlideIn 0.6s ease both;
}

#job-screening-svg .js-fade-in {
  opacity: 0;
  animation: js-fadeIn 0.4s ease both;
}

#job-screening-svg .js-spring-scale {
  transform: scale(0);
  animation: js-springScale 0.5s linear both;
}

#job-screening-svg .js-scale-in {
  transform: scale(0);
  animation: js-scaleIn 0.3s ease both;
}

#job-screening-svg .js-draw-line {
  animation: js-drawLine 0.4s ease both;
}

#job-screening-svg .js-pulse {
  opacity: 0;
  animation: js-pulseOpacity 2s ease-in-out infinite;
}

@keyframes js-pulseScale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@keyframes js-pulseGlow {
  0%, 100% { 
    filter: drop-shadow(0 0 6px rgba(220, 38, 38, 0.5)) drop-shadow(0 0 12px rgba(220, 38, 38, 0.3));
  }
  50% { 
    filter: drop-shadow(0 0 12px rgba(220, 38, 38, 0.9)) drop-shadow(0 0 20px rgba(220, 38, 38, 0.6));
  }
}

@keyframes js-pulseBorder {
  0%, 100% { 
    stroke-width: 2;
    opacity: 1;
  }
  50% { 
    stroke-width: 3.5;
    opacity: 1;
  }
}

@keyframes js-pulseCircle {
  0%, 100% { 
    r: 12;
    stroke-width: 2;
  }
  50% { 
    r: 15;
    stroke-width: 3;
  }
}

@keyframes js-pulseInnerCircle {
  0%, 100% { 
    r: 5;
  }
  50% { 
    r: 7;
  }
}

@keyframes js-pulseQuestionMark {
  0%, 100% { 
    transform: scale(1);
    opacity: 1;
  }
  50% { 
    transform: scale(1.15);
    opacity: 1;
  }
}

#job-screening-svg .js-pulse-loop {
  animation: js-pulseScale 1.5s ease-in-out infinite;
  transform-origin: center;
  animation-delay: 2s;
}

#job-screening-svg .js-pulse-glow {
  animation: js-pulseGlow 1.5s ease-in-out infinite;
  animation-delay: 2s;
}

#job-screening-svg .js-pulse-border {
  animation: js-pulseBorder 1.5s ease-in-out infinite;
  animation-delay: 2s;
}

#job-screening-svg .js-pulse-circle {
  animation: js-pulseCircle 1.5s ease-in-out infinite;
  animation-delay: 2s;
}

#job-screening-svg .js-pulse-inner-circle {
  animation: js-pulseInnerCircle 1.5s ease-in-out infinite;
  animation-delay: 2s;
}

#job-screening-svg .js-pulse-question {
  animation: js-pulseQuestionMark 1.5s ease-in-out infinite;
  transform-origin: 250px 300px;
  animation-delay: 2s;
}

/* ========================================
   Dynamic Questions Infographic
   ======================================== */

#dynamic-questions-svg {
  display: block;
}

#dynamic-questions-svg .dq-tab {
  cursor: pointer;
  transform-box: fill-box;
  transform-origin: center;
}

#dynamic-questions-svg .dq-tab:active {
  transform: scale(0.97);
}

#dynamic-questions-svg .dq-tab-bg {
  stroke-width: 1;
  transition: fill 0.2s, stroke 0.2s;
}

#dynamic-questions-svg .dq-tab-text {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  font-weight: 500;
  pointer-events: none;
  user-select: none;
  transition: fill 0.2s;
}

#dq-indicator {
  fill: var(--dq-color);
  transition: fill 0.3s ease;
}

#dq-bars {
  transition: opacity 0.15s ease-out;
}

.dq-bar {
  fill: var(--dq-color);
}

@keyframes dq-bar-enter {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
}

#dq-button {
  fill: var(--dq-color);
}

#dq-progress {
  fill: var(--dq-color);
  transform-origin: left;
  transform-box: fill-box;
}

@keyframes dq-progress-fill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ========================================
   Job Branding SVG Animation
   ======================================== */

#job-branding-svg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 10;
  border-radius: 0.75rem;
  overflow: hidden;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
}

#job-branding-svg .jb-wireframe {
  will-change: opacity, transform;
}

#job-branding-svg .jb-wireframe-0 {
  animation: jb-show0 10.5s ease-in-out infinite;
}

#job-branding-svg .jb-wireframe-1 {
  animation: jb-show1 10.5s ease-in-out infinite;
}

#job-branding-svg .jb-wireframe-2 {
  animation: jb-show2 10.5s ease-in-out infinite;
}

@keyframes jb-show0 {
  0%      { opacity: 0; transform: translateY(6px); }
  5.71%   { opacity: 1; transform: translateY(0); }
  27.62%  { opacity: 1; transform: translateY(0); }
  33.33%  { opacity: 0; transform: translateY(-6px); }
  100%    { opacity: 0; transform: translateY(-6px); }
}

@keyframes jb-show1 {
  0%      { opacity: 0; transform: translateY(6px); }
  33.33%  { opacity: 0; transform: translateY(6px); }
  39.05%  { opacity: 1; transform: translateY(0); }
  60.95%  { opacity: 1; transform: translateY(0); }
  66.67%  { opacity: 0; transform: translateY(-6px); }
  100%    { opacity: 0; transform: translateY(-6px); }
}

@keyframes jb-show2 {
  0%      { opacity: 0; transform: translateY(6px); }
  66.67%  { opacity: 0; transform: translateY(6px); }
  72.38%  { opacity: 1; transform: translateY(0); }
  94.29%  { opacity: 1; transform: translateY(0); }
  100%    { opacity: 0; transform: translateY(-6px); }
}

/* ========================================
   Feature List (Complete Package)
   ======================================== */

.features-section {
  background-color: #f9fafb;
  padding: 5rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    min-height: 36rem;
  }
}

.feature-item {
  display: flex;
  gap: 0.75rem;
  min-height: 0;
}

.feature-item-content {
  flex: 1;
  min-width: 0;
}

.feature-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-color: rgba(142, 204, 77, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 1rem;
  height: 1rem;
  color: #8ecc4d;
}

.feature-title {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.feature-description {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.5;
}

.features-footer {
  margin-top: 3rem;
  text-align: center;
}

.features-footer p {
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.btn-text-green {
  color: #8ecc4d;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
}

.btn-text-green:hover {
  color: #7ab83d;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
  padding: 5rem 0;
}

.cta-banner {
  background-color: #8ecc4d;
  border-radius: 1rem;
  padding: 4rem;
  text-align: center;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  background-color: white;
  color: #8ecc4d;
  padding: 1rem 2rem;
  border-radius: 5rem;
  font-size: 1.125rem;
  font-weight: 600;
  transition: background-color 0.2s;
}

.btn-cta:hover {
  background-color: #f9fafb;
}

/* ========================================
   Footer
   ======================================== */

.site-footer {
  border-top: 1px solid #e5e7eb;
  background-color: #f9fafb;
}

.footer-inner {
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 2rem;
  height: 2rem;
  background-color: #8ecc4d;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo svg {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}

.footer-brand-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.footer-tagline {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-heading {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: #4b5563;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #111827;
}

.footer-bottom {
  text-align: center;
  font-size: 0.875rem;
  color: #4b5563;
}

/* ========================================
   Comparison Section
   ======================================== */

.comparison-section {
  padding: 5rem 0 3rem;
  overflow: hidden;
}

.comparison-header {
  max-width: 48rem;
  margin: 0 auto;
  padding-bottom: 1.5rem;
  text-align: center;
}

.comparison-title {
  font-size: 3rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.comparison-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 72rem;
  margin: 0 auto;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Columns */
.comparison-col {
  position: relative;
  padding: 2rem;
}

@media (min-width: 640px) {
  .comparison-col {
    padding: 2.5rem;
  }
}

.comparison-col__content {
  position: relative;
}

.comparison-col--dev {
  background: linear-gradient(135deg, #fafafa, rgba(250, 249, 249, 0.6), rgba(250, 250, 250, 0.4));
  border-right: 1px solid rgba(228, 228, 231, 0.5);
}

.comparison-col__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 1px 1px, #71717a 1px, transparent 0);
  background-size: 24px 24px;
}

.comparison-col--jobs {
  background: linear-gradient(135deg, rgba(142, 204, 77, 0.08), #ffffff, rgba(142, 204, 77, 0.04));
}

.comparison-col__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}

.comparison-col__glow--top {
  top: 0;
  right: 0;
  width: 10rem;
  height: 10rem;
  background-color: rgba(142, 204, 77, 0.15);
}

.comparison-col__glow--bottom {
  bottom: 0;
  left: 0;
  width: 8rem;
  height: 8rem;
  background-color: rgba(142, 204, 77, 0.12);
}

/* Column header */
.comparison-col__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.comparison-col__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comparison-col__icon--dev {
  background-color: #f4f4f5;
  border: 1px solid #e4e4e7;
  color: #71717a;
}

.comparison-col__icon--jobs {
  background-color: rgba(142, 204, 77, 0.15);
  border: 1px solid rgba(142, 204, 77, 0.3);
  color: #8ecc4d;
}

.comparison-col__title {
  font-size: 1.125rem;
  margin-bottom: 0;
  line-height: 1.3;
}

.comparison-col__title--dev {
  color: #27272a;
}

.comparison-col__title--jobs {
  color: #3d6e10;
}

.comparison-col__label {
  font-size: 0.75rem;
  margin-bottom: 0;
}

.comparison-col__label--dev {
  color: #71717a;
}

.comparison-col__label--jobs {
  color: rgba(142, 204, 77, 0.85);
}

.comparison-recommended-badge {
  margin-left: auto;
  background-color: #8ecc4d;
  color: white;
  font-size: 0.625rem;
  padding: 0.25rem 0.625rem;
  border-radius: 5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Status cards */
.comparison-status-card {
  margin: 2rem 0;
  border-radius: 1rem;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.comparison-status-card--dev {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(228, 228, 231, 0.6);
}

.comparison-status-card--jobs {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(142, 204, 77, 0.3);
}

.comparison-status-card__label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.comparison-status-card__label--dev {
  color: #a1a1aa;
}

.comparison-status-card__label--jobs {
  color: rgba(142, 204, 77, 0.7);
}

/* Cycling status */
.comparison-cycling-status {
  height: 1.75rem;
  overflow: hidden;
  position: relative;
}

.comparison-cycling-status__inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #71717a;
  transition: opacity 0.3s, transform 0.3s;
}

.comparison-cycling-status__spinner {
  color: #a1a1aa;
  animation: cmp-spin 3s linear infinite;
  flex-shrink: 0;
}

@keyframes cmp-spin {
  to { transform: rotate(360deg); }
}

/* Live status */
.comparison-live-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #8ecc4d;
  height: 1.75rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.comparison-live-status.is-visible {
  opacity: 1;
}

/* Timeline / Progress */
.comparison-timeline {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.comparison-timeline__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  margin-bottom: 0.375rem;
}

.comparison-col--dev .comparison-timeline__row {
  color: #71717a;
}

.comparison-col--jobs .comparison-timeline__row {
  color: rgba(90, 154, 31, 0.7);
}

.comparison-timeline__counter {
  font-variant-numeric: tabular-nums;
}

.comparison-progress {
  width: 100%;
  height: 0.5rem;
  border-radius: 5rem;
  overflow: hidden;
}

.comparison-progress--dev {
  background-color: #f4f4f5;
}

.comparison-progress--jobs {
  background-color: rgba(142, 204, 77, 0.15);
}

.comparison-progress__bar {
  height: 100%;
  border-radius: 5rem;
  width: 0;
  transition: width 2.5s ease-out;
}

.comparison-progress__bar--dev {
  background: linear-gradient(to right, #d4d4d8, #a1a1aa);
}

.comparison-progress__bar--jobs {
  background: linear-gradient(to right, #8ecc4d, #7ab83d);
}

.comparison-timeline__note {
  font-size: 0.75rem;
  margin-top: 0.375rem;
}

.comparison-timeline__note--dev {
  color: #a1a1aa;
}

.comparison-timeline__note--jobs {
  color: rgba(142, 204, 77, 0.7);
}

/* Comparison lists */
.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.comparison-list__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.comparison-col--dev .comparison-list__item {
  color: #52525b;
}

.comparison-col--jobs .comparison-list__item {
  color: #111827;
}

.comparison-list__icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comparison-list__icon--dev {
  background-color: #f4f4f5;
  border: 1px solid rgba(228, 228, 231, 0.6);
  color: #a1a1aa;
}

.comparison-list__icon--jobs {
  background-color: rgba(142, 204, 77, 0.12);
  border: 1px solid rgba(142, 204, 77, 0.25);
  color: #8ecc4d;
}

/* Banner */
.comparison-banner {
  max-width: 72rem;
  margin: 1.5rem auto 0;
  border-radius: 1rem;
  background: linear-gradient(to right, #8ecc4d, #7ab83d);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .comparison-banner {
    flex-direction: row;
  }
}

.comparison-banner__left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.comparison-banner__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.comparison-banner__title {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0;
}

.comparison-banner__sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.comparison-banner__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

@media (min-width: 640px) {
  .comparison-banner__tags {
    margin-left: auto;
  }
}

.comparison-banner__tag {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Scroll-triggered animations */
.cmp-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.cmp-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cmp-animate-left {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.cmp-animate-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.cmp-animate-right {
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.cmp-animate-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

span.feature-title-small{
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  background-color: #8ecc4d;
  padding: 2px 5px;
  border-radius: 5rem;
  display: inline-block;
  line-height: 1.5;
  vertical-align: middle;
  margin-left: 0.375rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}