/* ========================================================================
   FLEXEYE — Modern IT Headhunter Design System
   ======================================================================== */

:root {
  --fx-primary: #4f46e5;
  /* Indigo-600 */
  --fx-primary-light: #818cf8;
  /* Indigo-400 */
  --fx-primary-dark: #3730a3;
  /* Indigo-800 */
  --fx-accent: #06b6d4;
  /* Cyan-500 */
  --fx-accent-dark: #0891b2;
  --fx-gradient: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  --fx-gradient-dark: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
  --fx-text: #0f172a;
  --fx-muted: #475569;
  --fx-bg: #ffffff;
  --fx-surface: #f1f5f9;
  --fx-border: #e2e8f0;
  --fx-radius: 16px;
  --fx-shadow-sm: 0 2px 8px rgba(15, 23, 42, .06);
  --fx-shadow-md: 0 8px 30px rgba(15, 23, 42, .10);
  --fx-shadow-lg: 0 20px 60px rgba(15, 23, 42, .15);
  --fx-shadow-glow: 0 0 40px rgba(79, 70, 229, .18);
}

/* ---- Global ---- */
body {
  font-family: "Be Vietnam Pro", sans-serif;
  color: var(--fx-muted);
  font-size: 16px;
  line-height: 1.75;
  background: var(--fx-bg);
  -webkit-font-smoothing: antialiased;
}

.block-title__title {
  color: var(--fx-text);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.block-title__title span {
  background: var(--fx-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* ---- Header ---- */
.site-header {
  background: transparent;
}

/* Override to full-width container with left-aligned logo */
.header-navigation .container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 20px !important;
}

.header-navigation .container .logo-box {
  left: 20px !important;
}

.header-navigation .main-navigation {
  padding-left: 160px !important;
  padding-right: 240px !important;
  text-align: center;
}

.header-navigation ul.navigation-box {
  display: inline-flex !important;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.header-navigation ul.navigation-box>li {
  flex-shrink: 0;
}

.header-navigation .container .right-side-box {
  right: 20px !important;
}

.header-navigation {
  transition: all .4s ease;
}

/* Nav link spacing for 6 items */
.header-navigation .navigation-box>li>a {
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 14px;
}

/* Default: white text on dark hero / banner — !important to override base style.css grey */
.header-navigation .navigation-box>li>a {
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  transition: color .3s ease;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .35);
}

.header-navigation .navigation-box>li.current>a,
.header-navigation .navigation-box>li>a:hover {
  color: #fff;
}

/* Sticky: dark text on white bg */
.header-navigation.stricky-fixed {
  background: rgba(255, 255, 255, .95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(15, 23, 42, .08);
}

.header-navigation.stricky-fixed .navigation-box>li>a {
  color: var(--fx-text) !important;
  text-shadow: none;
}

.header-navigation.stricky-fixed .navigation-box>li.current>a,
.header-navigation.stricky-fixed .navigation-box>li>a:hover {
  color: var(--fx-primary) !important;
}

/* Language switcher — Globe Dropdown */
.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
}

.lang-switcher__toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  transition: all .25s ease;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 600;
}

.lang-switcher__toggle:hover {
  background: rgba(255, 255, 255, .12);
}

.lang-switcher__globe {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lang-switcher__chevron {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s ease;
}

.lang-switcher.open .lang-switcher__chevron {
  transform: rotate(180deg);
}

/* Dropdown panel */
.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, .15), 0 0 0 1px rgba(15, 23, 42, .04);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .2s ease;
  z-index: 9999;
}

.lang-switcher.open .lang-switcher__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  border: none;
  background: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  transition: background .15s ease;
  text-align: left;
}

.lang-switcher__item:hover {
  background: #f1f5f9;
}

.lang-switcher__item.active {
  background: #eef2ff;
  color: var(--fx-primary);
  font-weight: 600;
}

.lang-switcher__flag {
  font-size: 18px;
  line-height: 1;
}

.lang-switcher__label {
  flex: 1;
}

.lang-switcher__check {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--fx-primary);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
}

.lang-switcher__item.active .lang-switcher__check {
  opacity: 1;
}

