@keyframes floatAnimation {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes pulseGlowLight {
  0% {
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
  }

  50% {
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.18);
  }

  100% {
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
  }
}

/* Gradient Text */
.gradient-title {
  background: linear-gradient(135deg, #2563eb 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Soft Blue Badge */
.badge-soft-blue {
  background-color: #eff6ff;
  color: #2563eb;
  font-weight: 700;
  border: 1px solid #dbeafe;
}

/* Animated Image Box */
.hero-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.07);
  animation: floatAnimation 5s ease-in-out infinite;
}

.hero-img-wrapper:hover {
  animation-play-state: paused;
}

.hero-img-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-img-wrapper:hover img {
  transform: scale(1.03);
}

/* Challenge SVG Pill List Item */
.challenge-pill {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.challenge-pill:hover {
  background: #ffffff;
  border-color: #2563eb;
  transform: translateX(8px);
  box-shadow: 0 12px 30px -8px rgba(37, 99, 235, 0.15);
}

/* SVG Wrapper Box */
.svg-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.svg-box svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.3s ease;
}

.challenge-pill:hover .svg-box {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  transform: rotate(6deg) scale(1.05);
}

.integration-hero-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
  border-radius: 28px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  animation: pulseGlowLight 4s infinite ease-in-out;
}

.glow-bg-light {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.12) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.diagram-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.diagram-container {
  position: relative;
  width: 1000px;
  height: 750px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -87px -131px -100px 58px;
}

.center-bot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow:
    0 20px 40px rgba(2, 132, 199, 0.12),
    0 0 0 10px rgba(2, 132, 199, 0.05);
  animation: pulseHub 3s infinite ease-in-out;
  border: 2px solid rgba(2, 132, 199, 0.2);
  padding: 15px;
  text-align: center;
}

@keyframes pulseHub {
  0%,
  100% {
    box-shadow:
      0 20px 40px rgba(2, 132, 199, 0.12),
      0 0 0 10px rgba(2, 132, 199, 0.05);
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    box-shadow:
      0 25px 50px rgba(2, 132, 199, 0.22),
      0 0 0 20px rgba(2, 132, 199, 0.08);
    transform: translate(-50%, -50%) scale(1.03);
  }
}

.center-bot img {
  max-width: 135px;
  max-height: 115px;
  object-fit: contain;
  margin-bottom: 5px;
}

.center-bot h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #0f172a;
  letter-spacing: 0.5px;
}

.svg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.anim-line {
  stroke: #0ea5e9;
  stroke-width: 3;
  stroke-dasharray: 8, 8;
  animation: flowLine 2s linear infinite;
}

@keyframes flowLine {
  from {
    stroke-dashoffset: 32;
  }

  to {
    stroke-dashoffset: 0;
  }
}

.pulse-dot {
  fill: #0284c7;
  animation: pulseDot 1.5s infinite alternate;
}

@keyframes pulseDot {
  0% {
    r: 3;
    opacity: 0.6;
  }

  100% {
    r: 7;
    opacity: 1;
  }
}

.item {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 18px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.9);
  width: 300px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.item:hover {
  transform: translate(-50%, -50%) scale(1.07);
  box-shadow: 0 20px 40px rgba(2, 132, 199, 0.15);
  border-color: #0284c7;
  background: #ffffff;
}

.icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.icon-wrap svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
}

.text-wrap {
  margin-left: 14px;
}

.text-wrap h4 {
  margin: 0 0 3px 0;
  font-size: 14px;
  color: #0f172a;
  font-weight: 600;
  line-height: 1.2;
}

.text-wrap p {
  margin: 0;
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.4;
}

.item-1 {
  top: 170px;
  left: 740px;
}

.item-2 {
  top: 375px;
  left: 830px;
}

.item-3 {
  top: 580px;
  left: 740px;
}

.item-4 {
  top: 580px;
  left: 260px;
  flex-direction: row-reverse;
  text-align: right;
}

.item-4 .text-wrap {
  margin-left: 0;
  margin-right: 14px;
}

.item-5 {
  top: 375px;
  left: 170px;
  flex-direction: row-reverse;
  text-align: right;
}

.item-5 .text-wrap {
  margin-left: 0;
  margin-right: 14px;
}

.item-6 {
  top: 170px;
  left: 260px;
  flex-direction: row-reverse;
  text-align: right;
}

.item-6 .text-wrap {
  margin-left: 0;
  margin-right: 14px;
}

