.hero_heroBackground__3BWCL {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 40%, #f8fafc 100%);
}

/* Gradient fade to next section */
.hero_heroFade__NZ7Ua {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
  pointer-events: none;
}

/* Stripe-inspired bold headline styling */
.hero_heroHeadline__2tFki {
  font-size: clamp(3rem, 8vw, 5rem); /* 48px to 80px responsive */
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.hero_heroTitle__yot3r {
  display: block;
  cursor: default;
}

.hero_logoCard__uawg4 {
  /* Subtle lift and shadow refinement on hover */
  transition: transform 200ms ease, box-shadow 200ms ease;
  position: relative;
  background: #fff;
}

.hero_logoCard__uawg4:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Gradient border reveal on hover (matches primary blue gradient) */
.hero_logoCard__uawg4::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px; /* border thickness */
  background: linear-gradient(90deg, #60A5FA, #2563EB);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}

.hero_logoCard__uawg4:hover::before {
  opacity: 1;
}

.hero_heroLine__Q1ChQ {
  display: block;
  opacity: 0;
  animation: hero_heroLineIn__GeHSX 0.6s ease-out forwards;
}

.hero_heroSubtitle__6fpFp {
  opacity: 0;
  animation: hero_heroLineIn__GeHSX 0.6s ease-out 0.2s forwards;
}

.hero_heroSubtext__Usjqi {
  opacity: 0;
  animation: hero_heroLineIn__GeHSX 0.6s ease-out 0.3s forwards;
}

.hero_heroFeatures__mRjEB {
  opacity: 0;
  animation: hero_heroLineIn__GeHSX 0.5s ease-out 0.4s forwards;
}

.hero_featureBadge__li_cH {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  opacity: 0;
  animation: hero_featureBadgeIn__oFMze 0.5s ease-out var(--delay, 0.4s) forwards;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero_featureBadge__li_cH:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}

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

.hero_heroConclusion__sIXVT {
  opacity: 0;
  animation: hero_heroConclusionIn__ji2yB 0.6s ease-out 0.8s forwards;
}

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

.hero_heroChat__BDKA9 {
  opacity: 0;
  animation: hero_heroLineIn__GeHSX 0.6s ease-out 0.3s forwards;
}

.hero_heroProblem__wc2ES {
  opacity: 0;
  animation: hero_chatBubbleIn__1sB1Q 0.5s ease-out 0.4s forwards;
  transform: translateX(-20px);
}

.hero_heroSolution__aBZXA {
  opacity: 0;
  animation: hero_chatBubbleIn__1sB1Q 0.5s ease-out 0.7s forwards;
  transform: translateX(20px);
}

@keyframes hero_chatBubbleIn__1sB1Q {
  from {
    opacity: 0;
    transform: translateX(var(--chat-offset, 0));
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero_heroProblem__wc2ES {
  --chat-offset: -20px;
}

.hero_heroSolution__aBZXA {
  --chat-offset: 20px;
}

/* Chat bubble cards */
.hero_chatBubbleLeft__oSkvj {
  background: linear-gradient(135deg, #fef2f2 0%, #fafafa 100%);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(239, 68, 68, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero_chatBubbleLeft__oSkvj:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(239, 68, 68, 0.35);
}

.hero_chatBubbleRight__2ZyzI {
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
  border: 2px solid rgba(59, 130, 246, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero_chatBubbleRight__2ZyzI:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.18);
  border-color: rgba(59, 130, 246, 0.4);
}

.hero_heroPlan__oQ6ob {
  opacity: 0;
  animation: hero_heroLineIn__GeHSX 0.6s ease-out 0.95s forwards;
}

.hero_heroButtons__epGpQ {
  opacity: 0;
  animation: hero_heroLineIn__GeHSX 0.6s ease-out 0.9s forwards;
}

.hero_heroVideo__OvaNS {
  opacity: 0;
  animation: hero_heroLineIn__GeHSX 0.6s ease-out 1.1s forwards;
  box-shadow:
    0 0 20px rgba(96, 165, 250, 0.25),
    0 0 40px rgba(96, 165, 250, 0.15),
    0 0 60px rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.2);
  transition: box-shadow 0.4s ease;
  position: relative;
  z-index: 2;
}

.hero_heroVideo__OvaNS:hover {
  box-shadow:
    0 0 25px rgba(96, 165, 250, 0.35),
    0 0 50px rgba(96, 165, 250, 0.2),
    0 0 80px rgba(59, 130, 246, 0.15);
}

@keyframes hero_heroLineIn__GeHSX {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero_wordChaos__eIZ_u {
  position: relative;
  display: inline-block;
  background: linear-gradient(
    90deg,
    #60A5FA,
    #2563EB,
    #a5b4fc,
    #60A5FA
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 14px rgba(148, 163, 184, 0.5);
  opacity: 0.85;
  filter: blur(1px);
  transition: text-shadow 250ms ease, transform 200ms ease, filter 250ms ease,
    opacity 250ms ease;
  background-size: 260% 100%;
  animation: hero_clarityWave___1QHx 8s ease-in-out infinite;
}

.hero_wordClarity__y_jxH {
  position: relative;
  display: inline-block;
  background: linear-gradient(
    90deg,
    #60A5FA,
    #2563EB,
    #a5b4fc,
    #60A5FA
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 10px rgba(96, 165, 250, 0.2);
  transition: text-shadow 250ms ease, transform 200ms ease;
  background-size: 260% 100%;
  animation: hero_clarityWave___1QHx 8s ease-in-out infinite;
}

.hero_heroTitle__yot3r:hover .hero_wordChaos__eIZ_u {
  transform: translateY(-1px) scale(1.02);
  text-shadow: 0 0 20px rgba(148, 163, 184, 0.75);
  filter: blur(0.3px);
  opacity: 0.98;
}

.hero_heroTitle__yot3r:hover .hero_wordClarity__y_jxH {
  transform: translateY(-1px);
  text-shadow: 0 0 22px rgba(96, 165, 250, 0.9);
}

@keyframes hero_clarityWave___1QHx {
  0% {
    background-position: 0% 50%;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.3);
  }
  50% {
    background-position: 100% 50%;
    text-shadow: 0 0 22px rgba(96, 165, 250, 0.85);
  }
  100% {
    background-position: 0% 50%;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.3);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero_heroLine__Q1ChQ,
  .hero_heroSubtitle__6fpFp,
  .hero_heroSubtext__Usjqi,
  .hero_heroFeatures__mRjEB,
  .hero_featureBadge__li_cH,
  .hero_heroButtons__epGpQ {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero_featureBadge__li_cH {
    transition: none;
  }

  .hero_wordChaos__eIZ_u,
  .hero_wordClarity__y_jxH {
    animation: none;
  }

  .hero_chatBubbleLeft__oSkvj,
  .hero_chatBubbleRight__2ZyzI {
    transition: none;
  }
}

/* How It Works - Interactive Stepper & Mobile Carousel */

/* ===== Mobile Styles ===== */

.how-it-works_mobileContainer__ySQks {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.how-it-works_mobileVisible__wk0eH {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Mini Stepper */
.how-it-works_mobileStepper__hswo7 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  position: relative;
}

.how-it-works_mobileStepNode__tEcb0 {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 2px solid #e2e8f0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.3s ease;
}

.how-it-works_mobileStepNode__tEcb0::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  width: 8px;
  height: 2px;
  background: #e2e8f0;
  transform: translateY(-50%);
}

.how-it-works_mobileStepNode__tEcb0:last-of-type::after {
  display: none;
}

.how-it-works_mobileStepNodeActive__LRFto {
  border-color: var(--step-color, #2196F3);
  background: var(--step-bg, #eff6ff);
  transform: scale(1.1);
  box-shadow: 0 0 0 3px var(--step-bg, rgba(33, 150, 243, 0.2));
}

.how-it-works_mobileStepNodeActive__LRFto::after {
  background: var(--step-color, #2196F3);
}

.how-it-works_mobileStepNodePast__xAe2J {
  border-color: var(--step-color, #2196F3);
  background: var(--step-color, #2196F3);
}

.how-it-works_mobileStepNodePast__xAe2J::after {
  background: var(--step-color, #2196F3);
}

.how-it-works_mobileStepNodePast__xAe2J .how-it-works_mobileStepIcon__D7g4D {
  color: white;
}

.how-it-works_mobileStepIcon__D7g4D {
  width: 18px;
  height: 18px;
  color: #94a3b8;
  transition: color 0.3s ease;
}

.how-it-works_mobileStepNodeActive__LRFto .how-it-works_mobileStepIcon__D7g4D {
  color: var(--step-color, #2196F3);
}

/* Mobile Step Labels */
.how-it-works_mobileStepLabels__mKDO3 {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.how-it-works_mobileStepLabel__1Px0O {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.9);
  position: absolute;
}

.how-it-works_mobileStepLabelActive__QOInA {
  opacity: 1;
  transform: scale(1);
  position: relative;
  color: var(--label-color, #2196F3);
}

/* Mobile Content Carousel */
.how-it-works_mobileCarouselWrapper__eervm {
  overflow: hidden;
  margin: 0 -16px;
}

.how-it-works_mobileCarouselSlides__CHBW3 {
  display: flex;
  touch-action: pan-y pinch-zoom;
}

.how-it-works_mobileCarouselSlide__dOLR7 {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 16px;
}

/* Mobile Content Panel */
.how-it-works_mobileContentPanel__qmlHz {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 10px 20px rgba(0, 0, 0, 0.04);
  position: relative;
}

.how-it-works_mobileContentPanel__qmlHz::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--panel-color, #2196F3);
}

.how-it-works_mobileContentHeader__bBgHJ {
  padding: 20px 16px 16px;
  text-align: center;
  border-bottom: 1px solid #f1f5f9;
}

.how-it-works_mobileContentBadge__ev6Mg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 16px;
  color: white;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.how-it-works_mobileContentHeadline__F9BkM {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.how-it-works_mobileContentDescription__4M924 {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Mobile Features */
.how-it-works_mobileContentFeatures__zsV72 {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.how-it-works_mobileFeatureItem__ZWmjy {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: white;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

.how-it-works_mobileFeatureIcon__N9zI4 {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how-it-works_mobileFeatureSvg__aMsP5 {
  width: 18px;
  height: 18px;
}

.how-it-works_mobileFeatureDetails__jnMCs {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.how-it-works_mobileFeatureTitle__7bOw7 {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
}

.how-it-works_mobileFeatureDescription__hf_K1 {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
}

.how-it-works_mobileFeatureDescription__hf_K1 strong {
  color: #374151;
  font-weight: 600;
}

.how-it-works_mobileContentFooter__59ab0 {
  padding: 12px 16px;
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
  font-size: 12px;
  color: #475569;
  text-align: center;
  font-weight: 500;
}

/* Mobile Navigation Controls */
.how-it-works_mobileControls__XdEEm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 0 8px;
}

.how-it-works_mobileNavButton__p4vo2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e2e8f0;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.how-it-works_mobileNavButton__p4vo2:active {
  transform: scale(0.95);
  background: #f8fafc;
}

.how-it-works_mobileSwipeHint__3Rr5d {
  font-size: 12px;
  color: #94a3b8;
}

/* ===== Desktop Stepper Styles ===== */

.how-it-works_desktopContainer__IjNn0 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.how-it-works_desktopVisible__c2sBy {
  opacity: 1;
  transform: translateY(0);
}

/* Stepper Navigation */
.how-it-works_stepper__oRWWc {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
  position: relative;
}

.how-it-works_stepperItem__xDD3c {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
  max-width: 180px;
}

.how-it-works_stepperConnector__ixZHP {
  position: absolute;
  top: 24px;
  right: 50%;
  width: 100%;
  height: 3px;
  background: #e2e8f0;
  z-index: 0;
  transition: background 0.4s ease;
}

.how-it-works_stepperConnectorActive__z9psW {
  background: linear-gradient(90deg, var(--connector-color, #2196F3), var(--connector-color, #2196F3));
}

/* Step Node */
.how-it-works_stepperNode__a4nsf {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 3px solid #e2e8f0;
  cursor: pointer;
  z-index: 1;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.how-it-works_stepperNode__a4nsf:hover {
  border-color: var(--step-color, #2196F3);
  transform: scale(1.08);
}

.how-it-works_stepperNodeActive__f_cmN {
  border-color: var(--step-color, #2196F3);
  box-shadow: 0 0 0 4px var(--panel-color-light, rgba(33, 150, 243, 0.15));
}

.how-it-works_stepperNodePast__uXGDB {
  border-color: var(--step-color, #2196F3);
  background: var(--step-color, #2196F3);
}

.how-it-works_stepperNodePast__uXGDB .how-it-works_stepperNodeIcon__bBJMu {
  color: white;
}

.how-it-works_stepperNodeInner__8tL_t {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.how-it-works_stepperNodeIcon__bBJMu {
  width: 20px;
  height: 20px;
  color: #64748b;
  transition: color 0.3s ease;
}

.how-it-works_stepperNodeActive__f_cmN .how-it-works_stepperNodeIcon__bBJMu {
  color: var(--step-color, #2196F3);
}

/* Progress Ring */
.how-it-works_progressRing__BswOb {
  position: absolute;
  width: 48px;
  height: 48px;
  transform: rotate(-90deg);
  pointer-events: none;
}

.how-it-works_progressRingBg__mfZRE {
  fill: none;
  stroke: #e2e8f0;
  stroke-width: 3;
}

.how-it-works_progressRingFill__0Zhil {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 138.2;
  transition: stroke-dashoffset 0.1s linear;
}

/* Stepper Labels */
.how-it-works_stepperLabel__Na1Y5 {
  margin-top: 12px;
  text-align: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.how-it-works_stepperLabelActive__8uE1A {
  opacity: 1;
}

.how-it-works_stepperNumber__hBp1g {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.how-it-works_stepperTitle__oOr5X {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  transition: color 0.3s ease;
}

/* Content Panel */
.how-it-works_contentPanel__Tt_Gm {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 10px 20px rgba(0, 0, 0, 0.04),
    0 20px 40px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.how-it-works_contentPanel__Tt_Gm::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--panel-color, #2196F3), var(--panel-color, #2196F3));
  border-radius: 16px 16px 0 0;
}

/* Inner content wrapper for animations */
.how-it-works_contentInner__yJlyg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Content Text Side */
.how-it-works_contentText__oKAX3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.how-it-works_contentBadge__sstFE {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  width: fit-content;
  margin-bottom: 16px;
}

.how-it-works_contentHeadline__i9ZgP {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.how-it-works_contentDescription__n3VLL {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Content Features Side */
.how-it-works_contentFeatures__qGHbw {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.how-it-works_featureItem__dmCSz {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.how-it-works_featureItem__dmCSz:hover {
  border-color: var(--panel-color, #2196F3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateX(4px);
}

.how-it-works_featureIcon__m9Gbu {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how-it-works_featureSvg__G_jjt {
  width: 20px;
  height: 20px;
}

.how-it-works_featureDetails___q_zM {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.how-it-works_featureTitle__ujBqw {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}

.how-it-works_featureDescription__zM0IR {
  font-size: 13px;
  color: #64748b;
}

.how-it-works_featureDescription__zM0IR strong {
  color: #374151;
  font-weight: 600;
}

.how-it-works_contentFooter__Rnj4G {
  margin-top: 8px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 10px;
  font-size: 13px;
  color: #475569;
  text-align: center;
  font-weight: 500;
}

/* Desktop Controls */
.how-it-works_desktopControls__j5lri {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.how-it-works_navButton__6nKx6 {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.how-it-works_navButton__6nKx6:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #374151;
}

.how-it-works_navButton__6nKx6:active {
  transform: scale(0.98);
}

.how-it-works_playPauseButton__JSOIR {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.how-it-works_playPauseButton__JSOIR:hover {
  background: #e2e8f0;
  color: #374151;
}

/* Tablet adjustments */
@media (max-width: 900px) {
  .how-it-works_contentPanel__Tt_Gm {
    padding: 24px;
  }

  .how-it-works_contentInner__yJlyg {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .how-it-works_contentText__oKAX3 {
    text-align: center;
  }

  .how-it-works_contentBadge__sstFE {
    margin-left: auto;
    margin-right: auto;
  }

  .how-it-works_contentHeadline__i9ZgP {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .how-it-works_desktopContainer__IjNn0,
  .how-it-works_mobileContainer__ySQks {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .how-it-works_stepperNode__a4nsf,
  .how-it-works_featureItem__dmCSz,
  .how-it-works_navButton__6nKx6,
  .how-it-works_playPauseButton__JSOIR,
  .how-it-works_mobileStepNode__tEcb0,
  .how-it-works_mobileNavButton__p4vo2,
  .how-it-works_mobileStepLabel__1Px0O {
    transition: none;
  }


  .how-it-works_progressRingFill__0Zhil {
    transition: none;
  }

  .how-it-works_mobileStepNodeActive__LRFto {
    transform: none;
  }
}

/* Background grid pattern */
.trade-sustainably_gridBackground__TVF5w {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@keyframes trade-sustainably_gridGlow__El2Jf {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Reveal-on-scroll animation */
.trade-sustainably_reveal__TL7iG {
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 500ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--delay, 0ms),
    transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--delay, 0ms);
}

.trade-sustainably_visible__Bbbii {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .trade-sustainably_reveal__TL7iG {
    opacity: 1;
    transform: none;
  }
}

/* Feature card styling - Premium glass-morphism design */
.trade-sustainably_card__acXQ5 {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(248, 250, 252, 0.9) 50%,
    rgba(241, 245, 249, 0.85) 100%
  ) !important;
  border-radius: 1rem !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.02),
    0 4px 8px rgba(0, 0, 0, 0.03),
    0 8px 16px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.02) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 280ms ease,
    border-color 280ms ease;
}

.trade-sustainably_card__acXQ5:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(33, 150, 243, 0.2) !important;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.02),
    0 8px 16px rgba(0, 0, 0, 0.04),
    0 16px 32px rgba(33, 150, 243, 0.08),
    0 24px 48px rgba(33, 150, 243, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.02) !important;
}

/* Gradient border glow on hover */
.trade-sustainably_card__acXQ5::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(116, 176, 245, 0.6) 0%,
    rgba(33, 150, 243, 0.8) 50%,
    rgba(21, 101, 192, 0.6) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

.trade-sustainably_card__acXQ5:hover::before {
  opacity: 1;
}

/* Subtle inner glow */
.trade-sustainably_card__acXQ5::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(1rem - 1px);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.5) 0%,
    transparent 50%
  );
  pointer-events: none;
  opacity: 0.8;
  transition: opacity 280ms ease;
}

.trade-sustainably_card__acXQ5:hover::after {
  opacity: 0.4;
}

/* Icon wrapper - premium styling */
.trade-sustainably_iconWrap__Aahmj {
  background: linear-gradient(
    135deg,
    rgba(239, 245, 254, 1) 0%,
    rgba(219, 234, 254, 0.8) 100%
  );
  box-shadow:
    0 2px 4px rgba(33, 150, 243, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    background 320ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 320ms ease;
}

.trade-sustainably_card__acXQ5:hover .trade-sustainably_iconWrap__Aahmj {
  background: linear-gradient(
    135deg,
    #74b0f5 0%,
    #2196f3 50%,
    #1976d2 100%
  );
  transform: scale(1.08) rotate(-3deg);
  box-shadow:
    0 8px 20px rgba(33, 150, 243, 0.35),
    0 4px 8px rgba(33, 150, 243, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.trade-sustainably_iconWrap__Aahmj svg {
  color: #2196f3;
  transition: color 320ms ease, filter 320ms ease;
}

.trade-sustainably_card__acXQ5:hover .trade-sustainably_iconWrap__Aahmj svg {
  color: #ffffff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .trade-sustainably_card__acXQ5 {
    transition: none;
  }

  .trade-sustainably_card__acXQ5:hover {
    transform: none;
  }

  .trade-sustainably_card__acXQ5::before,
  .trade-sustainably_card__acXQ5::after {
    transition: none;
  }

  .trade-sustainably_iconWrap__Aahmj {
    transition: none;
  }

  .trade-sustainably_card__acXQ5:hover .trade-sustainably_iconWrap__Aahmj {
    transform: none;
  }
}

/* FAQ - Component-specific styles
 * Note: Common styles moved to globals.css:
 * - .reveal / .reveal-visible (shared animation)
 */

/* FAQ Card */
.faq_faqCard__nKctL {
  position: relative;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}

.faq_faqCard__nKctL:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: #cbd5e1;
}

.faq_faqCardActive__FyOFc {
  border-color: #2196f3;
  box-shadow: 0 2px 8px rgba(33, 150, 243, 0.1);
}

/* Question button */
.faq_questionBtn__rcgdO {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 16px;
}

.faq_questionBtn__rcgdO:focus {
  outline: none;
}

.faq_questionText__07F8Z {
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  flex: 1;
  line-height: 1.5;
}

.faq_questionIcon__jj_C_ {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.faq_questionIcon__jj_C_ svg {
  width: 16px;
  height: 16px;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.faq_faqCard__nKctL:hover .faq_questionIcon__jj_C_ svg {
  color: #64748b;
}

.faq_questionIconActive__6F7Do {
  transform: rotate(180deg);
}

.faq_questionIconActive__6F7Do svg {
  color: #2196f3 !important;
}

/* Answer section */
.faq_answerContent__5aVfj {
  padding: 0 20px 16px;
  font-size: 13px;
  color: #64748b;
  line-height: 1.7;
  border-top: 1px solid #f1f5f9;
  margin-top: 0;
  padding-top: 12px;
}

/* Premium Card */
.pricing_premiumCard__5X_Fw {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3.5rem 3rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 8px 16px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease-out,
    border-color 0.3s ease-out;
}

.pricing_premiumCard__5X_Fw:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 8px 16px rgba(0, 0, 0, 0.06),
    0 16px 32px rgba(0, 0, 0, 0.06),
    0 24px 48px rgba(0, 0, 0, 0.08);
  border-color: #2196F3;
}

/* Decorative gradient border */
.pricing_premiumCard__5X_Fw::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2196F3 0%, #6366f1 50%, #8b5cf6 100%);
}

/* Subtle background pattern */
.pricing_premiumCard__5X_Fw::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(33, 150, 243, 0.03) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

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

/* Badge */
.pricing_badge__eVo2t {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6366f1;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 2rem;
}

.pricing_badgeIcon__e9mFp {
  width: 0.875rem;
  height: 0.875rem;
}

/* Icon */
.pricing_iconWrapper__yX9Bw {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #2196F3 0%, #6366f1 100%);
  border-radius: 1rem;
  box-shadow:
    0 8px 16px -4px rgba(33, 150, 243, 0.3),
    0 4px 8px -2px rgba(99, 102, 241, 0.2);
}

.pricing_icon__B4ZSa {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
}

/* Typography */
.pricing_cardTitle__guAVe {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
}

.pricing_cardText__Kx_9a {
  font-size: 1rem;
  color: #64748b;
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Highlights */
.pricing_highlights__Vf4iR {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  padding: 1.5rem 2rem;
  background: rgba(248, 250, 252, 0.8);
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
}

.pricing_highlightItem__qhwhC {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
}

.pricing_checkIconWrapper__lR5TM {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

.pricing_checkIcon__Uc4L8 {
  width: 0.75rem;
  height: 0.75rem;
  color: #ffffff;
}

/* CTA hint */
.pricing_ctaHint__QOmts {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.pricing_ctaHint__QOmts a {
  color: #2196F3;
  font-weight: 500;
  text-decoration: none;
  transition: color 200ms ease;
}

.pricing_ctaHint__QOmts a:hover {
  color: #1976d2;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .pricing_premiumCard__5X_Fw {
    padding: 2.5rem 1.5rem;
    border-radius: 0.5rem;
  }

  .pricing_iconWrapper__yX9Bw {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
  }

  .pricing_icon__B4ZSa {
    width: 1.5rem;
    height: 1.5rem;
  }

  .pricing_cardTitle__guAVe {
    font-size: 1.375rem;
  }

  .pricing_cardText__Kx_9a {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .pricing_highlights__Vf4iR {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
  }

  .pricing_highlightItem__qhwhC {
    font-size: 0.8125rem;
  }

  .pricing_ctaHint__QOmts {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }
}

/* Background grid pattern */
.docs-overview_gridBackground__0eT_R {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Diagram container with visibility animation */
.docs-overview_diagramContainer__Os4LI {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.docs-overview_diagramContainer__Os4LI.docs-overview_visible__aSUPz {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .docs-overview_diagramContainer__Os4LI {
    opacity: 1;
    transform: none;
  }
}

/* Cards grid - two cards side by side */
.docs-overview_cardsGrid__788gG {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 900px) {
  .docs-overview_cardsGrid__788gG {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Card styling matching diagram cards */
.docs-overview_card__KzFCJ {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 8px 16px rgba(0, 0, 0, 0.04),
    0 16px 32px rgba(0, 0, 0, 0.04);
  overflow: visible;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 500ms cubic-bezier(0.34, 1.56, 0.64, 1) var(--delay, 0ms),
    transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1) var(--delay, 0ms),
    box-shadow 0.3s ease-out;
  display: flex;
  flex-direction: column;
}

.docs-overview_card__KzFCJ.docs-overview_cardVisible__35zzR {
  opacity: 1;
  transform: scale(1);
}

.docs-overview_card__KzFCJ.docs-overview_cardVisible__35zzR:hover {
  transform: scale(1) translateY(-6px);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 8px 16px rgba(0, 0, 0, 0.06),
    0 16px 32px rgba(0, 0, 0, 0.06),
    0 24px 48px rgba(0, 0, 0, 0.08),
    0 0 0 1px var(--card-color, #2196F3);
}

@media (prefers-reduced-motion: reduce) {
  .docs-overview_card__KzFCJ {
    opacity: 1;
    transform: scale(1);
  }
}

/* Header icon inside card header */
.docs-overview_headerIcon__vzwZe {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
  position: absolute;
  left: 1.25rem;
}

.docs-overview_headerIconSvg__4c4fJ {
  width: 18px;
  height: 18px;
  color: #ffffff;
}

/* Card coming soon state */
.docs-overview_cardComingSoon__qdr2R {
  opacity: 0.85;
}

.docs-overview_cardComingSoon__qdr2R:hover {
  transform: scale(1) !important;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 8px 16px rgba(0, 0, 0, 0.04),
    0 16px 32px rgba(0, 0, 0, 0.04) !important;
}

/* Card header */
.docs-overview_cardHeader__6faOs {
  padding: 1rem 1.25rem;
  border-radius: 0.45rem 0.45rem 0 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.docs-overview_cardHeader__6faOs::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.docs-overview_cardTitle__HRJri {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  flex: 1;
  text-align: center;
}

.docs-overview_headerBadge__mZLUb {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 0.25rem;
  letter-spacing: 0.025em;
  position: absolute;
  right: 1.25rem;
}

/* Card body */
.docs-overview_cardBody__KhYLA {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border-radius: 0 0 0.45rem 0.45rem;
}

.docs-overview_cardDescription__qNe9g {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Card content - list of data rows */
.docs-overview_cardContent__wfots {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Data row styling */
.docs-overview_dataRow__Gi4Fq {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.875rem;
  border-radius: 0.375rem;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-decoration: none;
  transition: all 0.2s ease-out;
  position: relative;
}

.docs-overview_dataRow__Gi4Fq::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--row-color, #2196f3);
  border-radius: 0 2px 2px 0;
  transition: height 0.2s ease-out;
}

.docs-overview_dataRow__Gi4Fq:hover:not(.docs-overview_dataRowDisabled__I3ZfK) {
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  transform: translateX(2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.docs-overview_dataRow__Gi4Fq:hover:not(.docs-overview_dataRowDisabled__I3ZfK)::before {
  height: 60%;
}

.docs-overview_dataRowDisabled__I3ZfK {
  cursor: not-allowed;
  opacity: 0.7;
}

/* Data icon */
.docs-overview_dataIcon__oqrgD {
  width: 38px;
  height: 38px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.docs-overview_dataSvg__9AYAC {
  width: 18px;
  height: 18px;
}

/* Data details */
.docs-overview_dataDetails__GgXwX {
  flex: 1;
  min-width: 0;
}

.docs-overview_dataType__Gfapn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
  letter-spacing: -0.01em;
}

.docs-overview_dataValue__dnGz4 {
  font-size: 0.75rem;
  color: #64748b;
  display: block;
  margin-top: 0.1875rem;
}

/* Arrow icon for links */
.docs-overview_dataArrow__UOBjg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.docs-overview_dataRow__Gi4Fq:hover:not(.docs-overview_dataRowDisabled__I3ZfK) .docs-overview_dataArrow__UOBjg {
  opacity: 1;
  transform: translateX(2px);
}

/* Coming soon badge */
.docs-overview_comingSoonBadge__Uibf5 {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.125rem 0.375rem;
  background: #f1f5f9;
  color: #64748b;
  border-radius: 0.25rem;
  letter-spacing: 0.025em;
}

/* Feature count badge */
.docs-overview_featureCount__Nud5P {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  flex-shrink: 0;
}

/* Card footer */
.docs-overview_cardFooter__zCnh4 {
  padding: 1rem 1.25rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 0 0 0.45rem 0.45rem;
  margin-top: auto;
}

.docs-overview_footerLink__0NWJq {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2196F3;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.docs-overview_footerLink__0NWJq:hover {
  color: #1976D2;
  gap: 0.625rem;
}

.docs-overview_footerText__3XxHc {
  font-size: 0.875rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.docs-overview_footerText__3XxHc::before {
  content: "◦";
  font-size: 1rem;
}

/* Skeleton placeholder rows */
.docs-overview_skeletonRow__hM7Rs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  background: #f8fafc;
}

.docs-overview_skeletonIcon__ASb3D {
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  background: #e2e8f0;
  flex-shrink: 0;
}

.docs-overview_skeletonDetails__3br6H {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.docs-overview_skeletonTitle__wHr8a {
  height: 0.75rem;
  background: #e2e8f0;
  border-radius: 0.25rem;
}

.docs-overview_skeletonText__oaoY5 {
  height: 0.625rem;
  background: #f1f5f9;
  border-radius: 0.25rem;
}

.docs-overview_skeletonBadge__hFhpK {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.375rem;
  background: #e2e8f0;
  flex-shrink: 0;
}

/* Trader Types Section - User Types */

/* Background grid pattern */
.trader-types_gridBackground__RUDVb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@keyframes trader-types_gridGlow__ycF31 {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.trader-types_cardsContainer__BZYbV {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.trader-types_card___2Lz2 {
  grid-column: span 2;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 8px 16px rgba(0, 0, 0, 0.04),
    0 16px 32px rgba(0, 0, 0, 0.04);
  transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease,
    border-color 0.25s ease;
  transition-delay: var(--delay, 0ms);
}

.trader-types_visible__hwQo_ .trader-types_card___2Lz2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0ms;
}

.trader-types_card___2Lz2:hover {
  transform: translateY(-6px);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 8px 16px rgba(0, 0, 0, 0.06),
    0 16px 32px rgba(0, 0, 0, 0.06),
    0 24px 48px rgba(0, 0, 0, 0.08),
    0 0 0 1px var(--card-icon, #3b82f6);
  border-color: var(--card-icon, #3b82f6);
  transition-delay: 0ms;
}

.trader-types_cardIcon__aeJDf {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  background: linear-gradient(145deg, #ffffff, var(--card-bg, #f0f9ff));
  border: 1px solid var(--card-border, #e5e7eb);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.06),
    inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

.trader-types_icon__ZvwbM {
  width: 32px;
  height: 32px;
  color: var(--card-icon, #3b82f6);
}

.trader-types_cardContent__BasWV {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.trader-types_cardHeader__U_RFu {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trader-types_cardTitle__4kAUs {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.trader-types_cardSubtitle__XtcEN {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--card-icon, #3b82f6);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.trader-types_cardDescription__iNt4h {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.trader-types_benefitsList__fP_mZ {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}

.trader-types_benefitItem__W_x1B {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.4;
}

.trader-types_benefitCheck__BeTS6 {
  color: var(--card-icon, #3b82f6);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Center the last 2 cards on the second row */
.trader-types_card___2Lz2:nth-child(4) {
  grid-column: 2 / span 2;
}

.trader-types_card___2Lz2:nth-child(5) {
  grid-column: 4 / span 2;
}

/* Tablet - 2 columns */
@media (max-width: 1024px) {
  .trader-types_cardsContainer__BZYbV {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .trader-types_card___2Lz2 {
    grid-column: span 1;
  }

  .trader-types_card___2Lz2:nth-child(4),
  .trader-types_card___2Lz2:nth-child(5) {
    grid-column: span 1;
  }

  .trader-types_card___2Lz2:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    justify-self: center;
  }
}

/* Mobile - 1 column */
@media (max-width: 640px) {
  .trader-types_cardsContainer__BZYbV {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .trader-types_card___2Lz2 {
    grid-column: span 1;
    padding: 1.25rem;
  }

  .trader-types_card___2Lz2:nth-child(4),
  .trader-types_card___2Lz2:nth-child(5) {
    grid-column: span 1;
  }

  .trader-types_card___2Lz2:last-child {
    max-width: none;
  }

  .trader-types_cardIcon__aeJDf {
    width: 48px;
    height: 48px;
  }

  .trader-types_icon__ZvwbM {
    width: 28px;
    height: 28px;
  }

  .trader-types_cardTitle__4kAUs {
    font-size: 1rem;
  }

  .trader-types_cardDescription__iNt4h {
    font-size: 0.8125rem;
  }

  .trader-types_benefitItem__W_x1B {
    font-size: 0.75rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .trader-types_card___2Lz2 {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .trader-types_card___2Lz2:hover {
    transform: none;
  }
}

.supported-exchanges_section__3EAuE {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #f8fafc;
}

/* Exchanges Grid */
.supported-exchanges_exchangeGrid__FG_R8 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.supported-exchanges_exchangeCard___AsOd {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 140px;
  padding: 1.5rem 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  transition: all 200ms ease;
}

.supported-exchanges_exchangeCard___AsOd:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.supported-exchanges_exchangeLogo__eHmP9 {
  height: 2.25rem;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.8;
  transition: all 200ms ease;
}

.supported-exchanges_exchangeCard___AsOd:hover .supported-exchanges_exchangeLogo__eHmP9 {
  opacity: 1;
}

.supported-exchanges_exchangeName__tE6pg {
  margin-top: 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
  text-align: center;
}

/* Coming Soon Note */
.supported-exchanges_comingNote__IWShf {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: #94a3b8;
}

@media (max-width: 640px) {
  .supported-exchanges_exchangeCard___AsOd {
    width: calc(50% - 0.5rem);
    max-width: 140px;
  }
}

/* Problem-Solution: Flip Card Grid + Carousel */

/* ===== DESKTOP GRID ===== */

.problem-solution_gridContainer__EfMfv {
  display: none;
}

@media (min-width: 768px) {
  .problem-solution_gridContainer__EfMfv {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1rem 0;
  }
}

@media (min-width: 1024px) {
  .problem-solution_gridContainer__EfMfv {
    gap: 2rem;
  }
}

/* ===== MOBILE CAROUSEL ===== */

.problem-solution_carouselContainer__x7_lf {
  display: block;
}

@media (min-width: 768px) {
  .problem-solution_carouselContainer__x7_lf {
    display: none;
  }
}

.problem-solution_carouselWrapper__8iVJk {
  overflow: hidden;
  margin: 0 -1rem;
  padding: 2rem 0;
}

.problem-solution_carouselSlides__TJOG1 {
  display: flex;
  touch-action: pan-y pinch-zoom;
}

.problem-solution_carouselSlide__Vdbph {
  flex: 0 0 100%;
  min-width: 0;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

/* ===== FLIP CARD ===== */

.problem-solution_flipCard__H7mkG {
  width: 100%;
  max-width: 280px;
  height: 340px;
  perspective: 1000px;
  cursor: pointer;
}

/* Grid cards: full width within grid cell */
@media (min-width: 768px) {
  .problem-solution_gridContainer__EfMfv .problem-solution_flipCard__H7mkG {
    max-width: none;
    height: 360px;
  }
}

@media (min-width: 1024px) {
  .problem-solution_gridContainer__EfMfv .problem-solution_flipCard__H7mkG {
    height: 380px;
  }
}

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

.problem-solution_navigation__n5aWt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.problem-solution_navButton__TUM_z {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #64748b;
  cursor: pointer;
  transition: all 200ms ease;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 8px rgba(0, 0, 0, 0.04);
}

.problem-solution_navButton__TUM_z:hover {
  color: #1e293b;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 8px 16px rgba(0, 0, 0, 0.06);
}

.problem-solution_navButton__TUM_z:active {
  transform: scale(0.95);
}

.problem-solution_dots__bIQL9 {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.problem-solution_dot__hZejS {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 250ms ease;
}

.problem-solution_dot__hZejS:hover {
  background: #94a3b8;
}

.problem-solution_dotActive__hcw91 {
  background: #2196F3;
  width: 20px;
  border-radius: 4px;
}

@media (max-width: 600px) {
  .problem-solution_flipCard__H7mkG {
    max-width: 260px;
    height: 320px;
  }
}

.problem-solution_flipCardInner__I9uF4 {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.problem-solution_flipped__3dakD {
  transform: rotateY(180deg);
}

/* ===== CARD FACES ===== */

.problem-solution_flipCardFront__xw4wD,
.problem-solution_flipCardBack__aFwZC {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1.25rem;
  border-radius: 6px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 8px 16px rgba(0, 0, 0, 0.04),
    0 16px 32px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

/* ===== FRONT FACE (BEFORE) ===== */

.problem-solution_flipCardFront__xw4wD {
  justify-content: center;
}

.problem-solution_flipCardFront__xw4wD:hover,
.problem-solution_active__6YDLm .problem-solution_flipCardFront__xw4wD {
  border-color: #ea5050;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 8px 16px rgba(0, 0, 0, 0.06),
    0 16px 32px rgba(0, 0, 0, 0.06),
    0 24px 48px rgba(0, 0, 0, 0.08),
    0 0 0 1px #ea5050;
}

/* ===== BACK FACE (AFTER) ===== */

.problem-solution_flipCardBack__aFwZC {
  transform: rotateY(180deg);
  justify-content: center;
}

.problem-solution_flipCardBack__aFwZC:hover,
.problem-solution_active__6YDLm .problem-solution_flipCardBack__aFwZC {
  border-color: #2EBD85;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 8px 16px rgba(0, 0, 0, 0.06),
    0 16px 32px rgba(0, 0, 0, 0.06),
    0 24px 48px rgba(0, 0, 0, 0.08),
    0 0 0 1px #2EBD85;
}

/* ===== CARD CONTENT ===== */

.problem-solution_cardLabel__oeh6X {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  white-space: nowrap;
}

.problem-solution_beforeIconWrapper__vnLHA,
.problem-solution_afterIconWrapper__ATBFi {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.06),
    inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

.problem-solution_beforeIconWrapper__vnLHA {
  background: linear-gradient(145deg, #ffffff, #fef2f2);
  border: 1px solid #fecaca;
}

.problem-solution_afterIconWrapper__ATBFi {
  background: linear-gradient(145deg, #ffffff, #f0fdf4);
  border: 1px solid #86efac;
}

.problem-solution_cardIcon__jrzQt {
  width: 28px;
  height: 28px;
}

.problem-solution_beforeIconWrapper__vnLHA .problem-solution_cardIcon__jrzQt {
  color: #ea5050;
}

.problem-solution_afterIconWrapper__ATBFi .problem-solution_cardIcon__jrzQt {
  color: #2EBD85;
}

.problem-solution_badge__ycEdw {
  margin-bottom: 0.75rem;
}

.problem-solution_beforeBadge__7zY1c,
.problem-solution_afterBadge__2_7FE {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}

.problem-solution_beforeBadge__7zY1c {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.problem-solution_afterBadge__2_7FE {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #86efac;
}

.problem-solution_cardText__XhR8u {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1e293b;
  text-align: center;
  line-height: 1.5;
  max-width: 200px;
}

.problem-solution_cardTextAfter__JsebY {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1e293b;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  max-width: 200px;
}

.problem-solution_flipHint__5bLVv {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  color: #94a3b8;
  opacity: 0.8;
}

/* ===== BENEFITS LIST ===== */

.problem-solution_benefitsList__HwoZm {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.problem-solution_benefitItem__WoWEL {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.3;
  text-align: left;
}

.problem-solution_benefitIconWrapper__9Yv_1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(145deg, #f0fdf4, #dcfce7);
  border: 1px solid #86efac;
  flex-shrink: 0;
}

.problem-solution_benefitIcon__AurLT {
  width: 12px;
  height: 12px;
  color: #16a34a;
}

/* ===== ACTIVE CARD SCALE ===== */

.problem-solution_active__6YDLm .problem-solution_flipCardInner__I9uF4 {
  transform: scale(1.02);
}

.problem-solution_active__6YDLm.problem-solution_flipCard__H7mkG .problem-solution_flipped__3dakD {
  transform: rotateY(180deg) scale(1.02);
}

/* ===== REDUCED MOTION ===== */

@media (prefers-reduced-motion: reduce) {
  .problem-solution_flipCardInner__I9uF4 {
    transition: none;
  }

  .problem-solution_flipped__3dakD {
    transform: none;
  }

  .problem-solution_flipCardBack__aFwZC {
    transform: none;
    opacity: 0;
  }

  .problem-solution_flipped__3dakD .problem-solution_flipCardBack__aFwZC {
    opacity: 1;
  }

  .problem-solution_flipped__3dakD .problem-solution_flipCardFront__xw4wD {
    opacity: 0;
  }

  .problem-solution_flipCardFront__xw4wD,
  .problem-solution_flipCardBack__aFwZC,
  .problem-solution_navButton__TUM_z,
  .problem-solution_dot__hZejS {
    transition: none;
  }
}

