:root {
  --teal: #2A9D8F;
  --teal-light: #5EC4B6;
  --teal-dark: #1F7A6F;
}

/* ── FLEET OVERVIEW ── */
  .fleet-showcase { background: var(--white); padding: 90px 5vw; }

  .fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px; max-width: 1100px; margin: 0 auto;
  }

  .fleet-card {
    border: 1.5px solid var(--surface2); border-radius: 14px;
    padding: 28px 20px 22px; text-align: center;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    background: var(--surface); position: relative; overflow: hidden;
  }

  .fleet-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    opacity: 0; transition: opacity var(--transition);
  }

  .fleet-card:hover { border-color: rgba(42,157,143,0.3); box-shadow: 0 10px 36px rgba(13,27,42,0.08); transform: translateY(-4px); }
  .fleet-card:hover::before { opacity: 1; }

  .fleet-icon { font-size: 44px; margin-bottom: 14px; display: block; }

  .fleet-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600; color: var(--deep); margin-bottom: 4px;
  }

  .fleet-eg { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }

  .fleet-specs { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

  .fleet-spec { display: flex; flex-direction: column; align-items: center; gap: 3px; }

  .spec-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600; color: var(--teal); line-height: 1;
  }

  .spec-label { font-size: 11px; color: var(--text-muted); letter-spacing: 0.5px; }

/* ── HOW IT WORKS ── */
.how-it-works {
  background: var(--deep);
  padding: 90px 5vw;
  position: relative;
  z-index: 5;
}
.how-it-works .section-eyebrow { color: var(--teal-light); }
.how-it-works .section-title  { color: var(--white); }
.how-it-works .section-sub    { color: rgba(255,255,255,0.45); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0; max-width: 960px; margin: 0 auto;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
    height: 1px;
    background: repeating-linear-gradient(90deg, rgba(42,157,143,0.3) 0px, rgba(42,157,143,0.3) 8px, transparent 8px, transparent 16px);
    z-index: 0;
    pointer-events: none;
}

.step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }

.step-number {
    width: 72px; height: 72px; border-radius: 50%;
    background: rgba(42,157,143,0.08);
    border: 1px solid rgba(42,157,143,0.25);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px; position: relative;
    z-index: 2;
    color: #5EC4B6;
    transition: background var(--transition), border-color var(--transition);
}

.step:hover .step-number { background: rgba(42,157,143,0.18); border-color: rgba(42,157,143,0.5); }

.how-it-works .step-number svg.step-icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px;
    min-height: 28px;
    flex-shrink: 0;
    display: block !important;
    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.how-it-works .step-icon.is-filled path {
    fill: #5EC4B6 !important;
    stroke: none !important;
}

.how-it-works .step-icon.is-outline circle,
.how-it-works .step-icon.is-outline line,
.how-it-works .step-icon.is-outline path,
.how-it-works .step-icon.is-outline rect {
    stroke: #5EC4B6 !important;
    fill: none !important;
}

.step-glyph {
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    color: #5EC4B6;
    font-family: system-ui, 'Segoe UI', 'Noto Sans', sans-serif;
}

.step-num-badge {
    position: absolute; top: -4px; right: -4px;
    z-index: 3;
    width: 22px; height: 22px;
    background: #2A9D8F; border-radius: 50%;
    font-size: 11px; font-weight: 600; color: #fff;
    display: flex; align-items: center; justify-content: center;
}

.step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 10px;
}

.step-desc { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.65; }