/* Sticky header state */
.stricky-fixed .lang-switcher__toggle {
  color: var(--fx-text);
}

.stricky-fixed .lang-switcher__toggle:hover {
  background: var(--fx-surface);
}

/* ---- Buttons ---- */
.thm-btn {
  background: var(--fx-gradient);
  border-radius: 999px;
  padding: 14px 28px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 8px 25px rgba(79, 70, 229, .30);
  transition: all .35s ease;
  border: none;
}

.thm-btn:before {
  display: none;
}

.thm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(79, 70, 229, .40);
  color: #fff;
}

.thm-btn:active {
  transform: translateY(0);
}

.header__cta-btn {
  padding: 11px 22px;
  font-size: 14px;
}

/* ---- Sections ---- */
.thm-gray-bg {
  background: var(--fx-surface);
}

.testimonials-one {
  background: var(--fx-surface);
}

/* Hide ALL old template decorative circles/shapes globally */
.cta-one .container:before {
  display: none !important;
}

[class*="banner-one__shape-"] {
  display: none !important;
}

[class*="banner-two__shape-"] {
  display: none !important;
}

.cta-one__bg {
  display: none !important;
}

.cta-one__moc {
  display: none !important;
}

/* ========================================================================
   HERO — CSS Gradient (no background image)
   ======================================================================== */
.hero-modern {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: var(--fx-gradient-dark);
}

/* Remove the old background image */
.hero-modern__bg {
  display: none !important;
}

/* Animated gradient overlay */
.hero-modern__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(79, 70, 229, .45) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(6, 182, 212, .35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 90% 10%, rgba(129, 140, 248, .30) 0%, transparent 70%);
  animation: heroShift 12s ease-in-out infinite alternate;
}

@keyframes heroShift {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: .85;
    transform: scale(1.08);
  }
}

/* Floating dots decoration */
.hero-modern::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, .15) 0%, transparent 70%);
  top: -200px;
  right: -150px;
  z-index: 1;
  animation: float 8s ease-in-out infinite alternate;
}

.hero-modern::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 70, 229, .12) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  z-index: 1;
  animation: float 10s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(-30px) scale(1.05);
  }
}

.hero-modern__content {
  position: relative;
  z-index: 2;
  padding: 72px 56px;
  max-width: 720px;
}

.hero-modern__kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.hero-modern__title {
  color: #fff;
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 16px 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .25);
}

.hero-modern__subtitle {
  color: rgba(255, 255, 255, .8);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 28px 0;
}

.hero-modern__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-modern__secondary {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.hero-modern__secondary:hover {
  background: rgba(255, 255, 255, .18);
  transform: translateY(-2px);
}

/* ========================================================================
   INNER BANNER (Services, Process, etc.)
   ======================================================================== */
.inner-banner {
  background: var(--fx-gradient-dark) !important;
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.inner-banner:before {
  display: none;
}

/* remove old background image */
.inner-banner:after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 70% 30%, rgba(79, 70, 229, .40) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(6, 182, 212, .30) 0%, transparent 70%);
}

.inner-banner [class*="banner-two__shape-"] {
  display: none !important;
}

.inner-banner .container {
  position: relative;
  z-index: 2;
}

.inner-banner__title {
  color: #fff;
  font-weight: 800;
  font-size: 38px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .20);
}

.thm-breadcrumb li a,
.thm-breadcrumb li {
  color: rgba(255, 255, 255, .7);
}

.thm-breadcrumb li a:hover {
  color: #fff;
}

/* ========================================================================
   CARDS — Glassmorphism + 3D Shadows
   ======================================================================== */
.fx-card {
  background: #f0f3f9;
  border: 1px solid #e2e8f0;
  border-radius: var(--fx-radius);
  padding: 28px;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, .04),
    0 10px 30px rgba(15, 23, 42, .08);
  height: 100%;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}

.fx-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 12px 24px rgba(15, 23, 42, .08),
    0 24px 60px rgba(15, 23, 42, .16),
    var(--fx-shadow-glow),
    0 2px 0 0 rgba(79, 70, 229, .15);
}

.fx-card h3 {
  color: var(--fx-text);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 10px 0;
  line-height: 1.35;
}

