/* ===== SHARED STYLES — izlazni.hr subpages ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --indigo:       #4f46e5;
  --indigo-dark:  #3730a3;
  --indigo-light: #818cf8;
  --indigo-50:    #eef2ff;
  --indigo-100:   #e0e7ff;
  --cyan:         #06b6d4;
  --amber:        #f59e0b;
  --green:        #10b981;
  --red:          #ef4444;
  --slate-900:    #0f172a;
  --slate-800:    #1e293b;
  --slate-700:    #334155;
  --slate-600:    #475569;
  --slate-500:    #64748b;
  --slate-400:    #94a3b8;
  --slate-200:    #e2e8f0;
  --slate-100:    #f1f5f9;
  --slate-50:     #f8fafc;
  --white:        #ffffff;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
  --shadow:       0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.14);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, sans-serif; color: var(--slate-800); background: var(--white); line-height: 1.6; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  padding: 0 5%;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 38px; width: auto; }
.nav-logo-text { font-size: 1.25rem; font-weight: 800; color: var(--slate-900); letter-spacing: -.5px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 8px 14px; border-radius: 8px;
  font-size: .9rem; font-weight: 500; color: var(--slate-600);
  transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { background: var(--indigo-50); color: var(--indigo); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.btn-ghost {
  padding: 9px 18px; border-radius: 9px; font-size: .9rem; font-weight: 600;
  color: var(--slate-700); border: 1.5px solid var(--slate-200);
  transition: all .2s; cursor: pointer; background: transparent;
}
.btn-ghost:hover { border-color: var(--indigo); color: var(--indigo); }
.btn-primary {
  padding: 9px 20px; border-radius: 9px; font-size: .9rem; font-weight: 700;
  background: var(--indigo); color: var(--white);
  border: none; cursor: pointer; transition: all .2s;
  box-shadow: 0 2px 8px rgba(79,70,229,.3);
}
.btn-primary:hover { background: var(--indigo-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(79,70,229,.4); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--slate-700); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f4fd 50%, #f0fdf4 100%);
  padding: 80px 5% 70px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(79,70,229,.08) 0%, transparent 70%);
}
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--indigo-50); color: var(--indigo);
  border: 1px solid var(--indigo-100); border-radius: 50px;
  padding: 6px 16px; font-size: .8rem; font-weight: 600;
  margin-bottom: 20px; position: relative;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900;
  color: var(--slate-900); line-height: 1.15; letter-spacing: -.03em;
  margin-bottom: 18px; position: relative;
}
.page-hero h1 span { color: var(--indigo); }
.page-hero p {
  font-size: 1.1rem; color: var(--slate-600); max-width: 600px;
  margin: 0 auto 32px; position: relative;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-lg {
  padding: 14px 28px; border-radius: 12px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all .25s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-lg.primary { background: var(--indigo); color: var(--white); border: none; box-shadow: 0 4px 20px rgba(79,70,229,.35); }
.btn-lg.primary:hover { background: var(--indigo-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(79,70,229,.4); }
.btn-lg.outline { background: transparent; color: var(--indigo); border: 2px solid var(--indigo); }
.btn-lg.outline:hover { background: var(--indigo-50); transform: translateY(-2px); }
/* White outline variant — used on dark/gradient CTA sections */
.btn-lg.outline-white { color: #fff; border-color: rgba(255,255,255,.5); background: transparent; }
.btn-lg.outline-white:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.9); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }

/* ===== SECTIONS ===== */
.section { padding: 80px 5%; }
.section-alt { background: var(--slate-50); }
.section-dark { background: var(--slate-900); color: var(--white); }
.section-indigo { background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-dark) 100%); color: var(--white); }
.section-center { text-align: center; }
.section-label {
  display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--indigo); margin-bottom: 12px;
}
.section-label.white { color: var(--indigo-light); }
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800;
  color: var(--slate-900); letter-spacing: -.03em; line-height: 1.2;
  margin-bottom: 14px;
}
.section-title.white { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem; color: var(--slate-500); max-width: 600px;
  margin: 0 auto 50px;
}
.section-subtitle.white { color: rgba(255,255,255,.75); }