@media (max-width: 1024px) {
  .diagram-container {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .svg-canvas {
    display: none;
  }

  .center-bot {
    position: relative;
    top: unset;
    left: unset;
    transform: none;
    margin-bottom: 5px;
    width: 140px;
    height: 140px;
    animation: none;
  }

  .center-bot img {
    max-width: 80px;
  }

  .item,
  .item-4,
  .item-5,
  .item-6 {
    position: relative;
    top: unset !important;
    left: unset !important;
    transform: none !important;
    width: 100%;
    max-width: 400px;
    flex-direction: row !important;
    text-align: left !important;
  }

  .text-wrap,
  .item-4 .text-wrap,
  .item-5 .text-wrap,
  .item-6 .text-wrap {
    margin-left: 14px !important;
    margin-right: 0 !important;
  }

  .item:hover {
    transform: translateY(-4px) !important;
  }
}

:root {
  --navy: #1a365d;
  --indigo: #2b6cb0;
  --indigo-deep: #1a365d;
  --paper: #f8fafc;
  --panel: #ffffff;
  --gray: #64748b;
  --hair: #e2e8f0;
}

.ticker-section {
  background: var(--paper);
  padding: 35px 0 0px;
  overflow: hidden;
}

.tk-eyebrow {
  font-weight: 600;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--indigo);
  text-transform: uppercase;
}

.tk-row-mask {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  margin-bottom: 22px;
}

.tk-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollLeft 42s linear infinite;
}

.tk-row-mask.reverse .tk-track {
  animation: scrollRight 42s linear infinite;
}

.tk-row-mask:hover .tk-track {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.tk-chip {
  flex: 0 0 auto;
  width: 320px;
  background: var(--panel);
  border: 1px solid var(--hair);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.tk-chip:hover {
  border-color: #3182ce;
  box-shadow: 0 10px 20px rgba(43, 108, 176, 0.1);
}

.tk-chip .tk-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3182ce, #1a365d);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(43, 108, 176, 0.15);
}

.tk-chip .tk-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.tk-chip h6 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin: 0 0 4px;
}

.tk-chip p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.45;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .tk-track {
    animation: none;
  }
}

@media (max-width: 576px) {
  .tk-chip {
    width: 260px;
    padding: 16px 18px;
  }
}
:root {
  --navy-deep: #0b2a55;
  --navy: #123b73;
  --blue: #2e6fc9;
  --cyan: #00c2ff;
  --ice: #eaf2fb;
  --ink: #101826;
  --line: #d9e5f5;
  --orange: #f2924a;
  --red: #e15656;
  --green: #2fae66;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 20px;
}

.title-row {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.title-pill {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: clamp(1rem, 2vw, 1.4rem);
  padding: 14px 40px;
  border-radius: 999px;
  box-shadow: 0 10px 25px -8px rgba(11, 42, 85, 0.3);
  text-align: center;
}

.flow-grid-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 15px;
}

.flow-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
}

.flow-card {
  flex: 1 1 0;
  min-width: 0;
  max-width: 210px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 12px;
  text-align: center;
  box-shadow: 0 8px 18px -10px rgba(11, 42, 85, 0.12);

  /* અંદરના કન્ટેન્ટ માટે */
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.flow-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ice);
  flex-shrink: 0;
}

.flow-icon svg {
  width: 26px;
  height: 26px;
}

.flow-card p {
  margin: auto 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy-deep);
  letter-spacing: 0.01em;
}

.connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.connector svg {
  width: 18px;
  height: 14px;
}

.hero-middle-section {
  position: relative;
  background: linear-gradient(135deg, #0b2a55 0%, #123b73 100%);
  border-radius: 24px;
  padding: 35px 40px;
  margin: 35px 0 20px 0;
  color: #ffffff;
  box-shadow: 0 20px 40px -15px rgba(11, 42, 85, 0.4);
  overflow: hidden;
}

.hero-middle-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(0, 194, 255, 0.25) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  pointer-events: none;
}

.middle-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 35px;
}

.brand-badge-card {
  flex: 0 0 220px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2e6fc9 0%, #00c2ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 8px 20px rgba(0, 194, 255, 0.3);
}

.brand-icon-wrapper svg {
  width: 32px;
  height: 32px;
}

.brand-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.brand-title span {
  color: var(--cyan);
}

.brand-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.middle-content {
  flex: 1;
}

