/* Base variables and reset */
:root {
  --primary: #1693a5;
  --primary-light: #3dbbb3;
  --bg-color: #f8fafc;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --card-bg: rgba(255, 255, 255, 0.7);
  --white: #ffffff;
}

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

body {
  font-family: 'Noto Sans KR', 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.main-header {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.85);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.header-logo {
  width: auto;
  display: block;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--primary-light);
}

.main-nav a.active {
  color: var(--primary);
  font-weight: 700;
}

/* Category landing hero */
.category-hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.category-hero .back-link {
  margin-bottom: 40px;
}

.category-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.category-description {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* About sub navigation */
.about-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.about-subnav a {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  background: rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.about-subnav a:hover {
  background: rgba(22, 147, 165, 0.1);
  color: var(--primary);
}

.about-subnav a.active {
  background: var(--primary);
  color: var(--white);
}

/* About hub cards */
.about-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.about-hub-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  cursor: pointer;
}

.about-hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(22, 147, 165, 0.12);
}

.about-hub-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.about-hub-card p {
  font-size: 14px;
  color: var(--text-light);
}

/* Partner grid */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.partner-item {
  text-align: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
}

.partner-item img {
  max-width: 80px;
  max-height: 60px;
  object-fit: contain;
  margin-bottom: 8px;
}

.partner-item span {
  display: block;
  font-size: 13px;
  color: var(--text-light);
}

#detail-features h4,
.detail-features h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-light);
}

#detail-features h4:first-child,
.detail-features h4:first-child {
  margin-top: 0;
}

/* Culture page */
.culture-subtitle {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.culture-subtitle span {
  color: var(--primary);
  font-weight: 600;
}

.culture-images {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.culture-images img {
  max-width: calc(50% - 8px);
  border-radius: 12px;
}

.culture-text {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
}

/* ECS page */
.ecs-panel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.ecs-item img {
  max-width: 120px;
  margin-bottom: 16px;
}

.ecs-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.ecs-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Location page */
.location-address {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(22, 147, 165, 0.05);
  border-radius: 12px;
}

.location-address p {
  margin-bottom: 4px;
  color: var(--text-dark);
}

.location-map {
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
}

/* Hero Section */
.hero-section {
  padding: 40px 0 20px;
  position: relative;
}

.hero-banner-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px -12px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-dark);
  letter-spacing: -1px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

.hero-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(61, 187, 179, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

/* Products Section */
.products-section {
  padding: 60px 0 100px;
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--text-light);
  font-size: 16px;
}

/* Grid & Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(22, 147, 165, 0.15);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card:hover::before {
  opacity: 1;
}

.product-image {
  height: 220px;
  box-sizing: border-box;
  padding: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-origin: content-box;
  background-color: #0a0f1d;
  position: relative;
  overflow: hidden;
}

.product-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.product-card:hover .product-image {
  /* optional internal hover effect */
}

.product-content {
  padding: 32px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: inline-block;
}

.product-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.product-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Footer */
.main-footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-light);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 20px 0 10px;
  }

  .hero-banner-card {
    border-radius: 12px;
  }

  .hero-title {
    font-size: 40px;
  }

  .header-container {
    flex-direction: column;
    height: auto;
    padding: 20px;
    gap: 20px;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

/* Detail Page Styles */
.detail-hero {
  padding: 100px 0 80px;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.detail-hero .hero-bg-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(22, 147, 165, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  top: -50%;
  left: 80%;
  pointer-events: none;
}

.detail-hero-content {
  position: relative;
  z-index: 2;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  color: var(--text-light);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 30px;
  transition: all 0.3s ease;
}
.back-link:hover {
  background: rgba(22, 147, 165, 0.1);
  color: var(--primary);
  transform: translateX(-4px);
}

.detail-header-text {
  max-width: 800px;
}

.detail-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.detail-subtitle {
  font-size: 22px;
  font-weight: 400;
  color: var(--primary-light);
  margin-bottom: 24px;
}

.detail-intro {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 800px;
}

.detail-main {
  padding: 60px 0 100px;
}

.detail-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.glass-panel {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.image-glass-container {
  background: var(--white);
  padding: 16px;
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  width: 100%;
}

.detail-hero-image {
  width: 100%;
  max-height: 450px;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-glass-container:hover .detail-hero-image {
  transform: scale(1.02);
}

/* Skeleton Loader */
.skeleton-loader {
  width: 100%;
  height: 200px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 12px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Raw HTML Content Styles */
#detail-features h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  border-left: 4px solid var(--primary-light);
  padding-left: 16px;
  margin: 40px 0 20px;
}

#detail-features dl {
  margin-bottom: 30px;
}

#detail-features dt {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  margin-top: 20px;
}

#detail-features dd {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
  margin-left: 0;
}

#detail-features ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

#detail-features li {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 8px;
}

#detail-features img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px auto;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

#detail-features table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  font-size: 14px;
}

#detail-features th {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 10px 16px;
  text-align: center;
  font-weight: 600;
  vertical-align: middle;
}

#detail-features th img {
  display: inline-block;
  margin: 0 auto 8px;
  box-shadow: none;
  border-radius: 0;
}