.fx-card p {
  margin: 0;
  color: var(--fx-muted);
  font-size: 15px;
  line-height: 1.65;
  flex: 1;
}

/* Push button to bottom of card */
.fx-card>div:last-child {
  margin-top: auto;
  padding-top: 14px;
}

/* Icon badges */
.fx-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(79, 70, 229, .12) 0%, rgba(6, 182, 212, .12) 100%);
  border: 1px solid rgba(79, 70, 229, .15);
  margin-bottom: 16px;
  transition: transform .3s ease;
}

.fx-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--fx-primary);
}

.fx-card:hover .fx-icon {
  transform: scale(1.1) rotate(-3deg);
}

/* ---- Simple list ---- */
.fx-list {
  margin: 14px 0 0 0;
  padding: 0;
  list-style: none;
}

.fx-list li {
  position: relative;
  padding-left: 24px;
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.6;
}

.fx-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--fx-primary);
  font-weight: 700;
  font-size: 14px;
}

/* ========================================================================
   TESTIMONIALS SECTION (pain-points)
   ======================================================================== */
.testimonials-one__single {
  border-radius: var(--fx-radius);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(8px);
  box-shadow: var(--fx-shadow-md);
  border: 1px solid var(--fx-border);
  transition: box-shadow .35s ease;
}

.testimonials-one__single:hover {
  box-shadow: var(--fx-shadow-lg);
}

.testimonials-one__inner {
  padding: 32px 40px;
}

.testimonials-one__inner table td {
  padding: 8px 12px;
  vertical-align: top;
  font-size: 15px;
}

.testimonials-one__inner .fa-check {
  color: var(--fx-primary);
  font-size: 14px;
}

/* ========================================================================
   CONTACT SECTION
   ======================================================================== */
.mailchimp-one {
  background: var(--fx-gradient) !important;
  position: relative;
  overflow: hidden;
}

.mailchimp-one::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255, 255, 255, .08) 0%, transparent 70%);
}

.mailchimp-one .block-title__title {
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

.mailchimp-one .block-title__title span {
  -webkit-text-fill-color: #fff;
}

.contact-area {
  background: rgba(15, 23, 42, .55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--fx-radius);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}

.contact-title h2 {
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 20px;
}

.contact-address ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-address li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, .85);
  font-size: 15px;
}

.contact-address li i {
  color: var(--fx-accent);
  font-size: 18px;
  margin-top: 3px;
}

.contact-address li .information {
  color: rgba(255, 255, 255, .85);
}

.contact-address li a {
  color: rgba(255, 255, 255, .9);
  transition: color .3s ease;
}

.contact-address li a:hover {
  color: #fff;
}

.contact-form .form-control {
  background: rgba(255, 255, 255, .12) !important;
  border: 1px solid rgba(255, 255, 255, .22) !important;
  border-radius: 12px !important;
  color: #fff !important;
  padding: 14px 18px;
  font-size: 15px;
  transition: border-color .3s ease, box-shadow .3s ease;
}

/* Override style.css white container */
.contact-info-container {
  background: transparent !important;
  box-shadow: none !important;
  padding: 30px !important;
}

.contact-form-area input,
.contact-form-area textarea {
  color: #fff !important;
}

.contact-address ul li .information,
.contact-address ul li .information a {
  color: rgba(255, 255, 255, .85) !important;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, .45);
}

.contact-form .form-control:focus {
  border-color: var(--fx-accent);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, .20);
  outline: none;
}

.contact-form .submit-btn {
  background: #fff;
  color: var(--fx-primary);
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
  transition: all .35s ease;
}

.contact-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .25);
}

/* ---- Footer ---- */
.site-footer {
  background: #0b1220;
  color: #cbd5e1;
}

.site-footer a {
  color: #cbd5e1;
}

.site-footer a:hover {
  color: #fff;
}

/* ========================================================================
   ANIMATIONS — AOS + Custom
   ======================================================================== */
/* Stagger card animations */
.row>[class*="col-"]:nth-child(1) .fx-card {
  transition-delay: 0s;
}

.row>[class*="col-"]:nth-child(2) .fx-card {
  transition-delay: .08s;
}