.middle-header-tag {
  display: inline-block;
  background: rgba(0, 194, 255, 0.15);
  border: 1px solid rgba(0, 194, 255, 0.3);
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.middle-content h3 {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.middle-content p {
  margin: 0 0 18px 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}

.middle-highlights {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.highlight-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
}

.highlight-pill svg {
  width: 16px;
  height: 16px;
  color: var(--cyan);
}

.up-arrows-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 6px;
}

.up-arrow-item {
  flex: 1 1 180px;
  max-width: 210px;
  display: flex;
  justify-content: center;
  color: var(--blue);
}

.up-arrow-item svg {
  width: 24px;
  height: 32px;
}

.solution-row {
  display: flex;
  align-items: stretch;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.solution-card {
  flex: 1 1 0;
  min-width: 0;
  max-width: 210px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 14px;
  text-align: center;
  box-shadow: 0 10px 22px -12px rgba(11, 42, 85, 0.15);

  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.solution-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, var(--navy-deep), var(--navy));
  flex-shrink: 0;
}

.solution-icon img {
  width: 45px;
  height: 45px;
}

.solution-card p {
  margin: auto 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy-deep);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .flow-row {
    flex-wrap: wrap;
  }

  .connector,
  .up-arrows-row {
    display: none;
  }

  .middle-container {
    flex-direction: column;
    text-align: center;
  }

  .brand-badge-card {
    flex: 0 0 auto;
    width: 100%;
  }

  .middle-highlights {
    justify-content: center;
  }
}

.audience-section-creative {
  width: 100%;
  padding: 35px 20px;
  margin: 0;
  box-sizing: border-box;
  background: #0b0f19;
}

.aud-creative-container {
  max-width: 1200px;
  margin: 0 auto;
}

.aud-creative-header {
  text-align: center;
  margin-bottom: 30px;
}

.aud-creative-header h3 {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.aud-creative-header p {
  font-size: 16px;
  color: #94a3b8;
  margin: 0;
}

.aud-creative-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.aud-creative-card {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.aud-creative-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transition: all 0.5s ease;
  pointer-events: none;
}

.aud-creative-card:hover {
  transform: translateY(-8px);
  border-color: rgba(14, 165, 233, 0.5);
  background: rgba(30, 41, 59, 0.7);
  box-shadow: 0 20px 40px -15px rgba(2, 132, 199, 0.3);
}

.aud-creative-card:hover .aud-creative-glow {
  transform: scale(2.5);
}

.aud-card-header-inline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.aud-creative-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.aud-creative-icon img {
  width: 31px;
}

.aud-card-header-inline h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.3px;
}

.aud-creative-content p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .aud-creative-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .aud-creative-grid {
    grid-template-columns: 1fr;
  }
}

:root {
  --ink: #26292e;
  --muted: #7b808a;
  --border: #eceef1;
  --card-bg: #ffffff;
  --page-bg: #f4f6f9;
}

.help-section {
  padding: 10px 0;
}

.help-card {
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(30, 40, 60, 0.06);
  padding: 2.2rem 2.5rem;
  margin: 0 auto;
  border: 1px solid rgba(236, 238, 241, 0.8);
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.brand-row img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.help-title {
  text-align: center;
  font-weight: 800;
  font-size: 1.65rem;
  margin-bottom: 0.3rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.help-sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 2rem;
}

.steps {
  position: relative;
}

.step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.step:not(:last-child) {
  border-bottom: 1px dashed var(--border);
}

.step.in-view {
  opacity: 1;
  transform: translateY(0);
}

.step-num-col {
  position: relative;
  flex: 0 0 34px;
  display: flex;
  justify-content: center;
}

.step-num-col::before {
  content: "";
  position: absolute;
  top: 36px;
  bottom: -20px;
  left: 50%;
  width: 0;
  border-left: 2px dotted #c8d0dc;
  transform: translateX(-50%);
}

.step:last-child .step-num-col::before {
  display: none;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent, #436ab2);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--accent-soft, #e7edf8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 10px;
  transition: transform 0.3s ease;
}

.step:hover .step-icon {
  transform: scale(1.06);
}

.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.step-text {
  flex: 1;
  min-width: 0;
}

.step-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent, #436ab2);
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}

.step-text p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 0;
}

.step-outcome {
  position: relative;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #f8f9fb;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-outcome svg {
  width: 20px;
  height: 20px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent, #436ab2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  border: 2px solid #fff;
}