#detail-features th p {
  margin: 0;
  font-size: 12px;
  opacity: 0.9;
  white-space: nowrap;
}

#detail-features td {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
  text-align: center;
  vertical-align: middle;
}

#detail-features td.left {
  text-align: left;
}

#detail-features td img,
#detail-features .cap img {
  display: inline-block;
  margin: 0 4px;
  box-shadow: none;
  border-radius: 0;
  vertical-align: middle;
}

#detail-features .cap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-light);
}

#detail-features tr:nth-child(even) {
  background: rgba(22, 147, 165, 0.03);
}

#detail-features table {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.no-content {
  color: var(--text-light);
  font-size: 16px;
  text-align: center;
  padding: 60px 0;
}

/* ==========================================================================
   Use case screen (Horizontal Screenshot Gallery)
   ========================================================================== */
#detail-features .use_img01,
#detail-features .use_img02,
#detail-features .use_img03,
#detail-features .use_img04 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 16px 0 28px;
  margin: 0 auto;
  width: 100%;
}

#detail-features .use_img01 img,
#detail-features .use_img02 img,
#detail-features .use_img03 img,
#detail-features .use_img04 img {
  display: block;
  margin: 0 !important;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background-color: #ffffff;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
}

#detail-features .use_img01 img:hover,
#detail-features .use_img02 img:hover,
#detail-features .use_img03 img:hover,
#detail-features .use_img04 img:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

/* 1 Image */
#detail-features .use_img01 img {
  max-width: min(100%, 680px);
  width: auto;
}

/* 2 Images (e.g. smart-atm ATM phone, mdm) */
#detail-features .use_img02 img {
  flex: 1 1 320px;
  max-width: min(100%, 460px);
  width: 100%;
}

/* 3 Images (e.g. auth-me mobile screens) */
#detail-features .use_img03 img {
  flex: 1 1 200px;
  max-width: min(100%, 280px);
  width: 100%;
}

/* 4 Images (e.g. paperless CUP screens, balance, smart-atm service screens) */
#detail-features .use_img04 img {
  flex: 1 1 160px;
  max-width: min(100%, 220px);
  width: 100%;
}

@media (max-width: 768px) {
  .culture-images img {
    max-width: 100%;
  }

  .about-subnav {
    gap: 6px;
  }

  .about-subnav a {
    font-size: 12px;
    padding: 6px 12px;
  }

  .category-title {
    font-size: 32px;
  }

  #detail-features .use_img01,
  #detail-features .use_img02,
  #detail-features .use_img03,
  #detail-features .use_img04 {
    gap: 14px;
    padding: 12px 0 20px;
  }

  #detail-features .use_img04 img,
  #detail-features .use_img03 img {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

@media (max-width: 900px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-hero-image {
    position: static;
  }

  .detail-title {
    font-size: 36px;
  }
}

/* Feature Grid for Product Pages */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 20px 0 40px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(22, 147, 165, 0.1);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(22, 147, 165, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(22, 147, 165, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, rgba(22, 147, 165, 0.05) 0%, rgba(61, 187, 179, 0.1) 100%);
  border-left: 4px solid var(--primary);
  border-radius: 0 16px 16px 0;
  padding: 32px;
  margin: 20px 0 40px;
}

.highlight-box ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.highlight-box li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px !important;
  font-size: 15px;
}

.highlight-box li:last-child {
  margin-bottom: 0 !important;
}

.highlight-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Lightbox and Zoomable Images */
.zoomable-wrapper {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: block;
}

.zoomable-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: left top;
  transition: transform 0.3s ease;
}

.zoomable-wrapper:hover .zoomable-image {
  transform: scale(1.02);
}

.zoom-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.zoomable-wrapper:hover .zoom-overlay {
  opacity: 1;
}

.zoom-overlay svg {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}

.lightbox-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: white;
  font-size: 32px;
  cursor: pointer;
  background: rgba(255,255,255,0.2);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.4);
}

/* ==========================================================================
   Workflow Showcase & Step Grid Components
   ========================================================================== */
.showcase-desc {
  font-size: 15px;
  color: #64748b;
  margin-top: 6px;
  margin-bottom: 20px;
  line-height: 1.6;
}

#detail-features dt.showcase-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.workflow-card-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 0 auto 20px;
  width: 100%;
  max-width: 960px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.workflow-card-container:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
  border-color: rgba(37, 99, 235, 0.2);
}

.workflow-card-container .zoomable-image {
  border-radius: 12px;
  aspect-ratio: auto;
  width: 100%;
  height: auto;
  display: block;
}

.workflow-card-container .zoom-overlay {
  border-radius: 12px;
}

/* Workflow 4-Step Grid */
.workflow-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 16px auto 36px;
  max-width: 960px;
}

.wf-step-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.wf-step-item:hover {
  transform: translateY(-2px);
  border-color: #3b82f6;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.08);
}

.wf-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

.wf-step-item strong {
  font-size: 15px;
  color: #0f172a;
  font-weight: 700;
  display: block;
}

.wf-step-item span {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  display: block;
}

@media (max-width: 900px) {
  .workflow-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .workflow-steps-grid {
    grid-template-columns: 1fr;
  }
}