/* ===== CARDS ===== */
.cards-grid { display: grid; gap: 24px; }
.cards-grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.cards-grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.cards-grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200); padding: 32px;
  transition: all .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--indigo-100); }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--indigo-50); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
}
.card-icon.cyan { background: #ecfeff; }
.card-icon.green { background: #ecfdf5; }
.card-icon.amber { background: #fffbeb; }
.card-icon.red   { background: #fef2f2; }
.card h3 { font-size: 1.1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 10px; }
.card p  { font-size: .9rem; color: var(--slate-500); line-height: 1.65; }
.card ul { list-style: none; margin-top: 14px; }
.card ul li { font-size: .875rem; color: var(--slate-600); padding: 4px 0; display: flex; align-items: flex-start; gap: 8px; }
.card ul li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ===== FEATURE ROW ===== */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; padding: 60px 5%;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-row-alt { background: var(--slate-50); }
.feature-content .tag {
  display: inline-block; background: var(--indigo-50); color: var(--indigo);
  font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 14px;
}
.feature-content h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: var(--slate-900); margin-bottom: 14px; line-height: 1.25; }
.feature-content p  { color: var(--slate-500); margin-bottom: 20px; line-height: 1.7; }
.feature-list { list-style: none; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.feature-list li .icon { width: 22px; height: 22px; background: var(--indigo-50); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: .75rem; flex-shrink: 0; margin-top: 1px; }
.feature-list li span { font-size: .9rem; color: var(--slate-600); line-height: 1.5; }
.feature-visual {
  background: linear-gradient(135deg, var(--indigo-50) 0%, #e8f4fd 100%);
  border-radius: var(--radius-lg); padding: 40px; min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.feature-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(79,70,229,.12) 0%, transparent 60%);
}
.feature-visual-inner { position: relative; z-index: 1; width: 100%; }

/* ===== MOCK UI ELEMENTS ===== */
.mock-card {
  background: var(--white); border-radius: 12px; padding: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12); margin-bottom: 12px;
}
.mock-card:last-child { margin-bottom: 0; }
.mock-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.mock-row:last-child { margin-bottom: 0; }
.mock-label { font-size: .75rem; color: var(--slate-400); font-weight: 500; }
.mock-value { font-size: .9rem; color: var(--slate-800); font-weight: 600; }
.mock-badge {
  font-size: .7rem; font-weight: 700; padding: 3px 10px; border-radius: 50px;
}
.mock-badge.green { background: #dcfce7; color: #16a34a; }
.mock-badge.amber { background: #fef9c3; color: #ca8a04; }
.mock-badge.indigo { background: var(--indigo-50); color: var(--indigo); }
.mock-badge.red   { background: #fee2e2; color: #dc2626; }
.mock-progress { height: 6px; background: var(--slate-100); border-radius: 3px; overflow: hidden; margin-top: 6px; }
.mock-progress-bar { height: 100%; background: var(--indigo); border-radius: 3px; }

/* ===== STATS ROW ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 50px 0;
}
.stat-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--cyan));
  opacity: 0;
  transition: opacity .25s;
}
.stat-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--indigo-100); }
.stat-item:hover::before { opacity: 1; }
.stat-item-top { display: flex; align-items: center; justify-content: space-between; }
.stat-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--indigo-50);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg { width: 18px; height: 18px; stroke: var(--indigo); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.stat-trend {
  font-size: .72rem; font-weight: 700;
  padding: 3px 8px; border-radius: 50px;
  background: #dcfce7; color: #16a34a;
}
.stat-trend.neutral { background: var(--indigo-50); color: var(--indigo); }
.stat-number {
  font-size: 2rem; font-weight: 900;
  color: var(--slate-900); letter-spacing: -.04em;
  line-height: 1;
}
.stat-number span { color: var(--indigo); }
.stat-number.white { color: var(--white); }
.stat-label { font-size: .82rem; color: var(--slate-500); font-weight: 500; line-height: 1.4; }
.stat-label.white { color: rgba(255,255,255,.7); }
.stat-bar {
  height: 4px; background: var(--slate-100); border-radius: 2px; overflow: hidden;
  margin-top: 4px;
}
.stat-bar-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, var(--indigo), var(--cyan));
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
  width: 0;
}
.stat-bar-fill.animated { width: var(--bar-width, 70%); }
/* Dark/white variant for dark backgrounds */
.stat-item.dark {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.12);
}
.stat-item.dark .stat-icon { background: rgba(255,255,255,.1); }
.stat-item.dark .stat-icon svg { stroke: rgba(255,255,255,.9); }
.stat-item.dark .stat-number { color: var(--white); }
.stat-item.dark .stat-label { color: rgba(255,255,255,.6); }
.stat-item.dark .stat-bar { background: rgba(255,255,255,.1); }
.stat-item.dark:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--slate-200); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-size: 1rem; font-weight: 600; color: var(--slate-800);
  gap: 16px;
}
.faq-question .faq-icon { font-size: 1.2rem; color: var(--indigo); flex-shrink: 0; transition: transform .3s; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { font-size: .9rem; color: var(--slate-500); line-height: 1.7; padding-bottom: 20px; display: none; }
.faq-answer.open { display: block; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--indigo) 0%, #7c3aed 100%);
  border-radius: var(--radius-lg); padding: 60px 40px;
  text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.12) 0%, transparent 50%);
}
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 14px; position: relative; }
.cta-banner p  { font-size: 1rem; opacity: .85; margin-bottom: 28px; position: relative; }
.cta-banner .hero-btns { position: relative; }