.step-badge svg {
  width: 9px;
  height: 9px;
  stroke: #fff;
  fill: none;
  stroke-width: 3;
}

@media (max-width: 560px) {
  .help-card {
    padding: 1.5rem 1.1rem;
  }

  .step {
    gap: 0.8rem;
  }

  .step-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    padding: 8px;
  }

  .step-outcome {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .step-text h3 {
    font-size: 0.9rem;
  }

  .step-text p {
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .step {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

:root {
  --ink: #0d1321;
  --paper: #f3efe6;
  --panel: #ffffff;
  --signal: #1d61e7;
  --wire: #1b2a4a;
  --wire-soft: #5a6b8c;
  --line: #d8d2c2;
}

.mono {
  letter-spacing: 0.04em;
}

.board {
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px 10px 10px;
}

.kicker {
  font-size: 0.72rem;
  color: var(--wire-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--signal);
  display: inline-block;
}

.headline {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.02;
  font-weight: 700;
  margin: 0;
}

.headline .accent {
  color: var(--signal);
  position: relative;
  white-space: nowrap;
}

.headline-sub {
  max-width: 560px;
  color: var(--wire-soft);
  font-size: 1rem;
  margin-top: 1rem;
}

.ledger {
  margin-top: 3rem;
  border-top: 1px solid var(--ink);
}

.ledger-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.4rem;
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 0;
  position: relative;
  transition:
    background 0.3s ease,
    padding-left 0.3s ease;
}

.ledger-row:hover {
  padding-left: 0.6rem;
}

.ledger-index {
  display: flex;
  align-items: flex-start;
  padding-top: 0.15rem;
}

.ledger-index .icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: var(--wire); */
  color: var(--signal);
  font-size: 1.15rem;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.ledger-row:hover .icon-badge {
  color: #fff;
  transform: scale(1.08) rotate(-6deg);
}

.ledger-content {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.6rem;
  align-items: start;
}

.ledger-title {
  font-weight: 600;
  font-size: 1.12rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.ledger-title i {
  color: var(--signal);
  font-size: 1.05rem;
}

.ledger-desc {
  color: #3b4252;
  font-size: 0.93rem;
  line-height: 1.55;
  margin: 0;
}

.ledger-desc .view-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  color: var(--signal);
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
}

.ledger-desc .view-link i {
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}

.ledger-desc .view-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 720px) {
  .ledger-content {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .ledger-row {
    grid-template-columns: 40px 1fr;
  }
}

.signal-strip {
  margin-top: 2.6rem;
  background: var(--wire);
  border-radius: 4px;
  padding: 1.6rem 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.4rem;
  color: #eef1fb;
  position: relative;
  overflow: hidden;
}

.signal-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 38px,
    rgba(255, 255, 255, 0.035) 38px 39px
  );
  pointer-events: none;
}

.signal-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  font-weight: 500;
}

.signal-item .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0 #1d61e7;
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #1d61e7;
  }

  70% {
    box-shadow: 0 0 0 8px rgba(255, 106, 61, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 106, 61, 0);
  }
}

.rail {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.rail-brand {
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rail-brand .bracket {
  color: var(--signal);
}

.rail-tag {
  font-size: 0.76rem;
  color: var(--wire-soft);
}

.rail-tag b {
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.ledger-row {
  cursor: pointer;
}

.hover-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 170px;
  border-radius: 10px;
  background: var(--wire);
  box-shadow: 0 22px 50px rgba(13, 19, 33, 0.35);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92) rotate(-2deg);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  z-index: 999;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hover-preview.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
}

.hover-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.08);
  transition: transform 0.6s ease;
}

.hover-preview.show img {
  transform: scale(1);
}

.hover-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 19, 33, 0) 40%,
    rgba(13, 19, 33, 0.85) 100%
  );
}

.hover-preview .preview-tag {
  position: absolute;
  bottom: 10px;
  left: 12px;
  right: 12px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hover-preview .preview-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .hover-preview {
    display: none;
  }
}

.challenges-section {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.challenges-image {
    flex: 1;
}

.challenges-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.challenges-content {
    flex: 1;
}

.challenges-content h2 {
    font-size: 28px;
    color: #123B73;
    margin-bottom: 24px;
}

.challenges-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.challenges-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #333333;
    line-height: 1.5;
}

.challenges-list .icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.challenges-list .icon svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .challenges-section {
        flex-direction: column;
    }
}