.row>[class*="col-"]:nth-child(3) .fx-card {
  transition-delay: .16s;
}

.row>[class*="col-"]:nth-child(4) .fx-card {
  transition-delay: .24s;
}

.row>[class*="col-"]:nth-child(5) .fx-card {
  transition-delay: .32s;
}

.row>[class*="col-"]:nth-child(6) .fx-card {
  transition-delay: .40s;
}

/* Section fade-in on scroll (CSS-based) */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="zoom-in"] {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .6s ease, transform .6s ease;
}

[data-aos="zoom-in"].aos-animate {
  opacity: 1;
  transform: scale(1);
}

/* Scroll-to-top button */
.scroll-to-top {
  background: var(--fx-gradient) !important;
  box-shadow: 0 6px 20px rgba(79, 70, 229, .35);
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(79, 70, 229, .45);
}

/* ========================================================================
   RESPONSIVE
   ======================================================================== */
@media(max-width:991px) {
  .hero-modern {
    min-height: 420px;
  }

  .hero-modern__content {
    padding: 48px 24px;
  }

  .hero-modern__title {
    font-size: 32px;
  }

  .block-title__title {
    font-size: 30px;
  }

  .fx-card {
    padding: 22px;
  }

  .contact-area {
    padding: 24px;
  }
}

@media(max-width:575px) {
  .hero-modern__title {
    font-size: 26px;
  }

  .hero-modern__content {
    padding: 32px 18px;
  }

  .block-title__title {
    font-size: 24px;
  }

  .hero-modern::before,
  .hero-modern::after {
    display: none;
  }
}

/* =========================================================
   VISUAL ENHANCEMENTS — icons, step flows, arrows
   ========================================================= */

/* ---  Larger icon variant for section headers --- */
.fx-icon--lg {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(79, 70, 229, .15) 0%, rgba(6, 182, 212, .15) 100%);
  border: 1px solid rgba(79, 70, 229, .18);
  margin-bottom: 18px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.fx-icon--lg svg {
  width: 26px;
  height: 26px;
  fill: var(--fx-primary);
}

.fx-card:hover .fx-icon--lg {
  transform: scale(1.12) rotate(-4deg);
  box-shadow: 0 4px 20px rgba(79, 70, 229, .18);
}

/* --- Horizontal step flow with connecting arrows --- */
.fx-step-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: 24px 0 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.fx-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  flex: 0 0 auto;
  padding: 0 6px;
}

.fx-step__bubble {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fx-primary) 0%, var(--fx-accent) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 3px 12px rgba(79, 70, 229, .25);
  transition: transform .3s ease;
}

.fx-step__bubble svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.fx-step:hover .fx-step__bubble {
  transform: scale(1.12);
}

.fx-step__label {
  font-size: 12px;
  font-weight: 600;
  color: #1e293b;
  margin-top: 8px;
  max-width: 80px;
  line-height: 1.3;
}

/* Arrow connector between steps */
.fx-step-arrow {
  display: flex;
  align-items: center;
  padding-top: 12px;
  color: var(--fx-primary);
  font-size: 18px;
  opacity: .6;
}

.fx-step-arrow svg {
  width: 24px;
  height: 24px;
  fill: var(--fx-primary);
  opacity: .5;
}

/* --- Pain points enhanced --- */
.fx-pain-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.fx-pain-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fx-pain-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

/* --- Numbered badge for cards --- */
.fx-badge-number {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--fx-primary) 0%, var(--fx-accent) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(79, 70, 229, .2);
}

/* --- Commitment icon labels --- */
.fx-commit-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(79, 70, 229, .1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  flex-shrink: 0;
  vertical-align: middle;
}

.fx-commit-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--fx-primary);
}

/* --- Responsive step flow --- */
@media (max-width: 768px) {
  .fx-step-flow {
    gap: 4px;
  }

  .fx-step__bubble {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .fx-step__bubble svg {
    width: 18px;
    height: 18px;
  }

  .fx-step__label {
    font-size: 10px;
    max-width: 60px;
  }

  .fx-step-arrow svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .fx-step-flow {
    flex-wrap: wrap;
    gap: 8px;
  }

  .fx-step-arrow {
    display: none;
  }
}