/* ===== FOOTER ===== */
.footer {
  background: var(--slate-900); color: var(--white);
  padding: 60px 5% 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand p { font-size: .875rem; color: var(--slate-400); margin-top: 14px; line-height: 1.7; max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.footer-logo img { height: 34px; }
.footer-logo-text { font-size: 1.2rem; font-weight: 800; color: var(--white); }
.footer-col h4 { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-400); margin-bottom: 16px; }
.footer-col a { display: block; font-size: .875rem; color: var(--slate-400); margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--slate-800); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .8rem; color: var(--slate-500); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 34px; height: 34px; border-radius: 8px; background: var(--slate-800); display: flex; align-items: center; justify-content: center; font-size: .85rem; color: var(--slate-400); transition: all .2s; }
.footer-socials a:hover { background: var(--indigo); color: var(--white); }

/* ===== BREADCRUMB ===== */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--slate-400); margin-bottom: 16px; justify-content: center; }
.breadcrumb a { color: var(--slate-400); }
.breadcrumb a:hover { color: var(--indigo); }
.breadcrumb span { color: var(--slate-600); font-weight: 500; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 68px; left: 0; right: 0; background: var(--white);
    border-bottom: 1px solid var(--slate-200); padding: 16px 5%;
    box-shadow: var(--shadow);
  }
  .nav-links.open + .nav-cta { display: flex; position: absolute; top: 68px; right: 5%; padding: 16px 0; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 60px 5%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== BENEFITS SHOWCASE ===== */
.benefits-showcase {
  display: grid; grid-template-columns: 340px 1fr; gap: 32px;
  align-items: start; max-width: 1100px; margin: 48px auto 0; text-align: left;
}
.benefits-showcase-list { display: flex; flex-direction: column; gap: 6px; }
.bsi-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px; border-radius: 14px; cursor: pointer;
  border: 1.5px solid transparent; transition: all .22s;
}
.bsi-item:hover { background: var(--indigo-50); border-color: var(--indigo-100); }
.bsi-item.active { background: var(--indigo-50); border-color: var(--indigo); }
.bsi-num {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: var(--white); border: 1.5px solid var(--slate-200);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800; color: var(--slate-400);
  transition: all .22s;
}
.bsi-item.active .bsi-num { background: var(--indigo); border-color: var(--indigo); color: var(--white); }
.bsi-text h4 { font-size: .95rem; font-weight: 700; color: var(--slate-800); margin-bottom: 2px; }
.bsi-text p  { font-size: .8rem; color: var(--slate-500); }
.benefits-showcase-panel { position: relative; min-height: 400px; }
.bsi-panel {
  display: none; background: var(--white); border-radius: 20px;
  border: 1px solid var(--slate-200); padding: 32px;
  box-shadow: var(--shadow);
  animation: fadeSlideIn .3s ease;
}
.bsi-panel.active { display: block; }
@keyframes fadeSlideIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.bsi-panel-header h3 { font-size: 1.15rem; font-weight: 800; color: var(--slate-900); margin-bottom: 8px; }
.bsi-panel-header p  { font-size: .875rem; color: var(--slate-500); line-height: 1.65; margin-bottom: 20px; }

/* ===== MOCK UI (showcase panels) ===== */
.mock-ui {
  background: var(--slate-50); border-radius: 12px;
  border: 1px solid var(--slate-200); overflow: hidden;
}
.mock-ui-bar {
  background: var(--white); border-bottom: 1px solid var(--slate-200);
  padding: 10px 14px; display: flex; align-items: center; gap: 6px;
}
.mock-ui-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-ui-title { font-size: .72rem; font-weight: 600; color: var(--slate-400); margin-left: 6px; }
.mock-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-bottom: 1px solid var(--slate-100);
  transition: background .15s;
}
.mock-row:last-child { border-bottom: none; }
.mock-row:hover { background: var(--white); }
.mock-row-icon {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.mock-row-text { flex: 1; min-width: 0; }
.mock-row-text strong { display: block; font-size: .82rem; font-weight: 700; color: var(--slate-800); }
.mock-row-text span  { display: block; font-size: .72rem; color: var(--slate-400); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-badge-sm {
  font-size: .68rem; font-weight: 700; padding: 3px 9px; border-radius: 50px; white-space: nowrap; flex-shrink: 0;
}
.mock-badge-sm.green  { background: #dcfce7; color: #16a34a; }
.mock-badge-sm.amber  { background: #fef9c3; color: #ca8a04; }
.mock-badge-sm.red    { background: #fee2e2; color: #dc2626; }
.mock-badge-sm.blue   { background: #dbeafe; color: #1d4ed8; }
.mock-alert {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 14px; border-radius: 8px; margin: 8px 14px;
}
.mock-alert.success { background: #dcfce7; }
.mock-alert.info    { background: var(--indigo-50); }
.mock-alert.warn    { background: #fef9c3; }
.mock-alert strong  { display: block; font-size: .8rem; font-weight: 700; color: var(--slate-800); }
.mock-alert p       { font-size: .72rem; color: var(--slate-500); margin-top: 2px; }

/* ===== MIGRATION TIMELINE ===== */
.migration-timeline {
  max-width: 1000px; margin: 48px auto 0;
  background: var(--white); border-radius: 24px;
  border: 1px solid var(--slate-200); padding: 40px 32px;
  box-shadow: var(--shadow);
}
.mig-steps {
  display: flex; align-items: flex-start; gap: 0;
  position: relative;
}
.mig-steps::before {
  content: ''; position: absolute;
  top: 44px; left: 44px; right: 44px; height: 2px;
  background: linear-gradient(90deg, var(--indigo), var(--cyan));
  z-index: 0;
}
.mig-step {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 12px; position: relative; z-index: 1;
}
.mig-step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--indigo-100);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin-bottom: 16px; gap: 2px; transition: all .25s;
  box-shadow: 0 4px 16px rgba(79,70,229,.12);
}
.mig-step:last-child .mig-step-circle {
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  border-color: transparent;
}
.mig-step-circle:hover { transform: scale(1.08); box-shadow: 0 8px 24px rgba(79,70,229,.2); }
.mig-step-num {
  font-size: .5rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--indigo); line-height: 1;
}
.mig-step:last-child .mig-step-num { color: rgba(255,255,255,.8); }
.mig-step h4 { font-size: .9rem; font-weight: 800; color: var(--slate-900); margin-bottom: 6px; }
.mig-step p  { font-size: .78rem; color: var(--slate-500); line-height: 1.55; }
.mig-step-time {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 10px; font-size: .72rem; font-weight: 600;
  color: var(--indigo); background: var(--indigo-50);
  padding: 4px 10px; border-radius: 50px;
}

/* ===== GUARANTEE BOX ===== */
.guarantee-box {
  background: linear-gradient(135deg, var(--indigo-50) 0%, #e8f4fd 100%);
  border: 1px solid var(--indigo-100); border-radius: 16px;
  padding: 28px 32px; text-align: center;
}
.guarantee-box h3 { font-size: 1.1rem; font-weight: 800; color: var(--slate-900); margin-bottom: 10px; }
.guarantee-box p  { font-size: .9rem; color: var(--slate-600); line-height: 1.65; }

/* ===== RESPONSIVE — SHOWCASE & TIMELINE ===== */
@media (max-width: 900px) {
  .benefits-showcase { grid-template-columns: 1fr; }
  .mig-steps { flex-direction: column; gap: 24px; }
  .mig-steps::before { top: 0; left: 35px; right: auto; width: 2px; height: 100%; }
  .mig-step { flex-direction: row; text-align: left; gap: 16px; align-items: flex-start; }
  .mig-step-circle { flex-shrink: 0; margin-bottom: 0; }
}
